        /* CSS RESET & VARIAVEIS */

      :root {

    /* ===== CORES PRINCIPAIS ===== */
    --primary: #0f2a4a;
    --secondary: #198754;
    --accent: #17a2b8;

    /* ===== CORES AUXILIARES ===== */
    --light-green: #d4edda;
    --success-green: #10b981;

    /* ===== TEXTOS ===== */
    --text: #333333;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-white: #ffffff;

    /* ===== BACKGROUNDS ===== */
    --bg-light: #f8f9fa;
    --bg-main: #050505;
    --bg-card: #0f0f0f;

    --pest-bg: #0a0f1a;
    --pest-card-bg: #111927;

    /* ===== BRANCO / CINZA ===== */
    --white: #ffffff;
    --gray: #6c757d;

    /* ===== AZUIS ===== */
    --primary-blue: #2563eb;
    --glow-blue: #3b82f6;

    --pest-accent: #3b82f6;
    --pest-accent-glow: rgba(59, 130, 246, 0.5);

    /* ===== HIGIENIZAÇÃO ===== */
    --pest-hygiene: #10b981;

    /* ===== BORDAS ===== */
    --border-color: rgba(255, 255, 255, 0.08);
    --pest-border: rgba(255, 255, 255, 0.08);
    --card-hover-border: rgba(59, 130, 246, 0.4);

    /* ===== FONTES ===== */
    --pest-font: 'Inter', sans-serif;

    /* ===== TRANSITIONS ===== */
    --transition: all 0.3s ease-in-out;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

}

        p {
            margin-bottom: 15px;
            line-height: 1.6;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Arial, Helvetica;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text);
            background: var(--bg-light);
        }

             .container {
            width: 100%;
            padding: 0 20px;
        }
        html,
body {
    overflow-x: hidden;
}

        section {
            position: relative;
            scroll-margin-top: 100px;
        }

        h2  {
            text-align:center;
            margin-bottom:50px;
            font-size: 2rem;
        }

          h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            margin-top: 20px;
        }

        section::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right,transparent,rgba(0, 0, 0, 0.08),transparent);
        }

        /* HEADER */

        .header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 999;
            backdrop-filter: blur(12px);
            background: rgba(10, 20, 40, 0.75);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* NAV */

        .navbar {
            max-width: 1440px;
            margin: auto;
            padding:18px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* BOTÃO WHATSAPP MENU */

        .menu-cta {
            background: var(--secondary);
            color: var(--white);
            padding: 12px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            margin-left: 20px;
            transition: 0.3s;
        }

        .menu-cta:hover {
            background: #1fa24a;
        }




/* hover verde igual aos links */
.mobile-menu .dropdown-toggle:hover {
    background: var(--secondary);
    color: var(--white);
}

/* =========================
   MENU BASE (PADRÃO GLOBAL)
========================= */

.menu a,
.mobile-menu a,
.mobile-menu .dropdown-toggle {
    position: relative;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

/* =========================
   DESKTOP MENU
========================= */

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;

}

.menu li {
    position: relative;
}

/* SOMENTE nível principal */
.menu > li > a {
    color: var(--white);
    font-weight: 500;
    padding: 10px 4px;
    white-space: nowrap;
}

/* underline performático */
.menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* hover desktop isolado */
@media (min-width: 1201px) {
    .menu > li > a:hover {color: var(--secondary);}
    .menu > li > a:hover::after {transform: scaleX(1);}
}

/* =========================
   DROPDOWN (ISOLADO)
========================= */

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 220px;
    display: none;
}

.dropdown a {
    padding: 12px 20px;
    color: var(--white);
}

/* hover SEM afetar cor do texto global */
.dropdown a:hover {
    background: var(--secondary);
    color: var(--white);
}

.dropdown-item:hover .dropdown {
    display: block;
}

/* padrão visual */
.mobile-menu a,
.mobile-menu .dropdown-toggle {
    padding: 10px;
    border-radius: 6px;
    color: var(--bg-light);
    width: 100%;
    text-align: left;
}

/* hover mobile */
.mobile-menu a:hover,
.mobile-menu .dropdown-toggle:hover {
    background: var(--secondary);
    color: var(--white);
}

/* =========================
   MOBILE DROPDOWN
========================= */


.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding-left: 10px;
    margin-top: 10px;
}

        /* HERO */

        .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 80px;
    overflow: hidden;
    background: #0b1e36;
}

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(10, 35, 60, 0.92),rgba(10, 35, 60, 0.75),rgba(10, 35, 60, 0.65));
        }

        /* HERO CONTENT */

        .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: 80px;
    margin-right: auto;
    padding-right: 20px;
    color: var(--white);
}

        .hero-text {
    max-width: 600px;
}

/* overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,rgba(10, 35, 60, 0.92),rgba(10, 35, 60, 0.75), rgba(10, 35, 60, 0.65));
    z-index: 0;
}

/* imagem */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
        .hero h1 {
            font-size: 56px;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #e3e3e3;
        }

        /* BOTÕES */

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            background: var(--secondary);
            color: var(--white);
            padding: 16px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .btn:hover {
            background: #1fa24a;
        }

        .btn-whatsapp {
            border: 1px solid var(--white);
            padding: 16px 28px;
            border-radius: 30px;
            color: var(--white);
            text-decoration: none;
        }

        .btn-whatsapp:hover {
            background: #218838;
        }

        /* SEGMENTOS */

        .segmentos {
            padding: 80px 20px;
            max-width: 1200px;
            margin: auto;
            border-radius: 20px;
            background: linear-gradient(to bottom,var(--white),#f8fbff);
        }

        .segmentos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .segmento-card {
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .segmento-card:hover {
            transform: translateY(-6px);
        }

        .segmento-card img {
            width: 100%;
            height: 190px;
            object-fit: cover;
        }

        .segmento-content {
            padding: 22px;
        }

        .segmento-content p {
            color: #666;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .saiba-mais {
            color: var(--secondary);
            text-decoration: none;
            font-weight: bold;
        }

        .segmento-card,
        .praga-card,
        .valor-card {box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);border: 1px solid rgba(0, 0, 0, 0.04);}
        .segmento-card:hover,
        .praga-card:hover,
        .valor-card:hover {transform: translateY(-6px);box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);}

        /* PRAGAS */

        .pragas {
            padding: 80px 20px;
            position: relative;
            background: linear-gradient(to bottom,#f1f6fb,#eaf2f9);}

        .pragas-container {
            max-width: 1200px;
            margin: auto;
        }

        .pragas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .praga-card {
            background: #f9fbfd;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
            position: relative;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            display: block;
        }


        .praga-card:hover {
            transform: translateY(-6px);
        }

        .praga-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
        }

        .praga-content {
            padding: 22px;
        }

        .praga-content p {
            font-size: 15px;
            color: #666;
            margin-bottom: 15px;
        }

        /* chamada da seção de pragas */

        .praga-call {
            text-align: center;
            font-size: 18px;
            margin-top: -20px;
            margin-bottom: 40px;
            color: #444;
            font-weight: 500;
        }

        .praga-call span {
            color: var(--secondary);
            font-weight: bold;
            position: relative;
        }

        /* FOOTER */

    .footer {
    background: #0f2a4a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #28a745;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: #dbeafe;
}


        img {
            display: block;
        }

        /* LOCALIZAÇÃO */

        .localizacao {
            padding: 90px 20px;
            background: linear-gradient(to bottom,var(--white),#f6f9fd);}

        .localizacao-container {
            max-width: 1200px;
            margin: auto;
        }

        .localizacao-topo {
            text-align: center;
            margin-bottom: 50px;
        }

        .localizacao-grid {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 20px;
            align-items: center;
        }

        /* CARD */

        .local-card {
            background: #101f40;
            color: var(--white);
            padding: 0px 30px;
            padding-bottom: 20px;
            border-radius: 18px;
            height: 420px;
        }

        .local-card h3 {
            color: var(--white);
        }

        .local-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .local-item strong {
            display: block;
            margin-bottom: 5px;
        }

        .local-btn {
            margin-top: 20px;
            display: inline-block;
            width: 100%;
            text-align: center;
            background: var(--secondary);
            color: var(--white);
            padding: 14px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
        }

        .local-btn:hover {
            background: #1fa24a;
        }

        /* MAPA */

        .local-mapa iframe {
            width: 100%;
            height: 420px;
            border: 0;
            border-radius: 18px;
        }

        /* ORÇAMENTO */

        .orcamento {
            background: #0f2347;
            padding: 90px 20px;
            color: var(--white);
            min-height: 700px;
            content-visibility: auto;
            contain-intrinsic-size: 700px;
        }

        .orcamento-container {
            max-width: 900px;
            margin: auto;
        }

        .orcamento-topo {
            text-align: center;
            margin-bottom: 40px;
        }

        .orcamento-topo p {
            color: #cfd7e6;
        }

        .orcamento-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 14px;
            margin-bottom: 6px;
            color: #cfd7e6;
        }

        .form-group input,
        .form-group textarea {
            background: #162c57;
            border: 1px solid #233a6b;
            padding: 14px;
            border-radius: 8px;
            color: var(--white);
            font-size: 15px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #8fa3c7;
        }

        .form-group textarea {
            height: 140px;
            resize: none;
        }

        .full {
            width: 100%;
        }

        .orcamento-btn {
            margin-top: 10px;
            border: none;
            padding: 16px;
            border-radius: 8px;
            color: var(--white);
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: .3s;
            background: #1e293b;
        }

        .orcamento-btn:hover {
            background: #1b8fbb;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border: 1px solid #2aa7d6;
            box-shadow: 0 0 0 3px rgba(42, 167, 214, 0.2);
        }

        .orcamento-btn:active {
            transform: scale(.98);
        }

        .sobre-container {
            max-width: 1200px;
            margin: auto;
        }

        .sobre-texto p {
            color: var(--text-secondary);
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .stat strong {
            display: block;
            font-size: 26px;
            color: #0f2347;
        }

        .stat span {
            font-size: 14px;
            color: #666;
        }

        .sobre-img {
            position: relative;
        }

        .badge {
            position: absolute;
            bottom: 15px;
            left: 15px;
        }

        /* VALORES */

        .valores {
            padding: 90px 20px;
            background: linear-gradient(to bottom,#f7faff,#eef4fb);text-align: center;}

        .valores-container {
            max-width: 1200px;
            margin: auto;
        }

        .valores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }

        .valor-card {
            background: #f9f9f9;
            padding: 28px;
            border-radius: 14px;
            text-align: left;
            transition: .3s;
        }

        .valor-card:hover {
            transform: translateY(-5px);
        }

        .valor-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }

        /* BOTÃO FLUTUANTE */

        .call-float {
    left: 10px;
    bottom: 16px;
    position: fixed;
    z-index: 999;
    background-color: #0039a3;
}

        .call-float:hover {
            background-color: #000d7e;
        }

        .whatsapp-button {
            position: fixed;
            right: 15px;
            bottom: 16px;
            width: 64px;
            height: 64px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
            transition: .25s ease;
            z-index: 999;
        }

        .whatsapp-button svg {
            width: 50px;
            height: 50px;
            fill: white;
        }

        /* hover */

        .whatsapp-button:hover {
            background: #1ebe5d;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
        }

        /* clique */

        .whatsapp-button:active {
            transform: scale(.95);
        }

        .whatsapp-button {
            animation: whatsappPulse 2s infinite;
        }

        .hero-baratas{background:url("img/dedetizacao-baratas.jpg") center/cover no-repeat;}

/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
}

.logo-img {
    width: 62px;
    height: 62px;

    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-title {

    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    font-family:"Montserrat",sans-serif;
}

.logo-subtitle {

    margin-top: 5px;
    font-size: 0.70rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-family:"Inter",sans-serif;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .logo-img {
        width: 58px;
        height: 58px;
    }

    .logo-title {
        font-size: 1.8rem;
    }

    .logo-subtitle {
        display: none;
    }

}

/* HAMBURGUER */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 280px;
    height: auto;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: var(--primary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 0 0 0 12px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 1000;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    padding: 10px;
    border-radius: 6px;
    transition: 0.2s;
    color: var(--bg-light);
}

.mobile-menu a:hover {
    background: var(--secondary);
}

/* OVERLAY */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* MOBILE DROPDOWN */


.dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    padding: 10px;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    gap: 5px;
    padding-left: 10px;
}

.mobile-dropdown.open .mobile-dropdown-content {
    display: flex;
}

/* RESPONSIVO */

@media (min-width: 901px) {
    .menu > li > a:hover {color: var(--secondary);opacity: 1;}
}
        @keyframes whatsappPulse {
            0% {box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);}
            70% {box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);}
            100% {box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);}
        }

        /* RESPONSIVO */

        @media (max-width:1200px) {

            .hero {
                height: auto;
                padding: 40px 20px 80px 0px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 18px;
                max-width: 100%;
            }

            .localizacao-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }


            .sobre-stats {
                justify-content: space-between;
            }

             .menu {
        display: none;
    }

    .menu-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
        }

