/* =========================
   RESET
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#071A35;
    color:#FFFFFF;
}

/* =========================
   CABEÇALHO
========================= */

header{
    width:100%;
    height:90px;

    padding:0 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;
    left:0;

    background:rgba(7,26,53,.92);
    backdrop-filter:blur(10px);

    z-index:999;
}

.logo img{
    width:70px;
}

nav{
    display:flex;
    gap:35px;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    color:#FFFFFF;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#D4AF37;
}

.btn-topo{
    background:#D4AF37;
    color:#111111;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-topo:hover{
    transform:translateY(-3px);
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:140px 8% 80px;

    gap:60px;
}

.hero-texto{
    width:50%;
}

.hero-texto span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;
}

.hero-texto h1{
    font-family:'Poppins',sans-serif;
    font-size:64px;
    margin:20px 0;
    line-height:1.1;
}

.hero-texto strong{
    color:#D4AF37;
}

.hero-texto p{
    font-size:20px;
    color:#d8d8d8;
    margin-bottom:40px;
    line-height:1.7;
}

.botoes{
    display:flex;
    gap:20px;
}

.btn-principal{
    background:#D4AF37;
    color:#111111;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(212,175,55,.35);
    transition:.3s;
}

.btn-principal:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(212,175,55,.45);
}

.btn-secundario{
    border:2px solid #D4AF37;
    color:#FFFFFF;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-secundario:hover{
    background:#D4AF37;
    color:#111111;
}

.hero-imagem{
    width:50%;
    display:flex;
    justify-content:center;
}

.hero-imagem img{
    width:100%;
    max-width:560px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}


.sobre{
    padding:120px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    background:#0B2346;
}

.sobre-imagem{
    flex:1;
    display:flex;
    justify-content:center;
}

.sobre-imagem img{
    width:100%;
    max-width:420px;
    border-radius:24px;
    border:3px solid #D4AF37;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transition:.4s;
}

.sobre-imagem img:hover{
    transform:translateY(-8px);
}

.sobre-conteudo{
    flex:1.3;
}

.titulo-secao{
    display:inline-block;
    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:18px;
}

.sobre-conteudo h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin-bottom:30px;
    color:#FFFFFF;
}

.sobre-conteudo p{
    color:#D8D8D8;
    line-height:1.9;
    margin-bottom:22px;
    font-size:18px;
}

.sobre-conteudo h3{
    font-family:'Poppins',sans-serif;
    font-size:28px;
    margin:45px 0 25px;
    color:#FFFFFF;
}

.lista-diferenciais{
    list-style:none;
    margin-bottom:35px;
}

.lista-diferenciais li{
    color:#FFFFFF;
    margin-bottom:16px;
    font-size:18px;
    line-height:1.7;
}

.sobre .btn-principal{
    display:inline-block;
    margin-top:10px;
}

/* =========================
   RESPONSIVO
========================= */

@media(max-width:992px){

    .sobre{
        flex-direction:column;
        text-align:center;
    }

    .sobre-imagem{
        order:-1;
    }

    .sobre-imagem img{
        max-width:320px;
    }

}/* =========================
   SERVIÇOS
========================= */

.servicos{
    padding:120px 8%;
    background:#071A35;
}

.servicos-titulo{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.servicos-titulo span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;
}

.servicos-titulo h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin:20px 0;
    line-height:1.2;
}

.servicos-titulo p{
    color:#D8D8D8;
    font-size:18px;
    line-height:1.8;
}

