body{
    font-family:'Roboto',sans-serif;
    margin:0;
}

/* ==================================================
RESPONSIVO 100% (SEM MEXER NA ESTRUTURA)
================================================== */

.section{
    padding:clamp(46px, 6vw, 80px) 0;
}

/* ===============================
FUNDO APENAS NAS SESSÕES 2, 6 e 10 (DEGRADÊ ORIGINAL VERDE-ÁGUA)
=============================== */

#sessao-2,
#sessao-6,
#sessao-10{
    background:
        radial-gradient(900px 420px at 20% 20%, rgba(11,143,135,.22) 0%, rgba(11,143,135,0) 60%),
        radial-gradient(900px 420px at 80% 40%, rgba(16,185,129,.18) 0%, rgba(16,185,129,0) 62%),
        linear-gradient(to bottom, #c9f3ee 0%, #e6fbf8 55%, #ffffff 100%);
    padding:clamp(40px, 5vw, 60px) 0;
}

/* ===============================
PADRÃO DE FONTES (RESPONSIVO)
✅ TÍTULOS: 42px (máximo)
✅ SUBTÍTULOS: 25px (máximo)
✅ Responsivo com clamp()
✅ Mais impactante (sem mexer na estrutura)
=============================== */

.section-title{
    font-size:clamp(25px, 3.6vw, 42px);
    font-weight:500;
    margin-bottom:clamp(18px, 2.5vw, 26px);
    letter-spacing:.4px;
    line-height:1.2;
}

.titulo-com-seta{
    position:relative;
    padding-left:32px;
    margin-top:clamp(14px, 2vw, 22px);
    font-size:clamp(18px, 2.4vw, 24px); /* ✅ -1px em todos os subtítulos */
    font-weight:600;
}

/* ===============================
HOVER SUBTÍTULOS (PRETO, AUMENTA LEVE)
=============================== */

.titulo-com-seta{
    cursor:pointer;
    transition:transform .18s ease, color .18s ease;
}

@media (hover:hover) and (pointer:fine){
    .titulo-com-seta:hover{
        color:#000;
        transform:scale(1.06);
    }
}

p{
    font-size:clamp(16px, 2.1vw, 19px);
    margin-bottom:clamp(12px, 1.8vw, 16px);
}

/* ===============================
TÍTULOS PREMIUM (SESSÃO 2, 6 e 10)
✅ 42px máximo / 25px mínimo
✅ Mais impactante (letter-spacing calibrado + line-height mais “premium”)
=============================== */

.titulo-premium{
    font-size:clamp(25px, 3.6vw, 42px);
    font-weight:700;
    text-align:center;
    letter-spacing:clamp(.8px, .3vw, 2.2px);
    line-height:1.18;
    word-break:break-word;
}

.titulo-premium span{
    opacity:0;
    transform:translateY(30px);
    display:inline-block;
    transition:all .5s ease;
}

.titulo-premium span.show{
    opacity:1;
    transform:translateY(0);
}

.titulo-premium .space{
    width:12px;
}

@media (max-width:480px){
    .titulo-premium .space{ width:8px; }
}

.linha-premium{
    height:4px;
    width:0;
    background:#000;
    margin:clamp(14px, 2.2vw, 22px) auto 0;
    border-radius:10px;
    transition:width 1s ease;
}

.linha-premium.show{
    width:clamp(160px, 35vw, 220px);
}

/* ===============================
COLUNAS
=============================== */

.row.align-items-stretch{
    align-items:stretch !important;
}

.coluna-texto{
    display:flex;
    flex-direction:column;
}

/* CENTRALIZA VERTICAL TEXTO */
#sessao-3 .coluna-texto,
#sessao-4 .coluna-texto,
#sessao-5 .coluna-texto,
#sessao-8 .coluna-texto,
#sessao-9 .coluna-texto,
#sessao-11 .coluna-texto,
#sessao-12 .coluna-texto,
#sessao-13 .coluna-texto,
#sessao-14 .coluna-texto,
#sessao-15 .coluna-texto,
#sessao-16 .coluna-texto{
    justify-content:center;
}