/* =========================================
   SOBRE
========================================= */


.sobre-tag {

    letter-spacing: 0.5px;
}

.stat:hover {
    transform: translateY(-6px);
    border-color:rgba(30,136,255,0.35);
}

.stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 2rem;
    font-weight: 800;
    color: #1e88ff;
}

.stat span {
    color:rgba(255,255,255,0.72);
    font-size: 0.95rem;
}

.sobre-badges {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 992px) {
    .sobre-texto h2 {
        font-size: 2.6rem;
    }

}

@media (max-width: 768px) {

    .sobre {
        padding:90px 20px;
    }

    .sobre-texto h2 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .sobre-texto p {
        font-size: 1rem;
    }

    .sobre-stats {
        flex-direction: column;
    }

    .stat {
        width: 100%;
    }

    .sobre-badges {
        position: static;
        margin-top: 18px;
    }

    .hero-text {
        max-width: 100%;
    }

}

/* BASE */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease; will-change: transform, opacity;
}

/* SUBINDO */
.reveal {
    transform: translateY(60px);
}

/* ENTRANDO DA ESQUERDA */
.reveal-left {
    transform: translateX(-80px);
}

/* ENTRANDO DA DIREITA */
.reveal-right {
    transform: translateX(80px);
}

/* ESTADO ATIVO */
.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* SUBMENU DESKTOP */

