/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{

    scroll-behavior:smooth;
}   

body{

    font-family:'Montserrat',sans-serif;

    background:#f5f7fb;

    color:#222;

    line-height:1.7;

    overflow-x:hidden;
}
    

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    background:#08244a;
    color:white;
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo h1{
    font-size:34px;
    font-weight:800;
    color:#ffffff;
    margin:0;
    line-height:1.1;
    letter-spacing:.5px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.btn-menu{

    display:inline-block;

    padding:15px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,#d4af37,#f2d36d);

    color:#08244a;

    text-decoration:none;

    font-weight:700;

    transition:.35s;
}

.btn-menu:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(212,175,55,.35);
}

/* HERO */

.hero{

    position:relative;

    min-height:95vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(8,36,74,.82),
            rgba(8,36,74,.88)
        ),

        url("../img/hero.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    color:white;
}

.hero .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.hero-texto{
    flex:1;
}

.hero-texto span{
    color:#d4af37;
    font-weight:bold;
}

.hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    max-width:700px;

    margin:25px 0;
}

.hero p{

    font-size:22px;

    max-width:620px;

    color:#f2f2f2;

    margin-bottom:45px;
}

.btn-principal{

    display:inline-block;

    padding:18px 38px;

    background:linear-gradient(135deg,#d4af37,#f1cf6d);

    color:#08244a;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 12px 30px rgba(212,175,55,.35);
}

.btn-principal:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(212,175,55,.45);
}

.hero-imagem{
    flex:1;
}

.hero-imagem img{
    width:100%;
}

/* SERVIÇOS */

section{
    padding:80px 0;
}

section h2{

    font-size:48px;

    color:#08244a;

    margin-bottom:30px;

    font-weight:800;
}

.cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;
}

.card{

    background:white;

    border-radius:22px;

    padding:40px;

    transition:.35s;

    border:1px solid #ececec;

    box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 28px 55px rgba(0,0,0,.12);
}

.card h3{
    color:#08244a;
    margin-bottom:15px;
}

/* SOBRE */

#sobre{
    background:white;
    text-align:center;
}

#sobre p{
    max-width:900px;
    margin:auto;
    font-size:20px;
}

/* CONTATO */

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

textarea{
    height:150px;
}

button{
    background:#08244a;
    color:white;
    border:none;
    padding:18px;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
}

/* RODAPÉ */

footer{
    background:#08244a;
    color:white;
    text-align:center;
    padding:30px;
}
.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:25px;
    letter-spacing:1px;
    font-size:13px;
}

.hero-botoes{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-secundario{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:40px;
    transition:.3s;
}

.btn-secundario:hover{
    background:white;
    color:#08244a;
}

.hero-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    padding:45px;

    width:420px;

    box-shadow:0 25px 60px rgba(0,0,0,.30);
}

.hero-card h3{

    font-size:30px;

    margin-bottom:30px;

    color:#d4af37;
}

.hero-card hr{
    margin:25px 0;
}

.hero-card ul{

    list-style:none;
}

.hero-card li{

    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.15);

    font-size:18px;
}
.diferenciais{
    background:#f5f7fb;
}

.diferenciais-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

.item{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.item:hover{
    transform:translateY(-8px);
}

.icone{
    font-size:48px;
    margin-bottom:20px;
}

.item h3{
    color:#08244a;
    margin-bottom:15px;
}
/* PARCEIROS */

.parceiros{
    background:#ffffff;
    text-align:center;
}

.subtitulo{
    max-width:800px;
    margin:0 auto 50px;
    color:#666;
    font-size:18px;
}

.logos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.logo-card{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:15px;
    padding:35px;
    font-size:22px;
    font-weight:bold;
    color:#08244a;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.logo-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}
/* ============================
   PARCEIROS
============================ */

.parceiros{
    background:#ffffff;
    padding:90px 0;
    text-align:center;
}

.parceiros h2{
    font-size:42px;
    color:#08244a;
    margin-bottom:20px;
}

.subtitulo{
    max-width:800px;
    margin:0 auto 60px;
    color:#666;
    font-size:18px;
}

.logos{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.logo-card{

    background:white;

    border-radius:18px;

    padding:40px 20px;

    font-size:22px;

    font-weight:700;

    color:#08244a;

    border:1px solid #ececec;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;
}

.logo-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 18px 40px rgba(0,0,0,.12);
}
/* ============================
   ESTATÍSTICAS
============================ */

.estatisticas{

    background:#08244a;

    color:white;

    padding:90px 0;
}

.estatisticas .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;
}

.estatistica{

    padding:20px;
}

.estatistica h2{

    font-size:58px;

    font-weight:800;

    color:#d4af37;

    margin-bottom:15px;

    letter-spacing:1px;
}

.estatistica p{

    font-size:18px;

    line-height:1.6;
}
/* ============================
   QUEM SOMOS
============================ */

.quem-somos{

    background:#ffffff;

    padding:100px 0;
}

.empresa-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;
}