/* ===============================
IMAGENS (SESSÕES COM 2 COLUNAS)
=============================== */

.section-image-left,
.section-image-right{
    display:flex;
    align-items:stretch;
}

.section-image-left{ justify-content:flex-start; }
.section-image-right{ justify-content:flex-end; }

.section-image-left img,
.section-image-right img{
    width:72%;
    max-width:420px;
    height:100%;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.15);
    transition:transform .25s ease, box-shadow .25s ease;
}

/* ===============================
SESSÃO 7 (IMAGENS + SEM SETAS)
=============================== */

#sessao-7 .img-sessao7{
    width:100%;
    max-width:420px;
    height:auto;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.15);
    transition:transform .25s ease, box-shadow .25s ease;
}

#sessao-7 .titulo-com-seta{
    padding-left:0;
}
#sessao-7 .titulo-com-seta::before{
    content:none;
}

/* ===============================
EFEITO HOVER (apenas em dispositivos com hover)
=============================== */

@media (hover:hover) and (pointer:fine){
    .section-image-left img:hover,
    .section-image-right img:hover,
    #sessao-7 .img-sessao7:hover{
        transform:scale(1.05);
        box-shadow:0 16px 40px rgba(0,0,0,.28);
    }
}

/* ===============================
SETAS (PADRÃO)
=============================== */

.titulo-com-seta::before{
    content:"➜";
    position:absolute;
    left:0;
    color:#0b8f87;
}

#sessao-4 .titulo-com-seta::before{
    content:"✔";
}

#sessao-8 .titulo-com-seta::before{
    color:#0b8f87;
}

/* ===============================
HERO (SESSÃO 1) - ATUALIZADO (somente sessão 1)
✅ layout em 2 colunas: CTA à esquerda / título à direita
✅ TEXTO CTA CENTRALIZADO
✅ BOTÃO CENTRALIZADO
✅ AUMENTA FONTE + MUDA COR (VERDE) DO TEXTO: "SOLICITE UM ORÇAMENTO..."
=============================== */

#sessao-1{
    min-height:90vh;
    margin-top:60px;
    display:flex;
    align-items:center;
    background:url("../assets/img/img_1.png") center 20%/cover no-repeat;
    position:relative;
    overflow:hidden;
}

#sessao-1::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.50) 0%,
        rgba(0,0,0,.35) 35%,
        rgba(0,0,0,.30) 65%,
        rgba(0,0,0,.22) 100%
    );
    z-index:0;
}

#sessao-1 .container{
    position:relative;
    z-index:1;
}

#sessao-1 .hero-grid{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:clamp(18px, 4vw, 48px);
    align-items:center;
}

#sessao-1 .hero-col{
    max-width:600px;
}

/* coluna esquerda (CTA) */
#sessao-1 .hero-cta{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:center;
}

/* ✅ texto CTA (CENTRALIZADO + MAIOR) */
#sessao-1 .hero-cta-text{
    margin:0 0 clamp(16px, 2.6vw, 24px) 0;
    font-size:clamp(26px, 3.8vw, 38px);
    font-weight:800;
    color:#7CFF7A;
    text-shadow:0 3px 14px rgba(0,0,0,.60);
    line-height:1.18;
    text-align:center;
}

/* wrapper só do botão (centralizado) */
#sessao-1 .hero-cta-btnwrap{
    width:100%;
    display:flex;
    justify-content:center;
}

/* botão laranja sombreado */
#sessao-1 .btn-hero-orcamento{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    border-radius:14px;
    background:#ff7a00;
    color:#fff;
    font-weight:900;
    letter-spacing:.2px;
    text-decoration:none;
    box-shadow:0 14px 30px rgba(0,0,0,.35);
    transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

@media (hover:hover) and (pointer:fine){
    #sessao-1 .btn-hero-orcamento:hover{
        transform:translateY(-2px) scale(1.03);
        box-shadow:0 18px 40px rgba(0,0,0,.45);
        filter:brightness(1.03);
    }
}