.dropdown-subitem {
    position: relative;    
}

.dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-subitem:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
}

.mobile-sub-dropdown.open .mobile-sub-content {
    display: flex;
    flex-direction: column;
}

/* SUBMENU MOBILE */

.mobile-sub-dropdown {
    width: 100%;
}

.mobile-sub-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    padding: 14px 20px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sub-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.03);
}

.mobile-sub-dropdown.open .mobile-sub-content {
    max-height: 500px;
}

.mobile-sub-content a {
    padding: 12px 38px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,.05);
}

/* ===== RESERVATÓRIOS ===== */

.reservatorios {
    position: relative;
    padding: 90px 20px;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(10, 18, 30, 0.72),
        rgba(10, 18, 30, 0.72)),
        url('img/limpeza-reservatorio.webp');
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reservatorios-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.reservatorios-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.reservatorios h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: #fff;
}

.reservatorios p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

@media (max-width: 768px) {
    .reservatorios {
        padding: 70px 20px;
    }
    .reservatorios h2 {
        font-size: 2rem;
    }
    .reservatorios p {
        font-size: 1rem;
    }
}

/* =========================================
   SOBRE PREMIUM
========================================= */

.sobre {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background: linear-gradient(180deg,#0d223d 0%,#13365f 100%);
}

/* glow */

.sobre-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(30,136,255,0.16), transparent 70%); top: -250px; right: -150px;
    pointer-events: none;
}

/* container */

.sobre-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* grid */

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* =========================================
   IMAGEM
========================================= */

.sobre-img-wrapper {
    position: relative;
}

.sobre-img img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    transition: .5s ease;
}

.sobre-img:hover img {
    transform: scale(1.02);
}

/* CARD FLUTUANTE */

.sobre-floating-card {
    position: absolute;
    left: -40px;
    bottom: 40px;
    width: 260px;
    padding: 28px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    background:rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    animation: floatingCard 4s ease-in-out infinite;
}

.floating-mini {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background:rgba(40,167,69,0.15);
    color: #72ff98;
    font-size: 12px;
    font-weight: 600;
}

.sobre-floating-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
}

.sobre-floating-card p {
    color:rgba(255,255,255,0.82);
    line-height: 1.5;
}

/* =========================================
   TEXTO
========================================= */

.sobre-tag {
    display: inline-flex;
    letter-spacing: 0.5px;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background:rgba(30,136,255,0.10);
    border:1px solid rgba(30,136,255,0.25);
    color:#71b6ff;
    font-size: 0.9rem;
    font-weight: 600;
}

.sobre-texto h2 {

    margin-bottom: 28px;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #ffffff;
    text-align: left;
    font-weight: 800;
}

.sobre-texto p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color:rgba(255,255,255,0.78);
}

.sobre-texto strong {
    color: #ffffff;
}

/* =========================================
   STATS
========================================= */

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.stat-card {

    padding: 24px;
    border-radius: 22px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    transition: .35s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.09);
}

.stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #4db1ff;
}

.stat-card span {
    color:rgba(255,255,255,0.72);
    font-size: 0.95rem;
}

/* =========================================
   BADGES
========================================= */

.sobre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.badge {
    padding: 12px 18px;
    border-radius: 999px;
    background:rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
}

/* =========================================
   CTA
========================================= */

.sobre-actions {
    margin-top: 40px;
}

.sobre-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 18px;
    background: linear-gradient(135deg,#28a745,#1e7d39);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(40,167,69,0.28);
    transition: .35s ease;
}

.sobre-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(40,167,69,0.38);
}

/* =========================================
   ANIMAÇÃO
========================================= */

@keyframes floatingCard {0% {transform: translateY(0px);} 50% {transform: translateY(-10px);} 100% {transform: translateY(0px);}
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .sobre-img img {
        height: 580px;
    }
    .sobre-floating-card {
        left: 20px;
        bottom: 20px;
    }
    .sobre-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sobre {padding: 90px 20px;}
    .sobre-texto h2 {font-size: 2.5rem;}
    .sobre-img img {height: 480px;}
    .sobre-floating-card {width: calc(100% - 40px); padding: 22px;}
}

/* =========================================
   LICENÇAS
========================================= */

.sobre-licencas {margin-top: 55px;}

/* CARD PRINCIPAL */

.licenca-card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(135deg,rgba(40,167,69,0.12),rgba(30,136,255,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    overflow: hidden;
    position: relative;
}

/* glow */

.licenca-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle,rgba(255,255,255,0.10), transparent 70%);
    top: -120px;
    right: -100px;
}

/* ICON */

.licenca-icon {

    min-width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#28a745,#1f7a39);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 15px 35px rgba(40,167,69,0.28);
}

/* INFO */

.licenca-info span {
    display: inline-block;
    margin-bottom: 10px;
    color: #72ff98;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.licenca-info strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.5rem;
    color: #fff;
}

