*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --yellow:#f6c400;
    --navy:#061b3a;
    --black:#080808;
    --white:#ffffff;
    --gray:#f4f6f8;
    --text:#2a2a2a;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    color:var(--text);
    background:var(--white);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

button,
a{
    font-family:inherit;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:92%;
    max-width:1180px;
    margin:0 auto;
}

/* HEADER */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(6,27,58,.94);
    backdrop-filter:blur(14px);
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.header-content{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    color:var(--white);
    display:flex;
    flex-direction:column;
    line-height:1;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.logo span{
    font-size:24px;
    font-weight:900;
    color:var(--yellow);
}

.logo small{
    font-size:12px;
    font-weight:700;
    color:var(--white);
}

.desktop-menu{
    display:none;
}

.hamburger{
    width:44px;
    height:44px;
    border:0;
    background:var(--yellow);
    border-radius:10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:22px;
    height:2px;
    background:var(--black);
}

/* MOBILE MENU */

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    z-index:1200;
    transition:.3s ease;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;
    top:0;
    left:0;
    width:82%;
    max-width:340px;
    height:100vh;
    background:var(--navy);
    z-index:1300;
    padding:32px;
    transform:translateX(-100%);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.mobile-menu.active{
    transform:translateX(0);
}

.mobile-menu a{
    color:var(--white);
    font-size:20px;
    font-weight:700;
}

.close-menu{
    align-self:flex-end;
    width:44px;
    height:44px;
    border:0;
    background:var(--yellow);
    color:var(--black);
    font-size:32px;
    line-height:1;
    border-radius:10px;
    cursor:pointer;
}

.btn-mobile{
    margin-top:20px;
    padding:15px 20px;
    background:var(--yellow);
    color:var(--black);
    border:0;
    border-radius:12px;
    font-weight:900;
    cursor:pointer;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:var(--black);
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-desktop{
    display:none;
}

.video-mobile{
    display:block;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82),
        rgba(6,27,58,.58),
        rgba(0,0,0,.35)
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    color:var(--white);
    padding-top:90px;
}

.tagline{
    display:inline-block;
    background:rgba(246,196,0,.15);
    color:var(--yellow);
    border:1px solid rgba(246,196,0,.4);
    padding:10px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero h1{
    font-size:42px;
    line-height:1.05;
    font-weight:900;
    max-width:720px;
    margin-bottom:22px;
}

.hero p{
    font-size:17px;
    line-height:1.7;
    max-width:620px;
    color:#e9e9e9;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.btn-primary,
.btn-secondary,
.btn-header{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    padding:16px 24px;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
    transition:.3s ease;
}

.btn-primary{
    border:0;
    background:var(--yellow);
    color:var(--black);
    box-shadow:0 12px 28px rgba(246,196,0,.28);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 38px rgba(246,196,0,.35);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.45);
    color:var(--white);
    background:rgba(255,255,255,.06);
}

.btn-secondary:hover{
    background:var(--white);
    color:var(--black);
}

/* TRUST */

.trust-section{
    background:var(--navy);
    color:var(--white);
    padding:30px 0;
}

.trust-grid{
    display:grid;
    gap:20px;
}

.trust-grid div{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    padding:24px;
    border-radius:18px;
}

.trust-grid strong{
    display:block;
    font-size:34px;
    font-weight:900;
    color:var(--yellow);
}

.trust-grid span{
    font-size:14px;
    font-weight:700;
}

/* SECTIONS */

.section{
    padding:82px 0;
}

.section-title{
    margin-bottom:40px;
}

.section-title span,
.about-text span{
    display:block;
    color:var(--yellow);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2,
.about-text h2,
.cta-final h2{
    font-size:32px;
    line-height:1.15;
    color:var(--navy);
    font-weight:900;
    margin-bottom:16px;
}

.section-title p{
    font-size:16px;
    line-height:1.7;
}

/* CARDS */

.cards-grid{
    display:grid;
    gap:20px;
}

.service-card{
    background:var(--white);
    border:1px solid #e5e8ec;
    border-radius:22px;
    padding:30px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    transition:.3s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--yellow);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}

.service-card h3{
    color:var(--navy);
    font-size:21px;
    font-weight:900;
    margin-bottom:12px;
}

.service-card p{
    line-height:1.7;
}

/* ABOUT */

.about-home{
    padding:82px 0;
    background:var(--gray);
}

.about-grid{
    display:grid;
    gap:34px;
    align-items:center;
}

.about-image{
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.16);
}

.about-image img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.about-text p{
    line-height:1.8;
    margin-bottom:18px;
}

.about-text .btn-primary{
    margin-top:10px;
}

/* WHY */

.why-section{
    background:var(--white);
}

.why-grid{
    display:grid;
    gap:20px;
}

.why-item{
    padding:28px;
    border-radius:20px;
    background:var(--navy);
    color:var(--white);
    transition:.3s ease;
}

.why-item:hover{
    transform:translateY(-6px);
}

.why-item h3{
    color:var(--yellow);
    font-size:20px;
    margin-bottom:10px;
}

.why-item p{
    line-height:1.7;
}

/* CTA */

.cta-final{
    background:linear-gradient(135deg, var(--navy), #020914);
    color:var(--white);
    padding:80px 0;
    text-align:center;
}

.cta-final h2{
    color:var(--white);
}

.cta-final p{
    max-width:680px;
    margin:0 auto 28px;
    line-height:1.7;
}

/* FOOTER */

.site-footer{
    background:var(--black);
    color:var(--white);
    padding:50px 0;
}

.footer-grid{
    display:grid;
    gap:28px;
}

.site-footer h3{
    color:var(--yellow);
    font-size:24px;
    margin-bottom:12px;
}

.site-footer h4{
    color:var(--yellow);
    margin-bottom:12px;
}

.site-footer p{
    color:#d4d4d4;
    line-height:1.7;
}

/* MODAL */

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.72);
    z-index:2000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
}