.cards-servicos{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card-servico{
    background:#0B2346;
    border-radius:20px;
    padding:35px;
    border-top:4px solid #D4AF37;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.card-servico:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.30);
}

.icone-servico{
    width:70px;
    height:70px;
    background:#D4AF37;
    color:#071A35;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.card-servico h3{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    margin-bottom:18px;
}

.card-servico p{
    color:#D8D8D8;
    line-height:1.8;
    font-size:17px;
}

@media(max-width:900px){

    .cards-servicos{
        grid-template-columns:1fr;
    }

    .servicos-titulo h2{
        font-size:34px;
    }

}/* =========================
   COMO FUNCIONA
========================= */

.processo{
    padding:120px 8%;
    background:#0B2346;
}

.processo-titulo{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.processo-titulo span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;
}

.processo-titulo h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin:20px 0;
    line-height:1.2;
    color:#FFFFFF;
}

.processo-titulo p{
    color:#D8D8D8;
    font-size:18px;
    line-height:1.8;
}

.processo-etapas{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.etapa{
    background:#071A35;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border-top:4px solid #D4AF37;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.etapa:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.30);
}

.numero{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#D4AF37;
    color:#071A35;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Poppins',sans-serif;
    font-size:26px;
    font-weight:700;
}

.etapa h3{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    margin-bottom:18px;
    color:#FFFFFF;
}

.etapa p{
    color:#D8D8D8;
    line-height:1.8;
    font-size:17px;
}

@media(max-width:1100px){

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

}

@media(max-width:700px){

    .processo-etapas{
        grid-template-columns:1fr;
    }

    .processo-titulo h2{
        font-size:34px;
    }

}/* =========================
   RESULTADOS
========================= */

.resultados{

    padding:120px 8%;
    background:#071A35;

}

.resultados-titulo{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;

}

.resultados-titulo span{

    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;

}

.resultados-titulo h2{

    font-family:'Poppins',sans-serif;
    font-size:42px;
    color:#FFFFFF;
    margin:20px 0;

}

.resultados-titulo p{

    color:#D8D8D8;
    line-height:1.9;
    font-size:18px;

}

.cards-resultados{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.card-resultado{

    background:#0B2346;

    border-radius:22px;

    padding:40px;

    border-top:4px solid #D4AF37;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.card-resultado:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.35);

}

.numero-resultado{

    font-family:'Poppins',sans-serif;

    font-size:55px;

    font-weight:800;

    color:#D4AF37;

    margin-bottom:25px;

}

.card-resultado h3{

    font-family:'Poppins',sans-serif;

    font-size:25px;

    color:#FFFFFF;

    margin-bottom:18px;

    line-height:1.4;

}

.card-resultado p{

    color:#D8D8D8;

    line-height:1.8;

    font-size:17px;

}

@media(max-width:950px){

    .cards-resultados{

        grid-template-columns:1fr;

    }

}/* =========================
   CONTATO
========================= */

.contato{

    padding:120px 8%;
    background:#0B2346;
    text-align:center;

}

.contato-conteudo{

    max-width:750px;
    margin:0 auto;

}

.contato span{

    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;

}

.contato h2{

    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin:20px 0;
    color:#FFFFFF;

}

.contato p{

    color:#D8D8D8;
    line-height:1.8;
    font-size:18px;
    margin-bottom:40px;

    }

.btn-principal{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#071A35;

    text-decoration:none;

    padding:20px 42px;

    border-radius:60px;

    font-weight:700;
    font-size:18px;

    box-shadow:
        0 12px 35px rgba(212,175,55,.35),
        0 0 25px rgba(212,175,55,.25);

    transition:all .35s ease;
}.btn-principal:hover{

    transform:translateY(-6px) scale(1.03);

    box-shadow:
        0 18px 45px rgba(212,175,55,.45),
        0 0 35px rgba(212,175,55,.35);

}/*=========================
PARA QUEM É MEU SERVIÇO
=========================*/

.publico{
    padding:120px 8%;
    background:#071A35;
}

.publico-titulo{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.publico-titulo span{
    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;
}

.publico-titulo h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin:20px 0;
}

.publico-titulo p{
    color:#D8D8D8;
    line-height:1.8;
    font-size:18px;
}

.cards-publico{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card-publico{
    background:#0B2346;
    padding:35px;
    border-radius:22px;
    border-top:4px solid #D4AF37;
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.card-publico:hover{
    transform:translateY(-8px);
}

.card-publico h3{
    color:#FFFFFF;
    margin-bottom:15px;
    font-family:'Poppins',sans-serif;
    font-size:24px;
}

.card-publico p{
    color:#D8D8D8;
    line-height:1.7;
}

@media(max-width:950px){

    .cards-publico{
        grid-template-columns:1fr;
    }

}/* =========================
   PARA QUEM É MEU SERVIÇO
========================= */

.publico{

    padding:120px 8%;
    background:#071A35;

}

.publico-titulo{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;

}

.publico-titulo span{

    color:#D4AF37;
    font-weight:700;
    letter-spacing:3px;

}

.publico-titulo h2{

    font-family:'Poppins',sans-serif;
    font-size:42px;
    color:#FFFFFF;
    margin:20px 0;

}

.publico-titulo p{

    color:#D8D8D8;
    font-size:18px;
    line-height:1.8;

}

.publico-lista{

    width:100%;
    max-width:800px;
    margin:60px auto 0;
    display:flex;
    flex-direction:column;

}


.publico-item{

    width:100%;
    padding:30px 20px;
    border-bottom:1px solid rgba(212,175,55,.25);
    text-align:left;

}

.publico-item:first-child{

    border-top:1px solid rgba(212,175,55,.25);

}

.publico-item h3{

    font-family:'Poppins',sans-serif;
    font-size:28px;
    color:#FFFFFF;
    margin-bottom:10px;

}

.publico-item p{

    color:#D8D8D8;
    font-size:18px;
    line-height:1.8;

}

@media(max-width:900px){

    .publico-titulo h2{

        font-size:34px;

    }

    .publico-item h3{

        font-size:22px;

    }

}.footer{
    background:#0d0d0d;
    border-top:2px solid #d4af37;
    padding:70px 20px 30px;
    text-align:center;
}

.footer-container{
    max-width:1200px;
    margin:auto;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-text{
    max-width:650px;
    margin:0 auto 35px;
    color:#cfcfcf;
    line-height:1.8;
    font-size:16px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#d4af37;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.footer-social a{
    color:#d4af37;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    color:#ffffff;
}

.footer-copy{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:30px;
    padding-top:20px;
    color:#888;
    font-size:14px;
}
/* =========================
   ANIMAÇÕES
========================= */

section{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease, transform .8s ease;
}

section.show{
    opacity:1;
    transform:translateY(0);
}/* =========================
   RESPONSIVO GERAL
========================= */

@media (max-width: 768px)

    .hero{
        flex-direction: column;
        text-align: center;
        padding: 140px 6% 80px;
    }

    .hero-texto,
    .hero-imagem{
        width: 100%;
    }

    .hero-texto h1{
        font-size: 36px;
    }

    .hero-texto p{
        font-size: 18px;
    }

    .botoes{
        flex-direction: column;
        align-items: center;
    }

/* =========================
   MENU MOBILE
========================= */

.menu-mobile{
    display:none;
}

.btn-menu{
    display:none;
}

@media (max-width:768px){

    header{
        padding:0 20px;
    }

    .menu-mobile{
        display:block;
        font-size:30px;
        color:#FFFFFF;
        cursor:pointer;
        z-index:1001;
    }

    .btn-topo{
        display:none;
    }

    .menu{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;

        background:#071A35;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:100px 30px;

        gap:20px;

        transition:right .35s ease;

        z-index:1000;
    }

    .menu.ativo{
        right:0;
    }

    .menu a{
        color:#FFFFFF;
        text-decoration:none;
        font-size:20px;
    }

    .btn-menu{
        display:block;
        width:100%;
        margin-top:20px;
        background:#D4AF37;
        color:#071A35 !important;
        padding:16px;
        border-radius:50px;
        text-align:center;
        font-weight:700;
    }

}