.licenca-info p {
    margin: 0;
    color:rgba(255,255,255,0.78);
    line-height: 1.7;
}

/* GRID */

.licencas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

/* ITEM */

.licenca-item {

    padding: 22px;
    border-radius: 20px;
    background:rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    transition: .35s ease;
}

.licenca-item:hover {
    transform: translateY(-6px);
    background:rgba(255,255,255,0.08);
}

.licenca-item strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.licenca-item span {
    color:
        rgba(255,255,255,0.70);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* RESPONSIVO */

@media (max-width: 992px) {
    .licencas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .licenca-card {
        flex-direction: column;
    }
    .licencas-grid {
        grid-template-columns: 1fr;
    }
}

/* glow */

.atendimento-bg-glow {

    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(30,136,255,0.14), transparent 70%);
    top: -300px;
    right: -150px;
    pointer-events: none;
}

/* topo */

.atendimento-topo {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.atendimento-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background:rgba(30,136,255,0.10);
    border: 1px solid rgba(30,136,255,0.25);
    color: #71b6ff;
    font-size: 0.9rem;
    font-weight: 600;
}

.atendimento-topo h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #ffffff;
}

.atendimento-topo h2 span {
    color: #4db1ff;
}

.atendimento-topo p {
    font-size: 1.08rem;
    line-height: 1.8;
    color:rgba(255,255,255,0.76);
}

.atendimento-topo strong {
    color: #ffffff;
}

/* GRID */

.atendimento-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* CARD */

.atendimento-card {
    position: relative;
    padding: 34px 30px;
    border-radius: 28px;
    overflow: hidden;
    background:rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.atendimento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(255,255,255,0.05), transparent);
    opacity: 0;
    transition: .35s ease;
}

.atendimento-card:hover {
    transform: translateY(-8px);
    border-color:rgba(77,177,255,0.30);
    background:rgba(255,255,255,0.07);
}

.atendimento-card:hover::before {
    opacity: 1;
}

/* ícone */

.atendimento-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg,#28a745,#1f7a39);
    box-shadow: 0 15px 35px rgba(40,167,69,0.25);
}

/* textos */

.atendimento-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.5rem;
}

.atendimento-card p {
    margin-bottom: 22px;
    color:rgba(255,255,255,0.72);
    line-height: 1.7;
    font-size: 0.96rem;
}

.atendimento-card span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background:rgba(40,167,69,0.12);
    border: 1px solid rgba(40,167,69,0.20);
    color: #72ff98;
    font-size: 0.82rem;
    font-weight: 600;
}

/* bottom */

.atendimento-bottom {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    padding: 35px;
    border-radius: 30px;
    background:rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* texto */

.atendimento-highlight strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.5rem;
}

.atendimento-highlight p {
    color:rgba(255,255,255,0.72);
    max-width: 700px;
    line-height: 1.7;
}

/* botão */

.atendimento-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 18px;
    background: linear-gradient(135deg,#28a745,#1f7a39);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: .35s ease;
    box-shadow: 0 20px 40px rgba(40,167,69,0.25);
}

.atendimento-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(40,167,69,0.35);
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 992px) {
    .atendimento-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .atendimento-premium {
        padding: 90px 20px;
    }
    .atendimento-topo h2 {
        font-size: 2.5rem;
    }
    .atendimento-card {
        padding: 28px 24px;
    }
    .atendimento-bottom {
        padding: 28px;
    }
    .atendimento-btn {
        width: 100%;
    }

}

/* MOLDURA PREMIUM */

.atendimento-premium::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 32px;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient(180deg,rgba(255,255,255,0.03),rgba(255,255,255,0.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(255,255,255,0.03), 0 40px 90px rgba(0,0,0,0.35);
    z-index: 1;
}

.atendimento-premium{
    position: relative;
    background: linear-gradient(135deg, #0f2a4a 0%, #13365f 100%);
    padding: 120px 20px;
    isolation: isolate;
}

/* cantos decorativos */
.corner{
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,0.06);
    z-index: 0;
}

/* canto superior esquerdo */
.corner-1{
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
}

/* canto inferior direito */
.corner-2{
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
}

/* glow azul */
.atendimento-bg-glow{
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,rgba(0,153,255,0.18) 0%, transparent 70%);
    top: -120px;
    right: -120px;
    z-index: 0;
    pointer-events: none;
}

/* conteúdo acima dos efeitos */
.atendimento-premium .container{
    position: relative;
    z-index: 2;
}

.dev-credit {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
}

.dev-credit a {
    color: #72ff98;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.dev-credit a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(114,255,152,0.45);
}


.inea-logo-box{
    background:
        linear-gradient(135deg,rgba(255,255,255,0.04),rgba(59,130,246,0.08));
}
.cert-card:hover .inea-logo-box img{
    transform: scale(1.08);
}

/* logos claras */