/* coluna direita (texto principal) */
#sessao-1 .hero-main{
    text-align:right;
    justify-self:end;
}

#sessao-1 .hero-main h1{
    font-size:clamp(40px, 7.2vw, 76px);
    text-transform:uppercase;
    line-height:1.05;
    color:#fff;
    text-shadow:0 4px 18px rgba(0,0,0,.65);
    margin:0;
}

#sessao-1 .hero-main p{
    margin-top:clamp(16px, 3vw, 28px);
    font-size:clamp(16px, 2.4vw, 20px);
    color:#fff;
    text-shadow:0 3px 14px rgba(0,0,0,.55);
}

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

@media (max-width:768px){

    .section-image-left,
    .section-image-right{
        justify-content:center;
        margin-top:22px;
    }

    .section-image-left img,
    .section-image-right img{
        width:100%;
        max-width:520px;
        height:auto;
        object-fit:cover;
    }

    #sessao-1 .hero-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    #sessao-1 .hero-cta,
    #sessao-1 .hero-main{
        text-align:center;
        justify-self:center;
        max-width:100%;
    }

    #sessao-1 .hero-cta-text{
        text-align:center;
    }

    #sessao-1 .hero-main{
        text-align:center;
    }

    #sessao-1::before{
        background:linear-gradient(
            to bottom,
            rgba(0,0,0,.50) 0%,
            rgba(0,0,0,.35) 55%,
            rgba(0,0,0,.18) 100%
        );
    }
}

/* =========================================
SESSÃO 5 - CARDS (somente sessão 5)
✅ 3 quadros na mesma linha (desktop)
✅ Ícone centralizado em cada card
✅ Efeito hover
========================================= */

#sessao-5 .nr-cards{
    margin-top:clamp(10px, 1.6vw, 14px);
}

/* ✅ centraliza o título da sessão 5 */
#sessao-5 .section-title{
    text-align:center;
}

#sessao-5 .nr-card{
    height:100%;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:18px 16px;
    box-shadow:0 10px 26px rgba(0,0,0,.12);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

#sessao-5 .nr-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:12px;
    background:rgba(11,143,135,.12);
    border:1px solid rgba(11,143,135,.22);
}

#sessao-5 .nr-card h4{
    margin:0 0 10px 0;
    font-size:clamp(18px, 2.1vw, 22px);
    font-weight:800;
    letter-spacing:.2px;
}

#sessao-5 .nr-card p{
    margin:0;
    font-size:clamp(15px, 1.9vw, 18px);
    line-height:1.45;
}

@media (hover:hover) and (pointer:fine){
    #sessao-5 .nr-card:hover{
        transform:translateY(-6px) scale(1.02);
        box-shadow:0 18px 44px rgba(0,0,0,.22);

        /* ✅ laranja clarinho no hover */
        background:#fff2e6;
        border-color:rgba(255,122,0,.45);
    }
    #sessao-5 .nr-card:hover .nr-icon{
        background:rgba(255,122,0,.14);
        border-color:rgba(255,122,0,.35);
    }
}

/* =========================================
SESSÃO 17 - NOSSOS CLIENTES (MAIS IMPACTANTE / PREMIUM)
✅ mexe somente na sessão 17
✅ layout corporativo: cards premium + fundo elegante
✅ legenda abaixo do logo (Ambiental, CDA e Cabreúva)
========================================= */

#sessao-17{
    position:relative;
    overflow:hidden;

    /* Fundo mais marcante (cinza premium com brilho leve) */
    background:
        radial-gradient(900px 480px at 18% 22%, rgba(11,143,135,.10) 0%, rgba(11,143,135,0) 62%),
        radial-gradient(900px 480px at 82% 38%, rgba(0,0,0,.06) 0%, rgba(0,0,0,0) 62%),
        linear-gradient(to bottom, #f3f6f7 0%, #fbfbfb 55%, #ffffff 100%);
}