.modal-overlay.active{
    opacity:1;
    visibility:visible;
}

.modal-box{
    width:100%;
    max-width:480px;
    background:var(--white);
    border-radius:24px;
    padding:32px;
    position:relative;
    transform:translateY(30px);
    transition:.3s ease;
}

.modal-overlay.active .modal-box{
    transform:translateY(0);
}

.close-modal{
    position:absolute;
    top:16px;
    right:16px;
    width:38px;
    height:38px;
    border:0;
    border-radius:10px;
    background:var(--navy);
    color:var(--white);
    font-size:26px;
    cursor:pointer;
}

.modal-box h2{
    color:var(--navy);
    font-size:28px;
    margin-bottom:8px;
}

.modal-box p{
    margin-bottom:22px;
}

form{
    display:grid;
    gap:14px;
}

input,
select,
textarea{
    width:100%;
    padding:15px;
    border:1px solid #d7dce2;
    border-radius:12px;
    font-size:15px;
    outline:none;
}

input:focus,
select:focus,
textarea:focus{
    border-color:var(--yellow);
}

.full{
    width:100%;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:900;
    background:#25d366;
    color:white;
    padding:14px 18px;
    border-radius:999px;
    font-weight:900;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* ANIMAÇÕES */

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:all .75s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* DESKTOP */

@media(min-width:768px){

    .video-desktop{
        display:block;
    }

    .video-mobile{
        display:none;
    }

    .hero h1{
        font-size:64px;
    }

    .hero p{
        font-size:19px;
    }

    .hero-buttons{
        flex-direction:row;
    }

    .trust-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .cards-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .about-grid{
        grid-template-columns:1fr 1fr;
    }

    .why-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .footer-grid{
        grid-template-columns:2fr 1fr 1fr;
    }

}

@media(min-width:992px){

    .desktop-menu{
        display:flex;
        align-items:center;
        gap:34px;
    }

    .desktop-menu a{
        color:var(--white);
        font-size:14px;
        font-weight:800;
        text-transform:uppercase;
        transition:.3s ease;
    }

    .desktop-menu a:hover{
        color:var(--yellow);
    }

    .btn-header{
        border:0;
        background:var(--yellow);
        color:var(--black);
        padding:14px 20px;
    }

    .hamburger{
        display:none;
    }

}





/* ==========================================
   PÁGINA EMPRESA
========================================== */

.page-hero{
    position:relative;
    min-height:72vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:100px;
    background:
        radial-gradient(circle at top right, rgba(246,196,0,.28), transparent 35%),
        linear-gradient(135deg, #020914 0%, #061b3a 48%, #0b2d5c 100%);
}

.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.18)),
        url("../images/equipe.jpg");
    background-size:cover;
    background-position:center;
    opacity:.18;
}

.page-hero::after{
    content:"";
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:320px;
    height:320px;
    background:var(--yellow);
    filter:blur(120px);
    opacity:.22;
}

