﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    color: #1c1c1c;
    background: #fff;
    overflow-x: hidden;
}

/* HEADER */

.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px 0;
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-j {
    color: #0d6efd;
}

.header nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.header nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

    .header nav a:hover {
        color: #0d6efd;
    }

.btn-orcamento {
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

    .btn-orcamento:hover {
        background: #0056d6;
        color: #fff;
    }

/* HERO */

.hero {
    min-height: 780px;
    background: url('../img/hero-rack.jpg') center center;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(2,10,25,.95) 0%, rgba(2,10,25,.85) 35%, rgba(2,10,25,.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-left {
    max-width: 650px;
    padding-top: 170px;
}

    .hero-left h1 {
        color: #fff;
        font-size: 48px;
        line-height: 1.05;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .hero-left p {
        color: #d8d8d8;
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

.beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
}

    .beneficios div {
        color: #fff;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .beneficios i {
        color: #0d6efd;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary-custom {
    background: #0d6efd;
    color: #fff;
    padding: 16px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

    .btn-primary-custom:hover {
        background: #0056d6;
        color: #fff;
    }

.btn-whats {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    padding: 16px 28px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
}

    .btn-whats:hover {
        background: #fff;
        color: #000;
    }

/* ESTATISTICAS */

.stats {
    background: #051d46;
    padding: 35px 0;
}

    .stats .container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

.stat {
    text-align: center;
}

    .stat h3 {
        color: #fff;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .stat p {
        color: #d5d5d5;
        font-size: 15px;
    }

/* SERVIÇOS */

.services {
    padding: 90px 0;
    background: #fff;
}

    .services h5 {
        text-align: center;
        color: #0d6efd;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .services h2 {
        text-align: center;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 50px;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

    .service-card i {
        font-size: 46px;
        color: #0d6efd;
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #666;
        line-height: 1.7;
    }

/* ===========================
   CONTRATO + DIFERENCIAIS
=========================== */

.empresa {
    padding: 40px 0 90px;
    background: #fff;
}

.card-blue {
    background: #041c4f;
    color: #fff;
    border-radius: 10px;
    padding: 45px;
    min-height: 360px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .card-blue h3 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .card-blue ul {
        list-style: none;
        padding: 0;
    }

    .card-blue li {
        margin-bottom: 15px;
        position: relative;
        padding-left: 28px;
    }

        .card-blue li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0d6efd;
            font-weight: bold;
        }

.card-white {
    background: #f7f8fb;
    border-radius: 10px;
    padding: 40px;
    min-height: 360px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-white h3 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .card-white ul {
        list-style: none;
        padding: 0;
    }

    .card-white li {
        margin-bottom: 15px;
        position: relative;
        padding-left: 28px;
    }

        .card-white li:before {
            content: "•";
            position: absolute;
            left: 8px;
            color: #0d6efd;
        }

.foto {
    flex-shrink: 0;
}

    .foto img {
        width: 260px;
        max-width: 100%;
    }

/* ===========================
   PROCESSO
=========================== */

.processo {
    padding: 100px 0;
    background: #fff;
}

    .processo h5 {
        text-align: center;
        color: #0d6efd;
        font-weight: 700;
    }

    .processo h2 {
        text-align: center;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 70px;
    }

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

    .timeline:before {
        content: "";
        position: absolute;
        top: 40px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: #d8d8d8;
    }

.step {
    width: 24%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f1f4f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 32px;
    color: #0d6efd;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #dce2eb;
}

.step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ===========================
   CLIENTES
=========================== */

.clientes {
    padding: 60px 0;
    background: #fff;
}

    .clientes h5 {
        text-align: center;
        color: #0d6efd;
        font-weight: 700;
        margin-bottom: 35px;
    }

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 30px;
}

.cliente {
    text-align: center;
    color: #666;
    font-weight: 600;
    font-size: 15px;
}

/* ===========================
   CTA
=========================== */

.contact {
    background: #031633;
    color: #fff;
    padding: 90px 0;
}

    .contact h2 {
        font-size: 46px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .contact .form-control {
        border: none;
        padding: 15px;
        border-radius: 8px;
    }

    .contact .btn-primary {
        padding: 15px;
        font-weight: 700;
        font-size: 16px;
    }

.info-box {
    background: #071f4f;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

    .info-box h4 {
        color: #0d6efd;
        margin-top: 20px;
        font-weight: 700;
    }

    .info-box p {
        color: #d8d8d8;
    }

/* ===========================
   FOOTER
=========================== */

.footer-jsinfotec {
    background: #071426;
    color: #fff;
    padding-top: 50px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-title small {
    color: #cfd8e3;
    font-size: 14px;
}

.footer-title h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 8px 0;
}

.footer-title p {
    color: #9eb0c6;
    max-width: 520px;
    text-align: left;
}

.footer-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-card {
    width: 250px;
    border: 1px solid #17355f;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

    .contact-card i {
        color: #0d6efd;
        font-size: 26px;
        margin-top: 3px;
    }

    .contact-card strong {
        display: block;
        color: white;
    }

    .contact-card span {
        display: block;
        color: white;
        margin-top: 5px;
    }

    .contact-card small {
        color: #9eb0c6;
    }

.footer-main {
    padding: 40px 0;
}

.footer-logo {
    width: 220px;
    margin-bottom: 15px;
}

.footer-desc {
    color: #9eb0c6;
    text-align: left;
    max-width: 300px;
}

.footer-main h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-main ul li {
        margin-bottom: 10px;
        color: #cdd6e2;
        font-size: 14px;
    }

        .footer-main ul li a {
            color: #cdd6e2;
            text-decoration: none;
        }

            .footer-main ul li a:hover {
                color: #fff;
            }

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 35px;
        height: 35px;
        border: 1px solid #1c3f6d;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

.contact-info i {
    width: 20px;
}

.footer-jsinfotec hr {
    border-color: rgba(255,255,255,.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: #a6b4c8;
    font-size: 13px;
}

@media(max-width:991px) {

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:1200px) {

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .clientes-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:992px) {

    .hero-left h1 {
        font-size: 48px;
    }

    .header nav {
        display: none;
    }

    .stats .container {
        flex-wrap: wrap;
        gap: 25px;
    }

    .timeline {
        flex-direction: column;
        gap: 50px;
    }

        .timeline:before {
            display: none;
        }

    .step {
        width: 100%;
    }

    .card-white {
        flex-direction: column;
        text-align: center;
    }

    .foto {
        margin-top: 30px;
    }
}

@media(max-width:768px) {

    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-left {
        padding-top: 130px;
    }

        .hero-left h1 {
            font-size: 40px;
        }

        .hero-left p {
            font-size: 17px;
        }

    .hero-buttons {
        flex-direction: column;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .clientes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services h2,
    .processo h2,
    .contact h2 {
        font-size: 32px;
    }

    .card-blue,
    .card-white {
        margin-bottom: 25px;
    }
}

@media(max-width:576px) {

    .clientes-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .logo {
        font-size: 26px;
    }

    .btn-orcamento {
        display: none;
    }
}

/* ===========================
   WHATSAPP FLUTUANTE
=========================== */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    transition: all .3s ease;
}

    .whatsapp-float:hover {
        background: #20ba5a;
        color: #fff;
        transform: scale(1.1);
    }

    /* efeito pulsante */
    .whatsapp-float::before {
        content: "";
        position: absolute;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: rgba(37,211,102,.4);
        animation: pulseWhats 2s infinite;
        z-index: -1;
    }

@keyframes pulseWhats {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