/* conteúdo acima do fundo decorativo */
#sessao-17 > .container{
    position:relative;
    z-index:2;
}

/* ondas / shapes no rodapé */
#sessao-17::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-2px;
    height:230px;
    z-index:1;
    pointer-events:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230b8f87' fill-opacity='0.08' d='M0,256L96,240C192,224,384,192,576,197.3C768,203,960,245,1152,245.3C1344,245,1536,203,1728,197.3L1920,192L1920,320L0,320Z'/%3E%3Cpath fill='%23000000' fill-opacity='0.04' d='M0,288L120,272C240,256,480,224,720,224C960,224,1200,256,1320,272L1440,288L1440,320L0,320Z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:bottom center;
    background-size:cover;
}

/* título mais “hero” */
#sessao-17 .section-title{
    text-align:center;
    font-weight:900;
    letter-spacing:.6px;
    color:#0b8f87;
    margin-bottom:10px;
}

/* subtítulo (micro-texto) */
#sessao-17 .s17-sub{
    margin:0 auto 10px;
    text-align:center;
    font-size:clamp(14px, 1.9vw, 16px);
    font-weight:700;
    color:#466067;
    letter-spacing:.2px;
    max-width:760px;
}

/* linha premium abaixo */
#sessao-17 .s17-linha{
    height:4px;
    width:clamp(170px, 26vw, 240px);
    background:linear-gradient(90deg, #0b8f87 0%, rgba(11,143,135,.25) 55%, transparent 100%);
    border-radius:99px;
    margin:0 auto clamp(18px, 2.2vw, 26px);
}

/* grid */
#sessao-17 .row.align-items-stretch{
    align-items:stretch !important;
}

/* Card premium */
#sessao-17 .cliente-card{
    width:100%;
    border-radius:20px;
    padding:22px 18px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 14px 40px rgba(0,0,0,.10);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;

    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    height:100%;
}

/* Logo */
#sessao-17 .cliente-card img{
    width:100%;
    max-width:280px;
    height:auto;
    object-fit:contain;

    filter:grayscale(.12) contrast(1.03);
    transition:transform .25s ease, filter .25s ease;
}

/* legenda abaixo do logo */
#sessao-17 .cliente-caption{
    margin:0;
    text-align:center;
    font-size:13px;
    font-weight:800;
    color:#3c4a4f;
    letter-spacing:.2px;
    line-height:1.25;
}

/* hover sofisticado */
@media (hover:hover) and (pointer:fine){
    #sessao-17 .cliente-card:hover{
        transform:translateY(-10px);
        box-shadow:0 22px 60px rgba(0,0,0,.16);
        border-color:rgba(11,143,135,.22);
        background:#ffffff;
    }
    #sessao-17 .cliente-card:hover img{
        transform:scale(1.05);
        filter:grayscale(0) contrast(1.06);
    }
}

/* =========================================
BOTÃO WHATSAPP FLUTUANTE
========================================= */

.btn-whatsapp{
    position:fixed;
    bottom:95px; /* fica acima da seta */
    right:30px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    font-size:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:transform .25s ease, box-shadow .25s ease;
}

@media (hover:hover) and (pointer:fine){
    .btn-whatsapp:hover{
        transform:scale(1.1);
        box-shadow:0 14px 35px rgba(0,0,0,.35);
    }
}

/* =========================================
BALÃO "FALE CONOSCO" NO WHATSAPP
========================================= */

.btn-whatsapp .whats-tooltip{
    position:absolute;
    right:68px;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.82);
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:8px 12px;
    border-radius:12px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
    pointer-events:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.btn-whatsapp .whats-tooltip::after{
    content:"";
    position:absolute;
    right:-6px;
    top:50%;
    transform:translateY(-50%);
    border-width:6px;
    border-style:solid;
    border-color:transparent transparent transparent rgba(0,0,0,.82);
}