.page-hero-content{
    position:relative;
    z-index:2;
    color:var(--white);
    max-width:820px;
    padding:80px 0;
}

.page-hero-content h1{
    font-size:40px;
    line-height:1.08;
    font-weight:900;
    margin-bottom:24px;
}

.page-hero-content p{
    font-size:17px;
    line-height:1.75;
    max-width:720px;
    color:#e9e9e9;
    margin-bottom:30px;
}

.section-label{
    display:block;
    color:var(--yellow);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:12px;
}

/* INTRO */

.empresa-intro{
    padding:85px 0;
    background:var(--white);
}

.empresa-intro-grid{
    display:grid;
    gap:30px;
    align-items:center;
}

.empresa-intro-text h2,
.empresa-photo-content h2{
    font-size:32px;
    line-height:1.15;
    color:var(--navy);
    font-weight:900;
    margin-bottom:20px;
}

.empresa-intro-text p,
.empresa-photo-content p{
    line-height:1.85;
    margin-bottom:18px;
}

.empresa-intro-card{
    position:relative;
    padding:38px;
    border-radius:28px;
    background:linear-gradient(145deg, var(--navy), #020914);
    color:var(--white);
    overflow:hidden;
    box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.empresa-intro-card::before{
    content:"";
    position:absolute;
    right:-70px;
    top:-70px;
    width:180px;
    height:180px;
    background:var(--yellow);
    border-radius:50%;
    opacity:.18;
}

.empresa-intro-card strong{
    display:block;
    font-size:72px;
    line-height:1;
    color:var(--yellow);
    font-weight:900;
    margin-bottom:14px;
}

.empresa-intro-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.empresa-intro-card p{
    line-height:1.8;
    color:#e4e4e4;
}

/* FOTO / COMO TRABALHAMOS */

.empresa-photo-section{
    padding:85px 0;
    background:var(--gray);
}

.empresa-photo-grid{
    display:grid;
    gap:36px;
    align-items:center;
}

.empresa-photo{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.empresa-photo::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent, rgba(6,27,58,.28));
}

.empresa-photo img{
    width:100%;
    height:430px;
    object-fit:cover;
}

.empresa-list{
    list-style:none;
    display:grid;
    gap:12px;
    margin-top:24px;
}

.empresa-list li{
    position:relative;
    padding:16px 18px 16px 46px;
    background:var(--white);
    border-radius:14px;
    font-weight:700;
    color:var(--navy);
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.empresa-list li::before{
    content:"✓";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:var(--yellow);
    font-weight:900;
}

/* VALORES */

.empresa-values{
    padding:85px 0;
    background:var(--white);
}

.empresa-values-grid{
    display:grid;
    gap:20px;
}

.empresa-value-card{
    padding:30px;
    border-radius:22px;
    background:#fff;
    border:1px solid #e6e9ee;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    transition:.3s ease;
}

.empresa-value-card:hover{
    transform:translateY(-7px);
    box-shadow:0 28px 65px rgba(0,0,0,.12);
}

.empresa-value-card h3{
    color:var(--navy);
    font-size:21px;
    font-weight:900;
    margin-bottom:12px;
}

.empresa-value-card p{
    line-height:1.75;
}

/* NÚMEROS */

.empresa-numbers{
    padding:45px 0;
    background:linear-gradient(135deg, var(--navy), #020914);
}

.empresa-numbers-grid{
    display:grid;
    gap:20px;
}

.empresa-numbers-grid div{
    padding:26px;
    border-radius:20px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    color:var(--white);
    text-align:center;
}

.empresa-numbers-grid strong{
    display:block;
    font-size:42px;
    color:var(--yellow);
    font-weight:900;
    margin-bottom:8px;
}

.empresa-numbers-grid span{
    font-size:14px;
    font-weight:800;
}

/* RESPONSIVO EMPRESA */

@media(min-width:768px){

    .page-hero-content h1{
        font-size:58px;
    }

    .page-hero-content p{
        font-size:19px;
    }

    .empresa-intro-grid{
        grid-template-columns:1.35fr .65fr;
    }

    .empresa-photo-grid{
        grid-template-columns:1fr 1fr;
    }

    .empresa-values-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .empresa-numbers-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:767px){

    .page-hero{
        min-height:68vh;
        padding-top:90px;
    }

    .page-hero-content{
        padding:55px 0;
    }

    .page-hero-content h1{
        font-size:38px;
    }

    .empresa-photo img{
        height:340px;
    }

}




/* ==========================================
   PÁGINA SERVIÇOS
========================================== */

.servicos-hero{
    background:
        radial-gradient(circle at top right, rgba(246,196,0,.30), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(135deg, #020914 0%, #061b3a 48%, #0b2d5c 100%);
}

.servicos-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.18)),
        url("../images/equipe.jpg");
    background-size:cover;
    background-position:center;
    opacity:.14;
}

.servicos-intro{
    padding:85px 0;
    background:var(--white);
}

.servicos-main-grid{
    display:grid;
    gap:22px;
}

.servico-detalhe-card{
    position:relative;
    padding:32px;
    border-radius:24px;
    background:var(--white);
    border:1px solid #e5e8ec;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    overflow:hidden;
    transition:.3s ease;
}

.servico-detalhe-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--yellow);
}

