/* ===========================
 RESET & BASE
=========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins", Arial, sans-serif;
}

html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
    background:#f7f9fc;
    color:#333;
}

img{
    max-width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
 HEADER
=========================== */
.topo{
    background:#ffffff;
    padding:18px 0;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:100;
}

.topo .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.logo{
    color:#1F86B8;
    font-size:22px;
    font-weight:700;
}

nav{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:.3s;
}

nav a:hover{
    color:#1F86B8
;
}

.btn-nav{
    padding:8px 14px;
    border-radius:8px;
    background:#1F86B8
;
    color:white !important;
}


/* ===========================
 HERO
=========================== */
.hero{
    text-align:center;
    padding:95px 0 80px 0;
    background:white;
}

.hero h2{
    font-size:34px;
    color:#1F86B8
;
    font-weight:700;
}

.hero p{
    margin-top:8px;
    color:#555;
    font-size:16px;
}

.cta-area{
    margin-top:25px;
}

.btn-primary{
    background:#1F86B8
;
    padding:12px 20px;
    color:white;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
    margin-right:10px;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
    background:#162c66;
}

.btn-outline{
    border:2px solid #1F86B8
;
    padding:10px 18px;
    border-radius:8px;
    color:#1f3c88;
    text-decoration:none;
    transition:.3s;
}

.btn-outline:hover{
    background:#1F86B8
;
    color:white;
}


/* ===========================
 SERVIÇOS
=========================== */
.titulo-section{
    text-align:center;
    font-size:30px;
    margin:80px 0 40px 0;
    color:#1F86B8
;
    font-weight:700;
}

.card{
    display:flex;
    gap:25px;
    margin-bottom:45px;
    background:white;
    padding:25px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    width:100%;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-4px);
}

.card img{
    width:48%;
    border-radius:14px;
}

.texto h3{
    font-size:24px;
    color:#1F86B8
;
    margin-bottom:6px;
}

.texto p{
    color:#555;
    margin:8px 0 15px 0;
    line-height:1.6;
}

.btn-card{
    background:#1F86B8;
    color:white;
    padding:10px 16px;
    border-radius:6px;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.btn-card:hover{
    background:#0d1f54;
}

.reverse{
    flex-direction:row-reverse;
}


/* ===========================
 SOBRE
=========================== */
.sobre{
    background:#eef2ff;
    padding:65px 0;
    text-align:center;
}

.sobre h2{
    color:#1F86B8
;
    font-size:28px;
    font-weight:700;
}

.sobre p{
    margin-top:10px;
    color:#555;
}


.sobre-premium{
  background:#ffffff;
  padding:80px 20px;
}

.sobre-premium .container{
  max-width:1100px;
  margin:0 auto;
}

.sobre-premium h2{
  font-size:2.4rem;
  font-weight:700;
  color:#0f172a;
  margin-bottom:32px;
  position:relative;
}

.sobre-premium h2::after{
  content:"";
  width:60px;
  height:4px;
  background:#1F86B8
;
  display:block;
  margin-top:12px;
  border-radius:2px;
}

.sobre-premium p{
  font-size:1.05rem;
  line-height:1.8;
  color:#334155;
  margin-bottom:22px;
}

.sobre-premium p strong{
  color:#0f172a;
}

.sobre-premium .destaque{
  margin-top:40px;
  font-size:1.25rem;
  font-weight:600;
  color:#069251;
  border-left:4px solid #1F86B8
;
  padding-left:16px;
}

/* RESPONSIVO */
@media (max-width:768px){
  .sobre-premium h2{
    font-size:2rem;
  }

  .sobre-premium p{
    font-size:1rem;
  }
}







/* ===========================
 CONTATO
=========================== */
.contato{
    padding:60px 0;
    text-align:center;
}

.contato h2{
    color:#1F86B8
;
    font-size:28px;
    font-weight:700;
}

.contato p{
    margin-top:5px;
    color:#555;
}


/* ===========================
 FOOTER
=========================== */
footer{
    background:#1b2145;
    text-align:center;
    padding:30px;
    color:white;
}


/* ===========================
 CARROSSEL PREMIUM (SEM BUG LATERAL)
=========================== */
.carrossel-cta{
    position:relative;
    width:100%;
    height:480px;
    overflow:hidden;

    /* CENTRALIZAÇÃO BONITA */
    display:flex;
    align-items:center;      /* Centraliza vertical */
    justify-content:center;  /* Centraliza horizontal */
}

/* AQUI É O SEGREDO */
.carrossel-imagens{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    display:flex;
    transition:transform 1s ease-in-out;
}

.slide{
    width:100vw;          /* garante 100% real da tela */
    height:100%;
    background-size:cover;
    background-position:center;
}




.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.4));
    display:none;
}