.inea-logo-box img{
    filter: brightness(1.05);
}

/* se alguma logo vier escura */
.logo-white{
    filter: brightness(0) invert(1);
}

.pest-main-wrapper {
            background-color: var(--pest-bg);
            font-family: var(--pest-font);
            color: var(--pest-text-main);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Background Decorations */
        .pest-bg-glow-1 {
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--pest-accent-glow);
            filter: blur(120px);
            top: -100px;
            right: -100px;
            opacity: 0.2;
            z-index: 0;
        }

        .pest-bg-glow-2 {
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(16, 185, 129, 0.3);
            filter: blur(100px);
            bottom: -50px;
            left: -50px;
            opacity: 0.15;
            z-index: 0;
        }

        .pest-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .pest-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .pest-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            padding: 8px 18px;
            border-radius: 50px;
            color: var(--pest-accent);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .pest-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .pest-title span {
            background: linear-gradient(90deg, var(--pest-accent), var(--pest-hygiene));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pest-subtitle {
            color: var(--pest-text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-main);
        }

        /* Grid & Cards */
        .pest-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 25px;
            margin-bottom: 80px;
            color: var(--text-main);
        }

        .pest-card {
            position: relative;
            background: var(--pest-border);
            padding: 1px;
            border-radius: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pest-card-inner {
            background: var(--pest-card-bg);
            padding: 40px 30px;
            border-radius: 19px;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
            backdrop-filter: blur(10px);
        }

        .pest-icon-box {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--pest-accent);
            margin-bottom: 10px;
            transition: 0.3s ease;
        }

        .pest-card-label {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .pest-card-desc {
            color: var(--pest-text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .pest-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 20px var(--pest-accent-glow);
        }

        .pest-card:hover .pest-icon-box {
            background: var(--pest-accent);
            color: #fff;
            box-shadow: 0 0 15px var(--pest-accent-glow);
        }

        /* Stats */
        .pest-stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            padding: 50px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 30px;
            border: 1px solid var(--pest-border);
            margin-bottom: 80px;
        }

        .pest-stat-item {
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .pest-stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--pest-text-main);
        }

        .pest-stat-txt {
            color: var(--pest-text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Box */
        .pest-cta-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
            border: 1px solid var(--pest-accent);
            border-radius: 25px;
            padding: 40px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .pest-cta-content h4 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pest-cta-content p {
            color: var(--pest-text-muted);
        }

        .pest-btn-primary {
            background: var(--pest-accent);
            color: #fff;
            text-decoration: none;
            padding: 18px 35px;
            border-radius: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }

        .pest-btn-primary:hover {
            background: #2563eb;
            transform: scale(1.05);
            box-shadow: 0 15px 25px rgba(59, 130, 246, 0.4);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .pest-cta-box {
                text-align: center;
                justify-content: center;
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .pest-main-wrapper {
                padding: 60px 15px;
            }

            .pest-title {
                font-size: 2.2rem;
            }

            .pest-stats-container {
                padding: 30px 15px;
            }

            .pest-stat-num {
                font-size: 2rem;
            }
        }

        /* Reveal Animation */
        .pest-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .pest-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

           /* =========================================
   ESTRUTURA PRINCIPAL
========================================= */
        .premium-cert-section {
            position: relative;
            padding: 120px 20px;
            min-height: 100vh;
            overflow: hidden;
            background-color: var(--bg-main);
            z-index: 1;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* =========================================
   EFEITOS DE FUNDO (AMBIENT LIGHTS)
========================================= */
        .ambient-light {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            z-index: 0;
            pointer-events: none;
            opacity: 0.15;
        }

        .light-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
            top: -100px;
            right: -200px;
        }

        .light-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
        }

        .particles-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            z-index: 0;
            pointer-events: none;
        }

        /* =========================================
   HEADER DA SECTION
========================================= */
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .badge-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(37, 99, 235, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--glow-blue);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            backdrop-filter: blur(10px);
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
        }

        .badge-icon {
            width: 16px;
            height: 16px;
        }

        .title-main {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
        }

        .title-main span {
            background: linear-gradient(90deg, var(--pest-accent), var(--pest-hygiene));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle-premium {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* =========================================
   GRID & CARDS
========================================= */
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .cert-card {
            position: relative;
            background: rgba(15, 15, 15, 0.4);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 32px;
            overflow: hidden;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: var(--transition-smooth);
            cursor: default;
        }

        /* Efeito Glow Interno que segue o mouse */
        .card-border-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    rgba(59, 130, 246, 0.1),
                    transparent 40%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 0;
        }

        .cert-card:hover .card-border-glow {
            opacity: 1;
        }

        .card-content {
            position: relative;
            z-index: 1;
        }

        .cert-card:hover {
            transform: translateY(-8px);
            border-color: var(--card-hover-border);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px -10px rgba(37, 99, 235, 0.15);
            background: rgba(15, 15, 15, 0.7);
        }

        /* =========================================
   CONTEÚDO DO CARD
========================================= */
        .card-header-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .icon-box {
            width: 82px;
            height: 82px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
            flex-shrink: 0;
            padding: 10px;
        }

        .icon-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .cert-card:hover .icon-box {
            background: rgba(37, 99, 235, 0.1);
            border-color: rgba(59, 130, 246, 0.3);
            color: var(--glow-blue);
            transform: scale(1.05);
        }


        .status-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(255, 255, 255, 0.03);
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }

        .pulse-dot {
            width: 6px;
            height: 6px;
            background-color: var(--success-green);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--success-green);
            animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes pulse {
            0% {transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);}
            70% {transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);}
            100% {transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);}
        }

        .card-title {
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            font-size: 1.5rem;
            font-weight: 700;
            color: #f8fafc;
            text-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
        }

        .card-license {
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--glow-blue);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .card-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* =========================================
   FOOTER (SELO E TEXTO)