@media (hover:hover) and (pointer:fine){
    .btn-whatsapp:hover .whats-tooltip{
        opacity:1;
        visibility:visible;
        transform:translateY(-50%) translateX(-4px);
    }
}

/* =========================================
BOTÃO VOLTAR AO TOPO
========================================= */

.btn-topo{
    position:fixed;
    bottom:30px;
    right:30px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#0b8f87; /* cor principal do site */
    color:#fff;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:all .3s ease;
    z-index:9999;
}

.btn-topo.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

@media (hover:hover) and (pointer:fine){
    .btn-topo:hover{
        transform:scale(1.1);
        box-shadow:0 14px 35px rgba(0,0,0,.35);
    }
}

/* =========================================
JANELA (MODAL) DE BOAS-VINDAS
========================================= */

.modal-backdrop.show{
    opacity:.55;
}

.h2-welcome-modal .modal-content{
    border:1px solid rgba(255,255,255,.18);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.35);
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
}

.h2-welcome-modal .modal-header{
    border-bottom:0;
    padding:6px 22px 4px; /* 🔥 reduz espaço superior */
    justify-content:center;
    text-align:center;
}

.h2-welcome-modal .welcome-logo{
    width:220px;
    height:auto;
    display:block;
    margin:0 auto 4px;
}

.h2-welcome-modal .h2-welcome-accent{
    height:4px;
    width:100%;
    background:linear-gradient(90deg, #0b8f87 0%, rgba(11,143,135,.2) 55%, transparent 100%);
}

.h2-welcome-modal .modal-body{
    padding:6px 22px 6px; /* 🔥 espaço superior/inferior mínimo */
    text-align:center;
    font-size:18px;
    line-height:1.3;
}

/* 🔥 REMOVE QUALQUER ESPAÇO GIGANTE ENTRE TEXTOS */
.h2-welcome-modal .modal-body strong,
.h2-welcome-modal .modal-body .modal-subtext,
.h2-welcome-modal .modal-body a{
    display:block;
    margin:10px 0; /* 🔥 APENAS 2px ENTRE ELES */
}

.h2-welcome-modal .modal-subtext{
    font-size:14px;
    font-weight:700;
    color:#466067;
}

.h2-welcome-modal .modal-body a{
    font-size:13px;
    font-weight:600;
    color:#0b8f87;
    text-decoration:underline;
}

.h2-welcome-modal .modal-footer{
    border-top:0;
    padding:4px 22px 8px; /* 🔥 reduz espaço inferior */
    justify-content:center;
}

.h2-welcome-modal .btn-h2{
    background:#0b8f87;
    border:none;
    color:#fff;
    font-weight:700;
    border-radius:14px;
    padding:10px 18px;
}

/* ==================================================
MOBILE (mantém espaçamento igual)
================================================== */

@media(max-width:768px){

    .h2-welcome-modal .modal-header{
        padding:0px 16px 6px;
    }

    /* só a sessão 2 */
    #sessao-2 .titulo-premium{
        font-size:18px !important;
    }

    /* mantém 6 e 10 como estão (16px) */
    #sessao-6 .titulo-premium,
    #sessao-10 .titulo-premium{
        font-size:16px !important;
    }

    .h2-welcome-modal .welcome-logo{
        width:160px;
        margin:0 auto 6px;
    }

    .h2-welcome-modal .modal-body{
        padding:0px 16px 14px;
        font-size:16px;
        gap:8px; /* 🔥 mesmo espaço também no mobile */
    }

    .h2-welcome-modal .modal-footer{
        padding:0px 16px 14px;
    }

}

/* =========================================
SESSÃO 11 - ÍCONES + CARDS (ATUALIZADO)
✅ mexe somente na sessão 11
========================================= */

#sessao-11 .h2-servico-card{
    background:#ffffff;
    border-radius:16px;
    padding:22px 14px;
    text-align:center;
    font-weight:600;
    font-size:clamp(14px,1.8vw,17px);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;

    height:130px;

    box-shadow:0 10px 26px rgba(0,0,0,.12);
    border:1px solid rgba(0,0,0,.06);

    transition:transform .25s ease,
               box-shadow .25s ease,
               background .25s ease,
               border-color .25s ease;
}