.conteudo{
    position:relative;
    max-width:900px;
    width:92%;
    color:white;
    z-index:2;
}

.conteudo h2{
    font-size:32px;
    margin-bottom:10px;
    font-weight:700;
}

.conteudo p{
    font-size:17px;
    margin-bottom:20px;
    color:#e5e5e5;
}

.btn-whats{
    background:#25D366;
    padding:14px 26px;
    border-radius:10px;
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:700;
    display:inline-block;
    transition:.3s;
}

.btn-whats:hover{
    background:#1ebe58;
    transform:scale(1.05);
}


/* ===========================
 RESPONSIVIDADE
=========================== */

/* Tablets */
@media(max-width:950px){

    .card{
        padding:20px;
    }

    .hero h2{
        font-size:30px;
    }
}

/* Mobile */
@media(max-width:820px){

    nav{
        justify-content:center;
    }

    .card,
    .reverse{
        flex-direction:column;
        text-align:center;
    }

    .card img{
        width:100%;
    }

    .hero{
        padding:70px 0;
    }

    .carrossel-cta{
        height:420px;
        text-align:center;
    }

    .overlay{
        background:rgba(0,0,0,.8);
    }

    .conteudo{
        text-align:center;
    }

    .conteudo h2{
        font-size:24px;
    }

    .conteudo p{
        font-size:14px;
    }
}

/* iPhone / telas pequenas */
@media(max-width:480px){

    .logo{
        font-size:18px;
    }

    .titulo-section{
        font-size:24px;
    }

    .hero h2{
        font-size:24px;
    }

    .btn-primary,
    .btn-outline{
        font-size:13px;
    }

    .btn-whats{
        font-size:16px;
        padding:12px 20px;
    }
}



/* BOTÃO MENU */
.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#1F86B8
;
}

/* BOTÃO MENU (hambúrguer moderno) */
.menu-btn{
    display:none;
    width:35px;
    height:28px;
    position:relative;
    cursor:pointer;
}

.menu-btn span{
    position:absolute;
    width:100%;
    height:4px;
    background:#1F86B8
;
    border-radius:4px;
    transition:.4s;
}

.menu-btn span:nth-child(1){
    top:0;
}
.menu-btn span:nth-child(2){
    top:10px;
}
.menu-btn span:nth-child(3){
    top:20px;
}

/* Animação virar X */
.menu-btn.ativo span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
}

.menu-btn.ativo span:nth-child(2){
    opacity:0;
}

.menu-btn.ativo span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
}



/* ================= MOBILE MENU ================= */


/* BOTÃO MENU (hambúrguer moderno) */
.menu-btn{
    display:none;
    width:35px;
    height:28px;
    position:relative;
    cursor:pointer;
    z-index:1001; /* IMPORTANTE PARA O X APARECER */
}

.menu-btn span{
    position:absolute;
    width:100%;
    height:4px;
    background:#1F86B8
;
    border-radius:4px;
    transition:.4s;
}

.menu-btn span:nth-child(1){ top:0; }
.menu-btn span:nth-child(2){ top:10px; }
.menu-btn span:nth-child(3){ top:20px; }