========================================= */
       .section-footer {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    width:100%;
}

.seal-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg,rgba(37, 99, 235, 0.1),rgba(15, 15, 15, 0.8));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.seal-container svg {
    width: 20px;
    height: 20px;
    color: var(--glow-blue);
}

        /* =========================================
   ANIMAÇÕES (INTERSECTION OBSERVER)
========================================= */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--delay);
        }

        .fade-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================================
   RESPONSIVIDADE
========================================= */
        @media (max-width: 1024px) {
            .cert-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .premium-cert-section {
                padding: 80px 20px;
            }

            .cert-grid {
                grid-template-columns: 1fr;
            }

            .footer-line {
                flex-direction: column;
                text-align: center;
                gap:14px;
            }

    .line-gradient{
        width:80px;
    }
        }

        @media (max-width:768px){

    .local-card{
        padding:20px;
        height:auto;
    }

}

/* ==========================================================
   CSS SECTION PREMIUM - ÁREAS DE ATENDIMENTO
   ========================================================== */

:root {
  --ic-blue-dark: #0f172a;    /* Azul escuro profundo premium */
  --ic-blue-brand: #1e3a8a;   /* Azul royal marca */
  --ic-green-safe: #10b981;   /* Verde remetendo a segurança/limpeza */
  --ic-bg-light: #f8fafc;     /* Fundo elegante */
  --ic-surface: #ffffff;      /* Cor dos cards */
  --ic-text-main: #1e293b;    /* Títulos */
  --ic-text-muted: #475569;   /* Textos descritivos */
  --ic-border: #e2e8f0;       /* Bordas sutis */
  
  --font-premium: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-areas-section {
  position: relative;
  background-color: var(--ic-bg-light);
  padding: 100px 20px 120px;
  font-family: var(--font-premium);
  overflow: hidden;
  z-index: 1;
}

/* Decorador de fundo sutil para não ficar chapado */
.premium-areas-section .bg-decoration {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.premium-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- HEADER DA SECTION --- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px auto;
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--ic-green-safe);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.headline-premium {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ic-blue-dark);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.headline-premium span {
  color: var(--ic-blue-brand);
  position: relative;
}

.description-premium {
  font-size: 1.125rem;
  color: var(--ic-text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* --- GRID DE CARDS --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.area-card {
  background-color: var(--ic-surface);
  border: 1px solid var(--ic-border);
  border-radius: 16px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

/* Borda superior invisível que aparece no hover */
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ic-blue-brand), var(--ic-green-safe));
  opacity: 0;
  transition: var(--transition-smooth);
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  border-color: transparent;
}

.area-card:hover::before {
  opacity: 1;
}

.card-body {
  padding: 32px 24px 24px 24px;
  flex-grow: 1;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--ic-bg-light);
  border: 1px solid var(--ic-border);
  color: var(--ic-blue-brand);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.area-card:hover .icon-wrapper {
  background-color: var(--ic-blue-brand);
  color: #fff;
  transform: scale(1.05);
}

.card-title {
  font-size: 1.25rem;
  color: var(--ic-text-main);
  font-weight: 700;
  margin-bottom: 12px;
}

.card-text {
  color: var(--ic-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--ic-border);
  background-color: rgba(248, 250, 252, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ic-blue-brand);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.area-card:hover .card-footer {
  background-color: var(--ic-surface);
}

/* --- FAIXA INFERIOR ELEGANTE --- */
.premium-bottom-banner {
  background-color: var(--ic-blue-dark);
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.2);
  position: relative;
  overflow: hidden;
}

/* Detalhe visual na faixa */
.premium-bottom-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03));
  pointer-events: none;
}

.banner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}

.banner-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1f5f9;
  font-weight: 500;
  font-size: 0.95rem;
}