.empresa-imagem{

    flex:1;
}

.empresa-card{

    background:#08244a;

    color:white;

    border-radius:20px;

    padding:60px 40px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.empresa-icone{

    font-size:70px;

    display:block;

    margin-bottom:20px;
}

.empresa-card h3{

    font-size:30px;

    margin-bottom:15px;
}

.empresa-texto{

    flex:1;
}

.empresa-tag{

    color:#d4af37;

    font-weight:bold;

    letter-spacing:2px;
}

.empresa-texto h2{

    margin:20px 0;

    color:#08244a;

    font-size:42px;
}

.empresa-texto p{

    margin-bottom:20px;

    font-size:18px;

    color:#555;

    line-height:1.8;
}

.empresa-lista{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:30px;

    font-weight:600;

    color:#08244a;
}
/* ============================
   DEPOIMENTOS
============================ */

.depoimentos{

    background:#f5f7fb;

    padding:100px 0;

    text-align:center;
}

.depoimentos-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:50px;
}

.depoimento-card{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;
}

.depoimento-card:hover{

    transform:translateY(-8px);
}

.depoimento-card p{

    font-style:italic;

    color:#555;

    line-height:1.8;

    margin-bottom:25px;
}

.depoimento-card h4{

    color:#08244a;

    font-size:20px;
}
/* ============================
   FOOTER
============================ */

.footer{

    background:#04172f;

    color:white;

    padding:70px 0 20px;
}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;
}

.footer h3{

    margin-bottom:20px;

    color:#d4af37;
}

.footer p{

    line-height:1.8;

    color:#ddd;
}

.footer ul{

    list-style:none;

    padding:0;
}

.footer li{

    margin-bottom:12px;

    color:#ddd;
}

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    color:#bbb;

    font-size:15px;
}
/* ============================
   WHATSAPP FLUTUANTE
============================ */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:32px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

    z-index:9999;
}

.whatsapp:hover{

    transform:scale(1.1);

    box-shadow:0 18px 35px rgba(0,0,0,.35);
}
/* ============================
   RESPONSIVIDADE
============================ */

@media (max-width: 992px){

    header .container{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero .container,
    .hero-container,
    .empresa-container{
        flex-direction:column;
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-botoes{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-card{
        width:100%;
        max-width:500px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .logos{
        grid-template-columns:repeat(2,1fr);
    }

    .estatisticas .container{
        grid-template-columns:repeat(2,1fr);
    }

    .empresa-lista{
        grid-template-columns:1fr;
    }
    .credibilidade-grid{

    grid-template-columns:repeat(2,1fr);
}
}

@media (max-width: 768px){

    section{
        padding:60px 0;
    }

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:34px;
    }

    section h2{
        font-size:32px;
    }

    .logos{
        grid-template-columns:1fr;
    }

    .estatisticas .container{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .whatsapp{
        width:60px;
        height:60px;
        font-size:28px;
        right:20px;
        bottom:20px;
    }
    .credibilidade-grid{

    grid-template-columns:1fr;
}
}
/* ============================
   MENU PROFISSIONAL
============================ */

header{

    transition:.35s;

    backdrop-filter:blur(10px);
}

header.scrolled{

    background:#04172f;

    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

nav a{

    position:relative;

    transition:.3s;
}

nav a:hover{

    color:#d4af37;
}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#d4af37;

    transition:.3s;
}

nav a:hover::after{

    width:100%;
}  
/* ============================
   ANIMAÇÕES
============================ */

.animar{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;
}

.animar.aparecer{

    opacity:1;

    transform:translateY(0);
}
.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-200px;

    top:-200px;
}

.hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(255,255,255,.03);

    border-radius:50%;

    left:-150px;

    bottom:-150px;
}
/* ============================
   ÍCONES DOS SERVIÇOS
============================ */

.icone-servico{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(135deg,#08244a,#1b5ca8);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(8,36,74,.18);
}

.card h3{

    margin-bottom:20px;

    color:#08244a;

    font-size:28px;
}

.card p{

    color:#666;

    line-height:1.8;

    font-size:17px;
}
.hero-tag{

    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,.12);

    border-radius:40px;

    margin-bottom:30px;

    color:#d4af37;

    font-size:14px;

    letter-spacing:1px;
}

.hero-texto{

    max-width:650px;
}

.hero-texto p{

    font-size:20px;

    margin:35px 0;

    line-height:1.8;
}

.hero-botoes{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.btn-secundario{

    padding:18px 38px;

    border:2px solid rgba(255,255,255,.25);

    border-radius:50px;

    color:white;

    text-decoration:none;

    transition:.35s;
}

.btn-secundario:hover{

    background:white;

    color:#08244a;
}
/* ============================
   BARRA DE CREDIBILIDADE
============================ */

.credibilidade{

    background:white;

    padding:35px 0;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.credibilidade-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.cred-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px;

    border-radius:16px;

    transition:.3s;
}

.cred-item:hover{

    background:#f8f9fc;
}

.cred-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#08244a;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    flex-shrink:0;
}

.cred-item h4{

    color:#08244a;

    margin-bottom:6px;

    font-size:18px;
}

.cred-item p{

    color:#666;

    font-size:15px;

    line-height:1.5;
}
/* ============================
   BOTÃO VOLTAR AO TOPO
============================ */

.btn-topo{

    position:fixed;

    right:25px;

    bottom:105px;

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#08244a;

    color:white;

    font-size:26px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;
}

.btn-topo:hover{

    background:#d4af37;

    color:#08244a;

    transform:translateY(-5px);
}

.btn-topo.mostrar{

    opacity:1;

    visibility:visible;
}
/* ============================
   MENU MOBILE
============================ */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:32px;

    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{

        display:block;
    }

    nav{

        display:none;

        width:100%;
    }

    nav.ativo{

        display:block;
    }

    nav ul{

        flex-direction:column;

        align-items:center;

        background:#08244a;

        margin-top:20px;

        padding:25px;

        border-radius:15px;
    }

    nav li{

        margin:12px 0;
    }

    .btn-menu{

        display:none;
    }
.processo-grid{

    grid-template-columns:1fr;
}
.premium-grid{

    grid-template-columns:1fr;
}
}
/* ============================
   PROCESSO
============================ */

.processo{

    background:#ffffff;

    padding:100px 0;

    text-align:center;
}

.titulo-pequeno{

    color:#d4af37;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;
}

.processo-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;
}