/* Animação virar X */
.menu-btn.ativo span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
}
.menu-btn.ativo span:nth-child(2){
    opacity:0;
}
.menu-btn.ativo span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
}


/* ================= MOBILE MENU ================= */
@media(max-width:820px){

    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:75%;
        height:100vh;
        background:white;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start !important; /* GARANTE TOPO */
        
        padding:50px 25px 25px 25px;
 /* SUBIMOS MAIS */
        gap:10px;

        box-shadow:-5px 0 25px rgba(0,0,0,.25);
        transition:.4s;
        z-index:999;
    }

    nav a{
        font-size:18px;
        width:100%;
        padding:10px 12px;
        border-radius:10px;
        background:#f3f5ff;
        color:#1F86B8
;
        text-align:left;
        border:1px solid #d9e1ff;
        transition:.3s;
    }

    nav a:hover{
        background:#1F86B8;
        color:white;
        border-color:#1F86B8;
    }

    .btn-nav{
        background:#1F86B8
!important;
        color:white !important;
    }

    .menu-btn{
        display:block;
    }

    nav.ativo{
        right:0;
    }
}


@media(max-width:820px){

    .menu-btn{
        display:block;
        position:fixed;       /* FICA FIXO NA TELA */
        top:18px;
        right:18px;
        width:35px;
        height:28px;
        z-index:2001;         /* SEM CHANCE DE SUMIR */
    }

    .menu-btn span{
        background:#1F86B8;
    }

    nav{
        z-index:2000;    /* menu abaixo do X */
    }
}