#sessao-11 .h2-servico-icon{
    font-size:28px;
    line-height:1;
    color:#0b8f87;
    transition:color .25s ease, transform .25s ease;
}

@media (hover:hover) and (pointer:fine){
    #sessao-11 .h2-servico-card:hover{
        background:#c9f3ee;                 /* ✅ verde-água */
        border-color:rgba(11,143,135,.28);  /* ✅ borda combinando */
        transform:translateY(-6px) scale(1.03); /* ✅ sobe + expande */
        box-shadow:0 18px 40px rgba(0,0,0,.22);
    }

    #sessao-11 .h2-servico-card:hover .h2-servico-icon{
        color:#0b8f87;
        transform:scale(1.08);
    }
}

/* =========================================
SESSÃO 11 - AJUSTES (somente sessão 11)
✅ Centraliza o título
✅ Centraliza a última linha (when sobra 1 ou 2 cards)
========================================= */

#sessao-11 .section-title{
    text-align:center;
    color:#0b8f87; /* ✅ mesmo verde das setas */
}

#sessao-11 .coluna-texto .row.g-3{
    justify-content:center;
}

/* =========================================
SESSÃO 12 - FUNDO VERDE-ÁGUA + ONDA GEOMÉTRICA
✅ mexe somente na sessão 12
========================================= */

#sessao-12{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(900px 420px at 15% 15%, rgba(11,143,135,.18) 0%, rgba(11,143,135,0) 62%),
        radial-gradient(900px 420px at 85% 35%, rgba(16,185,129,.14) 0%, rgba(16,185,129,0) 62%),
        linear-gradient(to bottom, #c9f3ee 0%, #e6fbf8 60%, #ffffff 100%);
}

/* conteúdo acima da onda */
#sessao-12 > .container{
    position:relative;
    z-index:2;
}

/* onda geométrica */
#sessao-12::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-2px;
    height:260px;
    z-index:1;
    pointer-events:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230b8f87' fill-opacity='0.18' d='M0,224L80,213.3C160,203,320,181,480,176C640,171,800,181,960,197.3C1120,213,1280,235,1360,245.3L1440,256L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'/%3E%3Cpath fill='%2310b981' fill-opacity='0.14' d='M0,256L96,240C192,224,384,192,576,186.7C768,181,960,203,1152,208C1344,213,1536,203,1632,197.3L1728,192L1728,320L1632,320C1536,320,1344,320,1152,320C960,320,768,320,576,320C384,320,192,320,96,320L0,320Z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:bottom center;
    background-size:cover;
}

/* =========================================
SESSÃO 4 - FUNDO (NÃO VERDE) + FIGURA GEOMÉTRICA DIFERENTE
✅ mexe somente na sessão 4
========================================= */

#sessao-4{
    position:relative;
    overflow:hidden;

    /* Azul suave/corporativo (combina com verde-água sem ficar verde) */
    background:
        radial-gradient(900px 420px at 20% 20%, rgba(25,60,120,.12) 0%, rgba(25,60,120,0) 60%),
        radial-gradient(900px 420px at 80% 40%, rgba(40,90,160,.10) 0%, rgba(40,90,160,0) 62%),
        linear-gradient(to bottom, #eaf1fb 0%, #f4f7fc 60%, #ffffff 100%);
}

/* Conteúdo acima das formas */
#sessao-4 > .container{
    position:relative;
    z-index:2;
}

/* Forma geométrica superior (diagonal) */
#sessao-4::before{
    content:"";
    position:absolute;
    top:-2px;
    left:0;
    right:0;
    height:200px;
    z-index:1;
    pointer-events:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23193c78' fill-opacity='0.10' d='M0,0L1440,120L1440,0L0,0Z'/%3E%3Cpath fill='%23285aa0' fill-opacity='0.08' d='M0,0L1440,180L1440,0L0,0Z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:top center;
    background-size:cover;
}

