/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f6f9;
    color:#222;
}

/* TOPO */

.topo{
    background:#111;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 40px;
    font-size:14px;
    flex-wrap:wrap;
}

/* CABEÇALHO */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 8%;
    
}

.logo img{
    width:240px;
    height:auto;
}

nav{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:nome;

}

nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

nav ul li a{
    color:#003E91;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    padding:8px 0;
    position:relative;
    transition:.3s ease;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:3px;
    background:#25D366;
    border-radius:20px;
    transition:.3s;
}

nav ul li a:visited{
    color:#003E91;
    text-decoration:none;
}

nav ul li a.ativo::after{
    width:100%;
}

nav ul li a.ativo{
    color:#25D366;
}

nav ul li a:hover{
    color:#25D366;
}

nav ul li a:hover::after{
    width:100%;
}

.botao-whats{
    background:#25D366;
    color:#fff;
    padding:14px 26px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}

/* BANNER */

.banner{
    height:650px;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("img/banner.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding-left:80px;
}

.banner-texto{
    max-width:600px;
}

.banner h1{
    color:white;
    font-size:58px;
    line-height:65px;
}

.banner p{
    color:white;
    font-size:22px;
    margin:25px 0;
}

.botao-vermelho{
    display:inline-block;
    background:linear-gradient(135deg,#d71920,#ff4d4d);
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:50px;
    font-weight:700;
    font-size:17px;
    box-shadow:0 10px 25px rgba(215,25,32,.35);
    transition:all .3s ease;
}

.botao-vermelho:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(215,25,32,.45);
    background:linear-gradient(135deg,#ff4d4d,#d71920);
}
/* ===== SERVIÇOS ===== */

.servicos{
    padding:80px 8%;
    background:#f8f8f8;
}

.servicos h2{
    text-align:center;
    font-size:40px;
    color:#0c2d6b;
    margin-bottom:50px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    color:#0c2d6b;
    text-align:center;
    margin:20px 0 10px;
}

.card p{
    text-align:center;
    padding:0 20px 25px;
    color:#666;
    line-height:25px;
}

/* ===== QUEM SOMOS ===== */

.quem-somos{
    padding:80px 10%;
    text-align:center;
}

.quem-somos h2{
    color:#0c2d6b;
    font-size:40px;
    margin-bottom:30px;
}

.quem-somos p{
    max-width:900px;
    margin:auto;
    font-size:19px;
    line-height:34px;
    color:#555;
}

/* ===== GALERIA ===== */

.galeria{
    padding:80px 8%;
    background:#f3f5f8;
}

.galeria h2{
    text-align:center;
    color:#0c2d6b;
    font-size:40px;
    margin-bottom:50px;
}

.fotos{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap: 25 px;
    margin-top:40px;
}

.fotos img{
    width:90%;
    height:200px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:0.45s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.fotos img:hover{
    transform:scale(2.05);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* ===== CONTATO ===== */

.contato{
    padding:80px 10%;
    text-align:center;
}

.contato h2{
    color:#0c2d6b;
    font-size:40px;
    margin-bottom:25px;
}

.contato p{
    font-size:20px;
    margin:15px;
}
.contato a{
    color:#0b2d6d;
    text-decoration:none;
    font-weight:600;
}

.contato a:hover{
    color:#d71920;
}

/* ===== RODAPÉ ===== */

footer{
    background:#0b1735;
    color:#fff;
    text-align:center;
    padding:25px;
}
footer a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

footer a:hover{
    color:#25D366;
}
/* ===== EQUIPE ===== */

.equipe{
    padding:80px 8%;
    background:#f8f8f8;
    text-align:center;
}

.equipe h2{
    font-size:42px;
    color:#0b2d6d;
    margin-bottom:10px;
}

.subtitulo{
    color:#666;
    margin-bottom:50px;
}


  .cards-equipe{  display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card-equipe{
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.card-equipe:hover{
    transform:translateY(-8px);
}

.card-equipe{
    position: relative;
    height: 450px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.card-equipe::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:45%;
    background:linear-gradient(transparent, rgba(0,0,0,.9));
}

.card-equipe img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.info-equipe{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    color:#fff;
    text-align:center;
    z-index:2;
    text-shadow:2px 2px 8px rgba(0,0,0,.8);
}

.info-equipe h3{
    font-size:30px;
    margin-bottom:10px;
}

.info-equipe p{
    font-size:18px;
    font-weight:bold;
    margin-bottom:8px;
}

.info-equipe span{
    font-size:15px;
    line-height:1.5;
}
/* ===== NÚMEROS ===== */

.numeros{
    background:#0b1735;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    padding:70px 8%;
    text-align:center;
}

.numero{
    background:#12224d;
    border-radius:15px;
    padding:30px;
    transition:0.3s;
}

.numero:hover{
    transform:translateY(-8px);
}

.numero h2{
    font-size:55px;
    color:#25D366;
    margin-bottom:15px;
}

.numero p{
    font-size:18px;
    color:#ffffff;
}
/* ===== VANTAGENS ===== */

.vantagens{
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
    justify-content:center;
    align-items:center;
}


.item{
    background:#ffffff;
    border-left:6px solid #25D366;
    border-radius:10px;
    padding:18px 20px;
    font-size:18px;
    font-weight:600;
    color:#0b1735;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}

.item:hover{
    transform:translateX(8px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
/* ===== AVALIAÇÕES ===== */

.avaliacoes{
    background:#f5f7fb;
    padding:80px 8%;
    text-align:center;
}

.avaliacoes h2{
    font-size:42px;
    color:#0b1735;
    margin-bottom:50px;
}

.cards-avaliacoes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card-avaliacao{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card-avaliacao:hover{
    transform:translateY(-8px);
}

.estrelas{
    font-size:24px;
    margin-bottom:20px;
}

.card-avaliacao p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.card-avaliacao h4{
    color:#0b1735;
    font-size:18px;
}
/* ===== MARCAS ===== */

.logos-marcas{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin-top: 30px;
}

.marca{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:110px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    transition:.3s;
}
.marca:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.marca img{
    width:80px;
    height:60px;
    object-fit:contain;
    transition:.3s;
}

.marca:hover img{
    transform:scale(1.1);
}
/* ===== RODAPÉ ===== */

.rodape{
    background:#0b1735;
    color:#fff;
    padding:60px 8% 20px;
}

.rodape-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.logo-rodape{
    width:220px;
}

.rodape-coluna h3{
    color:#25D366;
    margin-bottom:20px;
    font-size:22px;
}

.rodape-coluna p{
    line-height:1.8;
    color:#ddd;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    text-align:center;
    color:#bbb;
    font-size:14px;
}
/* ===== WHATSAPP FLUTUANTE ===== */

.whatsapp-fixo{
    position:fixed;
    bottom:25px;
    right:25px;
    width:70px;
    height:70px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
}

.whatsapp-fixo:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}
.selo-banner{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.lista-banner{
    display:flex;
    flex-wrap:wrap;
    gap:12px 20px;
    margin:30px 0;
}

.lista-banner span{
    color:#fff;
    font-weight:600;
    font-size:16px;
}
/* ===== POR QUE ESCOLHER A TOP AR ===== */

.porque{
    padding:90px 8%;
    background:#f8f9fb;
}

.porque h2{
    text-align:center;
    font-size:42px;
    color:#003E91;
    margin-bottom:15px;
}

.porque .subtitulo{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:50px;
}

.porque-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.porque-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .3s ease;
    border-top:5px solid #D71920;
}

.porque-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.porque-card h3{
    color:#003E91;
    margin-bottom:15px;
    font-size:22px;
}

.porque-card p{
    color:#555;
    line-height:1.8;
}
/* ===== MAPA ===== */

.mapa{
    margin-top:40px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.mapa iframe{
    display:block;
    width:100%;
    height:400px;
}
/* ===== ANIMAÇÃO DAS SEÇÕES ===== */

.animar{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.animar.apareceu{
    opacity:1;
    transform:translateY(0);
}
.galeria-botao{
    text-align:center;
    margin-top:45px;
}
.instagram-fixo{
    position:fixed;
    right:33px;
    bottom:125px; /* fica acima do WhatsApp */
    width:65px;
    height:60px;
    border-radius:50%;
    background:#E1306C;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.instagram-fixo:hover{
    transform:scale(1.1);
}

.instagram-fixo i{
    font-size:30px;
    color:#fff;
}
.info-equipe{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px 20px;
    text-align:center;
    background:linear-gradient(transparent, rgba(0,0,0,.85));
}

.info-equipe h3{
    color:#fff;
    font-size:28px;
    margin-bottom:8px;
}

.info-equipe p{
    color:#fff;
    margin-bottom:8px;
    font-weight:600;
}

.info-equipe span{
    color:#ddd;
    font-size:15px;
    line-height:1.5;
}

/* ============================
   RESPONSIVO
============================ */
/* ============================
   RESPONSIVO
============================ */

@media (max-width:768px){

    header{
        flex-direction:column;
        gap:20px;
    }

    nav{
        width:100%;
        justify-content:center;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .botao-whats{
        margin-top:15px;
        width:auto;
        padding:12px 22px;
    }

    .banner{
        height:auto;
        min-height:650px;
        justify-content:center;
        text-align:center;
        padding:40px 20px;
    }

    .banner-texto{
        max-width:100%;
    }

    .banner-texto h1{
        font-size:38px;
        line-height:1.1;
    }

    .banner-texto p{
        font-size:18px;
    }

    .cards,
    .cards-equipe{
        grid-template-columns:1fr;
    }

    .card-equipe{
        max-width:360px;
        margin:auto;
    }

    .numeros{
        grid-template-columns:1fr;
    }

    iframe{
        width:100%;
        height:300px;
    }
}

@media (max-width:480px){

    .banner-texto h1{
        font-size:30px;
    }

    .banner-texto p{
        font-size:16px;
    }

    h2{
        font-size:30px;
    }

}