.banner-list svg {
  color: var(--ic-green-safe);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
  .premium-areas-section {
    padding: 60px 20px 80px;
  }
  
  .section-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .badge-premium {
    margin-bottom: 20px;
  }

  .premium-bottom-banner {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .banner-list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.area-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* SEGMENTOS */

.segmentos-grid a.segmento-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.segmentos-grid a.segmento-card:hover {
    text-decoration: none;
    color: inherit;
}

.segmentos-grid a.segmento-card:visited {
    color: inherit;
}

/* efeito premium igual cards de pragas */

.segmento-card {
    overflow: hidden;
    position: relative;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.segmento-card:hover {
    transform:
        translateY(-10px);
}

/* garante que nenhuma tag interna fique azul */

.segmento-card h3,
.segmento-card p {
    color: inherit;
    text-decoration: none;
}

.card-title {
    color: #4f6f96;
}

/* ==========================
   CLIENTES
========================== */

.clientes{
    padding:90px 20px;
    background:linear-gradient(to bottom,#ffffff,#f6f9fc);
}

.clientes-header{
    max-width:800px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.clientes-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(15,42,74,.08);
    color:var(--primary);
    font-weight:600;
    margin-bottom:20px;
}

.clientes-header p{
    color:#64748b;
    line-height:1.7;
}

.cliente-logo{
    height:110px;
    background:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.cliente-logo:hover{
    transform:translateY(-6px);
}

.clientes-stats{
    max-width:1200px;
    margin:70px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.cliente-stat{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cliente-stat strong{
    display:block;
    font-size:2rem;
    color:var(--primary);
    margin-bottom:10px;
}

.cliente-stat span{
    color:#64748b;
}

.cliente-depoimento{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:24px;
    padding:50px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.cliente-estrelas{
    color:#ffb800;
    font-size:22px;
    margin-bottom:20px;
}

.cliente-depoimento p{
    font-size:1.2rem;
    color:var(--primary);
    font-weight:600;
}

.cliente-depoimento strong{
    display:block;
    margin-top:25px;
}

.cliente-depoimento span{
    color:#64748b;
}

    /* MOBILE */

    @media(max-width:768px){

        .clientes-stats{
            grid-template-columns:1fr;
        }

        .cliente-depoimento{
            padding:30px;
        }

        .clientes-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
        gap:24px;
    }


}



.cliente-logo{
    height:120px;
    background:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.cliente-logo img{
    max-width:100%;
    max-height:60px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.8;
    transition:.3s;
}

.cliente-logo:hover{
    transform:translateY(-6px);
}

.cliente-logo:hover img{
    filter:none;
    opacity:1;
}

.clientes-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    max-width:1280px;
    margin:auto;
}

.cliente-card{
    background:#fff;
    border:1px solid rgba(15,42,74,.08);
    border-radius:24px;
    overflow:hidden;

    display:flex;
    flex-direction:column;
    align-items:center;

    transition:.35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.04);
}

.cliente-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 25px 50px rgba(15,42,74,.12);
}

.cliente-logo{
    height:160px;
    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px;

    background:
    linear-gradient(
    180deg,
    #f8fafc,
    #ffffff
    );
}

.cliente-logo img{
    max-width:180px;
    max-height:90px;
    object-fit:contain;
    transition:.3s;
}

.cliente-card:hover .cliente-logo img{
    transform:scale(1.05);
}

.cliente-info{
    width:100%;
    text-align:center;
    padding:24px;
    border-top:1px solid rgba(15,42,74,.06);
}

.cliente-info h3{
    font-size:18px;
    font-weight:700;
    color:#0f2a4a;
    margin-bottom:8px;
}

.cliente-info span{
    color:#64748b;
    font-size:14px;
}

/* ==========================
   HEADER CLIENTES
========================== */

.clientes-header{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.clientes-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(15,42,74,.06);
    border:1px solid rgba(15,42,74,.08);
    color:var(--primary);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.clientes-header h2{
    font-size:clamp(2.2rem,5vw,3.8rem);
    padding-inline:15px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1.5px;
    color:#0f2a4a;
    margin-bottom:24px;
}

.clientes-header h2 span{
    display:block;

    background:linear-gradient(
        135deg,
        #0f2a4a 0%,
        #2563eb 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.clientes-divider{
    width:90px;
    height:4px;

    margin:0 auto 28px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #0f2a4a,
        #2563eb
    );
}

.clientes-header p{
    max-width:720px;

    margin:auto;

    font-size:1.12rem;

    line-height:1.9;

    color:#64748b;
}

.clientes-header p strong{
    color:#0f2a4a;
    font-weight:700;
}

/* ==========================
   MOBILE CLIENTES
========================== */

.clientes-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    max-width:1280px;
    margin:auto;
}

/* Tablet */
@media (max-width: 992px){
    .clientes-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Celular */
@media (max-width: 768px){
    .clientes-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .cliente-card{
        max-width:420px;
        width:100%;
        margin:0 auto;
    }
}