.map-box{
    width:100%;
    height:380px;
    margin-top:25px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    border:1px solid #e5e7eb;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* Ajuste para celular */
@media(max-width:820px){
    .map-box{
        height:300px;
    }
}

.logo img{
    width:auto;
    height:100px;       /* altura ideal desktop */
    object-fit:contain;
    border-radius: 6px;
}


@media(max-width:820px){

    .logo img{
        height:155px;
        border-radius: 6px;    /* diminui a logo no mobile */
    }
}



.topo .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

@media(max-width:820px){
    .menu-btn{
        position:fixed;
        top:18px;
        right:18px;
        z-index:2001;
    }
}



/* BOTÃO FLUTUANTE WHATSAPP */
/* BOTÃO FLUTUANTE WHATSAPP – VERSÃO PREMIUM VIBRANTE */
.zap-float{
    position:fixed;
    bottom: max(18px, env(safe-area-inset-bottom));
    right:18px;
    background:linear-gradient(135deg,#0025f7,#2FA9D9);
    color:white;
    padding:14px 20px;
    border-radius:60px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:800;
    letter-spacing:0.5px;

    /* LUXO */
    box-shadow:
        0 12px 30px rgba(0,0,0,.35),
        0 0 18px rgba(0,255,120,.6);

    border:2px solid rgba(255,255,255,.15);

    /* animação premium */
    animation:pulsaZap 2s infinite ease-in-out;
    z-index:999999999 !important;
}

/* Ícone */
.zap-icone{
    background:white;
    color:#2FA9D9
;
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    box-shadow:0 0 15px #2FA9D9;
}

/* ANIMAÇÃO */
@keyframes pulsaZap{
    0%{ transform:scale(1); }
    50%{ transform:scale(1.08); }
    100%{ transform:scale(1); }
}

/* MOBILE */
@media(max-width:820px){
    .zap-float{
        left:16px;
        right:auto;
        padding:12px 18px;
        font-size:15px;
    }

    .zap-icone{
        width:30px;
        height:30px;
        font-size:17px;
    }
}

/* MOBILE */

   @media(max-width:820px){
    .zap-float{
        left:16px;
        right:auto;
        bottom: max(14px, env(safe-area-inset-bottom));
        font-size:15px;
        padding:10px 16px;
    }
}


    .zap-icone{
        width:28px;
        height:28px;
        font-size:16px;
    }




@supports (-webkit-touch-callout: none) {
  .zap-float{
      position:fixed !important;
      bottom: calc(16px + env(safe-area-inset-bottom));
      left:16px;
      right:auto;
      z-index:1000000000 !important;
      -webkit-transform: translateZ(0);
  }
}




/* REDES SOCIAIS CONTATO */
/* REDES SOCIAIS CONTATO */
.social-contato{
    margin-top:22px;
    display:flex;
    justify-content:center;
    gap:12px;
}

.social-contato a{
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;   /* <<< MAIS QUADRADO */
    font-size:15px;
    font-weight:800;
    color:white;
    box-shadow:0 6px 18px rgba(0,0,0,.18);
    transition:.3s;
}

/* Instagram */
.social-contato .insta{
    background:linear-gradient(145deg,#fd1d1d,#ff7a00,#fcaf45,#d62976,#962fbf,#4f5bd5);
}

/* Facebook */
.social-contato .face{
    background:#1877f2;
}

.social-contato a:hover{
    transform:translateY(-3px) scale(1.03);
}

/* Gmail */
.social-contato .gmail{
    background:#ea4335; /* vermelho Google */
}


/* MOBILE */
@media(max-width:820px){
    .social-contato{
        flex-direction:column;
        gap:10px;
    }

    .social-contato a{
        text-align:center;
        width:100%;
        max-width:320px;
        margin:auto;
    }
}





/* AJUSTE DA ÁREA CONTATO */
.contato h2{
    font-size:28px;
    margin-bottom:12px;
}

.contato p{
    font-size:17px;
    margin:4px 0;
}

/* Botão Whats nessa section */
.contato .btn-primary{
    margin-top:18px;
    display:inline-block;
    font-size:16px;
    padding:12px 18px;
    border-radius:8px;
}




/* CONTEÚDO HERO PREMIUM */
.conteudo{
    position:relative;
    color:white;
    max-width:900px;
    padding:35px 28px;
    border-radius:18px;


    backdrop-filter: blur(6px);
    background:linear-gradient(120deg, rgba(0,0,0,.45), rgba(0,0,0,.10));


    box-shadow:0 25px 45px rgba(0,0,0,.4);
    border:1px solid rgba(255,255,255,.12);

    animation:fadeHero 1.2s ease forwards;
}

/* Título mais impactante */
.conteudo h2{
    font-size:40px;
    font-weight:900;
    letter-spacing:.5px;
    line-height:1.2;
    margin-bottom:10px;
}

/* Texto mais visível */
.conteudo p{
    font-size:18px;
    color:#ffffff;
    margin-bottom:18px;
}


/* BOTÃO WHATS SUPER CHAMATIVO */
.btn-whats{
    background:linear-gradient(135deg,#0003c2,#0066ff);
    padding:14px 26px;
    border-radius:14px;
    text-decoration:none;
    color:#ffffff;
    font-size:19px;
    font-weight:900;
    display:inline-block;
    box-shadow:
        0 12px 30px rgba(0,0,0,.35),
        0 0 18px rgba(0,255,120,.6);

    border:2px solid rgba(255,255,255,.18);
    transition:.3s;
    animation:pulsaHero 2.3s infinite ease-in-out;
}

/* Hover */
.btn-whats:hover{
    transform:scale(1.06) translateY(-2px);
    box-shadow:
        0 18px 35px rgba(0,0,0,.45),
        0 0 25px rgba(0,255,120,.9);
}

/* Animações */
@keyframes pulsaHero{
    0%{ transform:scale(1); }
    50%{ transform:scale(1.09); }
    100%{ transform:scale(1); }
}

@keyframes fadeHero{
    from{ opacity:0; transform:translateY(20px); }
    to{ opacity:1; transform:translateY(0); }
}

/* MOBILE AJUSTE */
@media(max-width:820px){

    .conteudo{
        text-align:center;
        padding:22px 18px;
    }

    .conteudo h2{
        font-size:26px;
    }

    .conteudo p{
        font-size:15px;
    }
}



/* HERO IGUAL AO NOSSOS SERVIÇOS - ESTILO PREMIUM LIMPO */
.hero{
    background:#f7f9fc;
    padding:70px 0;
}

.hero .container{
    background:white;
    padding:35px 25px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
}

.hero h2{
    font-size:30px;
    color:#1f3c88;
    font-weight:900;
}

.hero p{
    color:#555;
    margin-top:8px;
    font-size:17px;
}

.cta-area{
    margin-top:20px;
}


@media(max-width:820px){

    .hero{
        padding:40px 0;
    }

    .hero .container{
        padding:25px 18px;
    }

    .hero h2{
        font-size:22px;
    }

    .hero p{
        font-size:14px;
    }
}


.card img{
    cursor:pointer;
    transition:.3s;
}

.card img:hover{
    transform:scale(1.03);
}



/* SECTION SOBRE / DEPOIMENTOS */
.sobre{
    background:#eef2ff;
    padding:70px 0;
    text-align:center;
}

.sobre h2{
    color:#1f3c88;
    font-size:28px;
    font-weight:900;
}

.sobre .sub{
    color:#555;
    margin-top:6px;
    margin-bottom:25px;
}

/* GOOGLE HEADER */
.google-top{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}

.google-top img{
    height:30px;
}

.google-top strong{
    font-size:22px;
    color:#1f3c88;
}

.google-top span{
    color:#f4c000;
    display:block;
}

.google-top p{
    font-size:13px;
    color:#555;
}


/* GRID */
.depoimentos{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


/* CARD */
.depo-card{
    background:white;
    padding:22px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    text-align:left;
    transition:.3s;
}

.depo-card:hover{
    transform:translateY(-5px);
}


/* TOPO */
.top-depo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.top-depo img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
}

.top-depo strong{
    font-size:17px;
    color:#1f3c88;
}

.top-depo span{
    display:block;
    color:#f4c000;
}

/* TEXTO */
.depo-card p{
    color:#555;
    margin-bottom:10px;
}

.depo-card small{
    color:#1f3c88;
    font-weight:700;
}


/* MOBILE */
@media(max-width:820px){

.depoimentos{
    grid-template-columns:1fr;
}

.google-top{
    flex-direction:column;
}
}

/* ===============================
   SECTION INSTALAÇÃO
================================ */
.servico-detalhe{
    padding:90px 0;
    background:linear-gradient(180deg, #f8fafc, #ffffff);
}

.servico-flex{
    display:flex;
    align-items:center;
    gap:50px;
    background:#ffffff;
    padding:40px;
    border-radius:22px;
    border:1px solid #e5e7eb;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
}

/* ===============================
   TEXTO
================================ */
.servico-texto{
    flex:1;
}

.servico-texto h2{
    font-size:32px;
    color:#2FA9D9;
    margin-bottom:18px;
    font-weight:700;
}

.servico-texto p{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin-bottom:16px;
}

/* ===============================
   BOTÃO
================================ */
.btn-saiba{
    margin-top:25px;
    display:inline-block;
    padding:12px 26px;
    background:#2FA9D9
;
    color:#ffffff;
    font-weight:600;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
    box-shadow:0 8px 20px rgba(40,160,4,.3);
}

.btn-saiba:hover{
    background:#1f7d03;
    transform:translateY(-2px);
}

/* ===============================
   IMAGEM COMPLETA (SEM CORTE)
================================ */
.servico-imagem{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.servico-imagem img{
    width:100%;
    height:auto;
    max-height:420px;
    object-fit:contain;
    border-radius:18px;
    background:#f8fafc;
    padding:14px;
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 900px){
    .servico-flex{
        flex-direction:column;
        padding:30px;
        gap:30px;
    }

    .servico-texto h2,
    .servico-texto p{
        text-align:center;
    }

    .btn-saiba{
        margin:25px auto 0 auto;
    }
}

@media (max-width: 480px){
    .servico-detalhe{
        padding:60px 0;
    }

    .servico-texto h2{
        font-size:24px;
    }
}

/* ===============================
   SECTION INSTALAÇÃO PREMIUM
================================ */
.instalacao-premium{
    padding:130px 0;
    background:#0b0f0c;
}

/* CONTEÚDO CENTRALIZADO */
.instalacao-wrap{
    max-width:980px;
    margin:0 auto;
    text-align:center;
}

/* ===============================
   TAG / SUBTÍTULO
================================ */
.instalacao-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0b0f0c;
    background:#2FA9D9
;
    border-radius:30px;
    font-weight:600;
}

/* ===============================
   TÍTULO
================================ */
.instalacao-texto h2{
    font-size:52px;
    line-height:1.15;
    margin-bottom:40px;
    font-weight:800;
    color:#e5fbe1;
}

/* ===============================
   IMAGEM
================================ */
.instalacao-imagem{
    margin:0 auto 45px auto;
    max-width:720px;
    background:#ffffff;
    padding:32px;
    border-radius:28px;
    box-shadow:0 35px 90px rgba(0,0,0,.45);
}

.instalacao-imagem img{
    width:100%;
    height:auto;
    object-fit:contain;
}

/* ===============================
   TEXTO
================================ */
.instalacao-texto p{
    font-size:18px;
    line-height:1.85;
    color:#cbd5c0;
    margin-bottom:22px;
}

.instalacao-destaque{
    color:#e5fbe1;
    font-weight:600;
}

/* ===============================
   BOTÃO
================================ */
.btn-instalar{
    display:inline-block;
    margin-top:38px;
    padding:16px 44px;
    background:#5600f5;
    color:#0b0f0c;
    font-weight:800;
    text-decoration:none;
    border-radius:12px;
    font-size:15px;
    letter-spacing:.5px;
    transition:.3s;
}

.btn-instalar:hover{
    background:#2FA9D9;
    transform:translateY(-3px);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 900px){
    .instalacao-texto h2{
        font-size:40px;
    }

    .instalacao-imagem{
        padding:24px;
    }
}

@media (max-width: 600px){
    .instalacao-premium{
        padding:90px 0;
    }

    .instalacao-texto h2{
        font-size:30px;
    }

    .instalacao-texto p{
        font-size:16px;
    }
}


/* ===============================
   SECTION LIMPEZA E HIGIENIZAÇÃO
================================ */

/* ===============================
   SECTION LIMPEZA PREMIUM
================================ */
.limpeza-premium{
    padding:130px 0;
    background:#0b0f0c;
}

/* CONTEÚDO CENTRALIZADO */
.limpeza-wrap{
    max-width:980px;
    margin:0 auto;
    text-align:center;
}

/* ===============================
   TAG / SUBTÍTULO
================================ */
.limpeza-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0b0f0c;
    background:#2FA9D9
;
    border-radius:30px;
    font-weight:600;
}

/* ===============================
   TÍTULO
================================ */
.limpeza-texto h2{
    font-size:52px;
    line-height:1.15;
    margin-bottom:40px;
    font-weight:800;
    color:#e5fbe1;
}

/* ===============================
   IMAGEM
================================ */
.limpeza-imagem{
    margin:0 auto 45px auto;
    max-width:700px;
    background:#ffffff;
    padding:32px;
    border-radius:28px;
    box-shadow:0 35px 90px rgba(0,0,0,.45);
}

.limpeza-imagem img{
    width:100%;
    height:auto;
    object-fit:contain;
}

/* ===============================
   TEXTO
================================ */
.limpeza-texto p{
    font-size:18px;
    line-height:1.85;
    color:#cbd5c0;
    margin-bottom:22px;
}

.limpeza-destaque{
    color:#e5fbe1;
    font-weight:600;
}

/* ===============================
   BOTÃO
================================ */
.btn-limpeza{
    display:inline-block;
    margin-top:38px;
    padding:16px 44px;
    background:#2FA9D9
;
    color:#0b0f0c;
    font-weight:800;
    text-decoration:none;
    border-radius:12px;
    font-size:15px;
    letter-spacing:.5px;
    transition:.3s;
}

.btn-limpeza:hover{
    background:#2FA9D9
;
    transform:translateY(-3px);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 900px){
    .limpeza-texto h2{
        font-size:40px;
    }

    .limpeza-imagem{
        padding:24px;
    }
}

@media (max-width: 600px){
    .limpeza-premium{
        padding:90px 0;
    }

    .limpeza-texto h2{
        font-size:30px;
    }

    .limpeza-texto p{
        font-size:16px;
    }
}

/* ===============================
   SECTION PMOC
================================ */

/* ===============================
   SECTION PMOC PREMIUM
================================ */
.pmoc-premium{
    padding:130px 0;
    background:#0b0f0c;
}

/* CONTEÚDO CENTRALIZADO */
.pmoc-wrap{
    max-width:980px;
    margin:0 auto;
    text-align:center;
}

/* ===============================
   TAG / SUBTÍTULO
================================ */
.pmoc-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0b0f0c;
    background:#2FA9D9
;
    border-radius:30px;
    font-weight:600;
}

/* ===============================
   TÍTULO
================================ */
.pmoc-texto h2{
    font-size:52px;
    line-height:1.15;
    margin-bottom:40px;
    font-weight:800;
    color:#e5fbe1;
}

/* ===============================
   IMAGEM
================================ */
.pmoc-imagem{
    margin:0 auto 45px auto;
    max-width:700px;
    background:#ffffff;
    padding:32px;
    border-radius:28px;
    box-shadow:0 35px 90px rgba(0,0,0,.45);
}

.pmoc-imagem img{
    width:100%;
    height:auto;
    object-fit:contain;
}

/* ===============================
   TEXTO
================================ */
.pmoc-texto p{
    font-size:18px;
    line-height:1.85;
    color:#cbd5c0;
    margin-bottom:22px;
}

.pmoc-destaque{
    color:#e5fbe1;
    font-weight:600;
}

/* ===============================
   BOTÃO
================================ */
.btn-pmoc{
    display:inline-block;
    margin-top:38px;
    padding:16px 44px;
    background:#2FA9D9;
    color:#0b0f0c;
    font-weight:800;
    text-decoration:none;
    border-radius:12px;
    font-size:15px;
    letter-spacing:.5px;
    transition:.3s;
}

.btn-pmoc:hover{
    background:#2FA9D9;
    transform:translateY(-3px);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 900px){
    .pmoc-texto h2{
        font-size:40px;
    }

    .pmoc-imagem{
        padding:24px;
    }
}

@media (max-width: 600px){
    .pmoc-premium{
        padding:90px 0;
    }

    .pmoc-texto h2{
        font-size:30px;
    }

    .pmoc-texto p{
        font-size:16px;
    }
}


/* ===============================
   SECTION VOLTAGEM
================================ */


/* ===============================
   SECTION VOLTAGEM PREMIUM
================================ */
.voltagem-premium{
    padding:130px 0;
    background:#0b0f0c;
}

/* CONTEÚDO CENTRALIZADO */
.voltagem-wrap{
    max-width:1100px;
    margin:0 auto;
    text-align:center;
}

/* ===============================
   TAG / SUBTÍTULO
================================ */
.voltagem-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0b0f0c;
    background:#2FA9D9
;
    border-radius:30px;
    font-weight:600;
}

/* ===============================
   TÍTULO
================================ */
.voltagem-texto h2{
    font-size:52px;
    line-height:1.15;
    margin-bottom:50px;
    font-weight:800;
    color:#e5fbe1;
}

/* ===============================
   GRID DE IMAGENS
================================ */
.voltagem-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:35px;
    margin-bottom:50px;
}

.voltagem-card{
    background:#ffffff;
    border-radius:26px;
    padding:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    transition:.35s;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.voltagem-card:hover{
    transform:translateY(-6px);
}

.voltagem-card img{
    width:100%;
    max-height:220px;
    object-fit:contain;
}

.voltagem-card span{
    font-size:15px;
    font-weight:700;
    color:#0b0f0c;
}

/* ===============================
   TEXTO
================================ */
.voltagem-texto p{
    font-size:18px;
    line-height:1.85;
    color:#cbd5c0;
    margin-bottom:22px;
}

.voltagem-destaque{
    color:#e5fbe1;
    font-weight:600;
}

/* ===============================
   BOTÃO
================================ */
.btn-voltagem{
    display:inline-block;
    margin-top:38px;
    padding:16px 44px;
    background:#2FA9D9
;
    color:#0b0f0c;
    font-weight:800;
    text-decoration:none;
    border-radius:12px;
    font-size:15px;
    letter-spacing:.5px;
    transition:.3s;
}

.btn-voltagem:hover{
    background:#2FA9D9
;
    transform:translateY(-3px);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 1024px){
    .voltagem-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .voltagem-texto h2{
        font-size:40px;
    }
}

@media (max-width: 600px){
    .voltagem-premium{
        padding:90px 0;
    }

    .voltagem-grid{
        grid-template-columns:1fr;
    }

    .voltagem-texto h2{
        font-size:30px;
    }

    .voltagem-texto p{
        font-size:16px;
    }
}


/* ===============================
   PADRONIZAÇÃO DAS IMAGENS DOS CARDS
================================ */

/* garante que o link não quebre o tamanho */
/* ===============================
   PADRONIZAÇÃO DAS IMAGENS DOS CARDS
================================ */

/* área da imagem */
.card a{
    width:48%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* DESKTOP (padrão) */
.card img{
    width:100%;
    height:500px;           /* MAIOR no desktop */
    object-fit:contain;
    background:#f8fafc;
    padding:18px;
    border-radius:14px;
}

/* TABLET */
@media (max-width: 1024px){
    .card img{
        height:340px;
        padding:16px;
    }
}

/* MOBILE */
@media (max-width: 768px){
    .card a{
        width:100%;
    }

    .card img{
        height:400px;
        padding:30px;
    }
}


/* BOTÃO SAIBA MAIS ABAIXO DA IMAGEM */

/* ===========================
   SEO LOCAL TEXT
=========================== */
/* ===========================
   SEO LOCAL TEXT
=========================== */
.seo-text{
    margin:40px auto 0;
    max-width:1100px;
    padding:22px 26px;

    background:#ffffff;
    border-left:4px solid #2FA9D9
;
    border-radius:6px;

    font-size:1.05rem;
    line-height:1.8;
    color:#334155;

    box-shadow:0 8px 24px rgba(0,0,0,0.04);
}

.seo-text strong{
    color:#0f172a;
    font-weight:600;
}

/* ===========================
   TABLET
=========================== */
@media (max-width:1024px){
    .seo-text{
        margin:34px 24px 0;
        padding:20px 22px;
        font-size:1.02rem;
        line-height:1.75;
    }
}

/* ===========================
   MOBILE
=========================== */
@media (max-width:768px){
    .seo-text{
        margin:28px 16px 0;
        padding:18px 18px;
        font-size:0.98rem;
        line-height:1.7;
        border-left:3px solid #2FA9D9
;
    }
}

/* ===========================
   MOBILE PEQUENO
=========================== */
@media (max-width:480px){
    .seo-text{
        margin:24px 12px 0;
        padding:16px 16px;
        font-size:0.95rem;
        line-height:1.65;
        border-radius:5px;
    }
}