/* Forma geométrica inferior (recorte moderno) */
#sessao-4::after{
    content:"";
    position:absolute;
    bottom:-2px;
    left:0;
    right:0;
    height:160px;
    z-index:1;
    pointer-events:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23193c78' fill-opacity='0.08' d='M0,320L1440,200L1440,320L0,320Z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:bottom center;
    background-size:cover;
}

/* =========================================
SESSÃO 14 - CARDS PREMIUM CLEAN
✅ visual médico moderno
✅ elegante e corporativo
✅ hover sofisticado
========================================= */

#sessao-14 .s14-cards{
    margin-top:clamp(14px, 2vw, 20px);
}

#sessao-14 .s14-card{
    height:100%;
    background:#ffffff;

    border-radius:20px;
    padding:22px 20px;

    /* ✅ detalhe premium superior */
    border-top:5px solid #0b8f87;

    border-left:1px solid rgba(0,0,0,.06);
    border-right:1px solid rgba(0,0,0,.06);
    border-bottom:1px solid rgba(0,0,0,.06);

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    box-shadow:0 10px 28px rgba(0,0,0,.10);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease;
}

/* subtítulo */
#sessao-14 .s14-card h4{
    margin-bottom:10px;
    font-size:clamp(19px,2.2vw,24px);
    font-weight:800;
    color:#0b8f87;
    letter-spacing:.3px;
}

/* texto */
#sessao-14 .s14-card p{
    margin:0;
    font-size:clamp(15px,1.9vw,18px);
    line-height:1.55;
    color:#3c4a4f;
}

/* ✅ Hover elegante (SEM mudar identidade) */
@media (hover:hover) and (pointer:fine){
    #sessao-14 .s14-card:hover{
        transform:translateY(-10px);
        box-shadow:0 22px 60px rgba(0,0,0,.18);
        background:#f8fefe;
        border-top-color:#10b981;
    }
}

/* =========================================
SESSÃO 16 - TIMELINE HORIZONTAL (somente sessão 16)
✅ 3 itens na mesma linha (desktop)
✅ linha conectando os pontos
✅ visual impactante e corporativo
✅ no mobile vira vertical automaticamente
========================================= */

#sessao-16 .s16-timeline{
    margin-top:clamp(10px, 1.8vw, 18px);
}

#sessao-16 .s16-step{
    position:relative;
    height:100%;
    padding:18px 14px 14px;
    text-align:center;
    border-radius:18px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 10px 26px rgba(0,0,0,.10);
    transition:transform .25s ease, box-shadow .25s ease;
}

#sessao-16 .s16-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#0b8f87;
    margin:0 auto 10px;
    position:relative;
    box-shadow:0 8px 20px rgba(11,143,135,.25);
}

#sessao-16 .s16-step h4{
    margin:0 0 8px;
    font-size:clamp(18px, 2.1vw, 22px);
    font-weight:900;
    letter-spacing:.2px;
    color:#0b8f87;
}

#sessao-16 .s16-step p{
    margin:0;
    font-size:clamp(15px, 1.9vw, 18px);
    line-height:1.5;
    color:#3c4a4f;
}

/* linha conectando (apenas desktop/tablet) */
@media (min-width:768px){
    #sessao-16 .s16-step::after{
        content:"";
        position:absolute;
        top:26px;               /* alinha com o centro do dot */
        left:50%;
        width:100%;
        height:3px;
        background:linear-gradient(90deg, rgba(11,143,135,.55), rgba(11,143,135,.08));
        transform:translateX(9px); /* começa depois do dot */
        z-index:-1;
        border-radius:99px;
    }
    #sessao-16 .s16-step.last::after{
        content:none;
    }
}

/* hover só elevação */
@media (hover:hover) and (pointer:fine){
    #sessao-16 .s16-step:hover{
        transform:translateY(-8px);
        box-shadow:0 20px 52px rgba(0,0,0,.16);
    }
}