.servico-detalhe-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 65px rgba(0,0,0,.12);
}

.servico-detalhe-card span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:14px;
    background:rgba(246,196,0,.16);
    color:var(--navy);
    font-weight:900;
    margin-bottom:20px;
}

.servico-detalhe-card h3{
    font-size:22px;
    color:var(--navy);
    font-weight:900;
    margin-bottom:12px;
}

.servico-detalhe-card p{
    line-height:1.75;
    margin-bottom:22px;
}

.servico-link{
    border:0;
    background:var(--navy);
    color:var(--white);
    padding:13px 18px;
    border-radius:12px;
    font-weight:900;
    text-transform:uppercase;
    font-size:12px;
    cursor:pointer;
    transition:.3s ease;
}

.servico-link:hover{
    background:var(--yellow);
    color:var(--black);
}

/* FAIXA */

.servicos-faixa{
    padding:45px 0;
    background:linear-gradient(135deg, var(--navy), #020914);
}

.servicos-faixa-grid{
    display:grid;
    gap:20px;
}

.servicos-faixa-grid div{
    padding:28px;
    border-radius:22px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    color:var(--white);
    text-align:center;
}

.servicos-faixa-grid strong{
    display:block;
    font-size:42px;
    color:var(--yellow);
    font-weight:900;
    margin-bottom:8px;
}

.servicos-faixa-grid span{
    font-size:14px;
    font-weight:800;
}

/* PROCESSO */

.servicos-processo{
    padding:85px 0;
    background:var(--gray);
}

.processo-grid{
    display:grid;
    gap:20px;
}

.processo-card{
    position:relative;
    padding:30px;
    border-radius:22px;
    background:var(--white);
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    transition:.3s ease;
}

.processo-card:hover{
    transform:translateY(-7px);
}

.processo-card span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--yellow);
    color:var(--black);
    font-weight:900;
    font-size:20px;
    margin-bottom:18px;
}

.processo-card h3{
    color:var(--navy);
    font-size:20px;
    font-weight:900;
    margin-bottom:10px;
}

.processo-card p{
    line-height:1.7;
}

/* BLOCO SEO */

.servicos-seo{
    padding:85px 0;
    background:var(--white);
}

.servicos-seo-grid{
    display:grid;
    gap:34px;
    align-items:center;
}

.servicos-seo-content h2{
    font-size:32px;
    line-height:1.15;
    color:var(--navy);
    font-weight:900;
    margin-bottom:20px;
}

.servicos-seo-content p{
    line-height:1.85;
    margin-bottom:18px;
}

.servicos-seo-content .btn-primary{
    margin-top:10px;
}

.servicos-seo-box{
    padding:34px;
    border-radius:28px;
    background:linear-gradient(145deg, var(--navy), #020914);
    color:var(--white);
    box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.servicos-seo-box h3{
    color:var(--yellow);
    font-size:24px;
    font-weight:900;
    margin-bottom:20px;
}

.servicos-seo-box ul{
    list-style:none;
    display:grid;
    gap:12px;
}

.servicos-seo-box li{
    position:relative;
    padding-left:30px;
    line-height:1.6;
    color:#eeeeee;
    font-weight:600;
}

.servicos-seo-box li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--yellow);
    font-weight:900;
}

/* RESPONSIVO SERVIÇOS */

@media(min-width:768px){

    .servicos-main-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .servicos-faixa-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .processo-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .servicos-seo-grid{
        grid-template-columns:1.1fr .9fr;
    }

}

@media(min-width:992px){

    .servicos-main-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

@media(max-width:767px){

    .servico-detalhe-card{
        padding:28px;
    }

    .servicos-seo-box{
        padding:28px;
    }

}