.processo-card{

    background:#f8f9fc;

    border-radius:20px;

    padding:40px 30px;

    transition:.35s;

    border:1px solid #ececec;
}

.processo-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.numero{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#08244a;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    font-weight:bold;
}

.processo-card h3{

    margin-bottom:15px;

    color:#08244a;
}

.processo-card p{

    color:#666;

    line-height:1.8;
}
/* ============================
   FAQ
============================ */

.faq{

    background:#f8f9fc;

    padding:100px 0;
}

.faq-item{

    background:white;

    border-radius:15px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.faq-pergunta{

    width:100%;

    background:white;

    border:none;

    text-align:left;

    padding:25px;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

    color:#08244a;

    transition:.3s;
}

.faq-pergunta:hover{

    background:#f4f6fa;
}

.faq-resposta{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 25px;
}

.faq-resposta p{

    padding:0 0 25px;

    color:#555;

    line-height:1.8;
}
/* ============================
   SELEÇÃO DE TEXTO
============================ */

::selection{

    background:#d4af37;

    color:#08244a;
}
/* ============================
   SCROLLBAR
============================ */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{

    background:#08244a;

    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{

    background:#0d3b75;
}
/* ============================
   DIFERENCIAIS PREMIUM
============================ */

.diferenciais-premium{

    background:#08244a;

    color:white;

    padding:110px 0;
}

.diferenciais-premium h2{

    color:white;
}

.premium-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;
}

.premium-item{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    padding:35px;

    transition:.35s;

    backdrop-filter:blur(10px);
}

.premium-item:hover{

    transform:translateY(-8px);

    border-color:#d4af37;
}

.premium-item h3{

    color:#d4af37;

    margin-bottom:18px;

    font-size:24px;
}

.premium-item p{

    line-height:1.8;

    color:#f1f1f1;
}
.hero-info{

    display:inline-block;

    margin-bottom:30px;

    padding:12px 22px;

    border-radius:30px;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    font-size:15px;

    letter-spacing:.5px;

    backdrop-filter:blur(10px);
}
.card-link{

    text-decoration:none;

    color:inherit;

    display:block;
}

.card-link:hover{

    text-decoration:none;
}
.card-link,
.card-link *,
.card-link:hover,
.card-link:hover *{
    text-decoration:none !important;
    color:inherit;
}
/* CARD CLICÁVEL */

.cards a{
    text-decoration:none;
    color:inherit;
    display:block;
}

.cards a:visited{
    color:inherit;
}

.cards a:hover{
    text-decoration:none;
    color:inherit;
}

.cards a h3,
.cards a p{
    text-decoration:none;
    color:inherit;
}

.cards a:hover h3{
    color:#d4af37;
}