/* =========================================
SESSÃO 18 - LOCALIZAÇÃO (2 COLUNAS)
✅ mexe somente na sessão 18
✅ esquerda: foto fachadah2.png
✅ direita: google maps preenchendo o card todo
========================================= */

#sessao-18 .s18-fachada-wrap{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.15);
    height:100%;
    background:#fff;
}

#sessao-18 .s18-fachada-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

#sessao-18 .s18-mapa-wrap{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.15);
    height:100%;
    min-height:420px; /* ✅ garante altura mínima no desktop */
}

#sessao-18 .s18-mapa-wrap iframe{
    width:100%;
    height:100%;      /* ✅ preenche vertical também */
    border:0;
    display:block;
}

/* ✅ garante que as colunas "estiquem" e os wrappers ocupem tudo */
#sessao-18 .row.align-items-stretch > [class^="col-"]{
    display:flex;
}
#sessao-18 .s18-fachada-wrap,
#sessao-18 .s18-mapa-wrap{
    flex:1;
}

@media (max-width: 991.98px){
    #sessao-18 .s18-fachada-wrap,
    #sessao-18 .s18-mapa-wrap{
        height:auto;
    }

    #sessao-18 .s18-fachada-wrap img{
        height:auto;
    }

    /* mantém um tamanho confortável no mobile */
    #sessao-18 .s18-mapa-wrap{
        min-height:420px;
    }
    #sessao-18 .s18-mapa-wrap iframe{
        height:420px;
    }
}

/* =========================================
AVISO NR1 (TOAST) - canto inferior esquerdo
✅ Fonte menor + texto centralizado (NR 01 — ...)
========================================= */

#nr1-toast{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:9998;

  width:min(380px, calc(100vw - 44px));
  background:rgba(255,255,255,.94);
  border:1px solid rgba(0,0,0,.10);
  border-left:6px solid #0b8f87;
  border-radius:18px;
  box-shadow:0 16px 50px rgba(0,0,0,.20);
  backdrop-filter:blur(10px);

  padding:14px 14px 12px;

  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
}

#nr1-toast.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

#nr1-toast .nr1-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

/* ✅ centraliza o bloco de textos (sem mexer no X) */
#nr1-toast .nr1-top > div{
  width:100%;
  text-align:center;
}

/* ✅ AQUI: diminui e centraliza o texto "NR 01 — FAZEMOS..." (que está na nr1-title) */
#nr1-toast .nr1-title{
  margin:0;
  font-weight:900;
  font-size:clamp(12px, 1.35vw, 13px); /* 🔽 menor e responsivo */
  line-height:1.25;
  letter-spacing:.2px;
  color:#0b8f87;
  text-align:center;
}

/* (opcional) texto menor abaixo continua igual, mas também centralizado */
#nr1-toast .nr1-text{
  margin:6px 0 10px;
  font-size:clamp(12px, 1.25vw, 13px);
  line-height:1.35;
  color:#2b2b2b;
  text-align:center;
}

#nr1-toast .nr1-actions{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

#nr1-toast .nr1-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:13px;
  color:#0b8f87;
  text-decoration:none;
  padding:9px 12px;
  border-radius:12px;
  border:1px solid rgba(11,143,135,.22);
  background:rgba(11,143,135,.08);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

@media (hover:hover) and (pointer:fine){
  #nr1-toast .nr1-link:hover{
    transform:translateY(-1px);
    background:rgba(11,143,135,.12);
    border-color:rgba(11,143,135,.35);
  }
}

#nr1-toast .nr1-close{
  border:none;
  background:transparent;
  line-height:1;
  font-size:18px;
  color:#4c4c4c;
  padding:6px 8px;
  border-radius:10px;
  cursor:pointer;
  transition:background .18s ease, transform .18s ease;
}

@media (hover:hover) and (pointer:fine){
  #nr1-toast .nr1-close:hover{
    background:rgba(0,0,0,.06);
    transform:scale(1.05);
  }
}