        /* --- ESTILOS GERAIS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        :root {
            --verde-principal: #138D45;
            --verde-claro: #8DC63F;
            --roxo: #6F2B93;
            --texto-escuro: #333333;
        }

        body {
            color: var(--texto-escuro);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        a {
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 600;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- HEADER & NAV --- */
        header {
            width: 100%;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            position: relative;
        }

        .logo img {
            height: 70px;
        }

        /* MENU HAMBURGER PARA MOBILE */
        .menu-toggle {
            display: none;
            font-size: 28px;
            color: var(--verde-principal);
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--verde-principal);
            font-size: 18px;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .nav-link.verde-claro {
            color: var(--verde-claro);
        }

        .nav-link.purple {
            color: var(--roxo);
        }

        .nav-link:hover {
            color: var(--verde-claro);
        }

        /* Dropdowns */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--verde-claro);
            border-radius: 0 0 8px 8px;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            list-style: none;
            padding: 0;
            overflow: hidden;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item a {
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--verde-principal);
            font-size: 15px;
            border-bottom: 1px solid #ffffff;
            transition: background 0.3s, color 0.3s;
        }

        .dropdown-item:last-child a {
            border-bottom: none;
        }

        .dropdown-item a:hover {
            background: var(--verde-claro);
            color: #ffffff;
        }

        /* --- FOOTER CORRIGIDO PARA EVITAR O CORTE DA ONDA --- */
        footer {
            background: linear-gradient(135deg, #138D45 0%, #8DC63F 100%);
            color: #fff;
            padding: 60px 25px 20px 20px;
            font-size: 16px;
            width: 100%;
            margin-top: auto;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,60 400,0 600,30 C800,60 1100,5 1440,28 L1440,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat top center;
            background-size: 100% 100%;
            pointer-events: none;
        }



        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 1.5fr;
            gap: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 40px;
        }

        .footer-brand img {
            height: 60px;
            filter: brightness(0) invert(1);
            margin-bottom: 20px;
        }

        .footer-brand p {
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            background: rgba(255, 255, 255, 0.15);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: #ffffff;
            font-size: 20px;
            transition: background 0.3s;
        }

        .social-icons a:hover {
            background: var(--verde-claro);
        }

        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .info-item {
            display: flex;
            gap: 12px;
            margin-bottom: 18px;
            line-height: 1.5;
            font-size: 16px;
        }

        .info-item i {
            margin-top: 3px;
            font-size: 18px;
        }

        .info-item a {
            color: #ffffff;
            text-transform: none;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 14px;
            opacity: 0.9;
        }

        /* --- BOTÃO WHATSAPP FIXED --- */
        @keyframes pulse-whatsapp {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                transform: scale(1.1);
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-fixed {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25D366;
            color: rgb(255, 255, 255);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            animation: pulse-whatsapp 2s infinite;
            transition: transform 0.3s;
        }

        .whatsapp-fixed:hover {
            animation: none;
            transform: scale(1.1);
        }

        /* --- RESPONSIVIDADE --- */
        @media (max-width: 992px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: #ffffff;
                box-shadow: 0 10px 15px rgba(185, 42, 42, 0.1);
                padding: 15px 0;
                gap: 0;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-item {
                width: 100%;
                padding: 10px 20px;
            }

            .nav-link {
                width: 100%;
                justify-content: space-between;
            }

            .dropdown {
                position: relative;
                box-shadow: none;
                border-top: none;
                opacity: 1;
                visibility: visible;
                display: none;
                transform: none;
                padding-left: 15px;
                background: #ffffff;
            }

            /* No mobile, dropdown controlado por JS via classe .open */
            .nav-item.has-dropdown.open .dropdown {
                display: block;
            }

            .nav-link i.fa-caret-down.rotated {
                transform: rotate(180deg);
                transition: transform 0.3s;
            }

            footer {
                padding-top: 120px;
                /* Ajuste proporcional da onda no mobile */
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            footer {
                padding-top: 100px;
            }
        }

        /* BANNER PAGE HERO */
        .page-hero {
            background: linear-gradient(135deg, #138D45 0%, #8DC63F 100%);
            min-height: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px 20px 20px;
        }

        .page-hero .hero-content h1 {
            color: #ffffff;
            font-size: 38px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .hero-wave {
            width: 100%;
            line-height: 0;
            position: relative;
            z-index: 2;
        }

        .hero-wave svg {
            display: block;
            width: 100%;
            height: 55px;
        }

        @media (max-width: 600px) {
            .page-hero .hero-content h1 {
                font-size: 26px;
                letter-spacing: 1px;
            }

            .page-hero {
                min-height: 160px;
            }
        }

        /* ── MELHORIAS RESPONSIVAS MOBILE ─────────────────────────── */
        @media (max-width: 480px) {
            .nav-container {
                padding: 12px 16px;
            }

            .logo img {
                height: 52px;
            }

            .menu-toggle {
                font-size: 26px;
            }

            .nav-item {
                padding: 8px 16px;
            }

            .nav-link {
                font-size: 15px;
            }

            .dropdown-item a {
                font-size: 13px;
                padding: 12px 16px;
            }

            .page-hero .hero-content h1 {
                font-size: 22px !important;
                letter-spacing: 1px;
            }

            .footer-container {
                grid-template-columns: 1fr !important;
                gap: 28px;
            }

            footer {
                padding: 60px 16px 20px !important;
            }

            .footer-brand img {
                height: 48px;
            }

            .footer-column h3 {
                font-size: 18px;
            }

            .info-item {
                font-size: 14px;
            }

            .whatsapp-fixed {
                width: 50px;
                height: 50px;
                font-size: 26px;
                bottom: 18px;
                right: 18px;
            }
        }
    
        /* ── Decorativos de fundo do footer ──────────────────────────── */
        footer {
            overflow: hidden;
        }
        .footer-bg-deco {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        footer > * {
            position: relative;
            z-index: 1;
        }
        footer::before {
            z-index: 2;
        }

        /* ── Fade-in entrada ───────────────────────────────────────── */
        .fade-in {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* ══ item AGENDA no menu — desktop e mobile ══ */
.nav-agenda{color:#138D45 !important;font-weight:800;display:inline-flex;align-items:center;gap:6px}
.nav-agenda i{font-size:15px}
@media(max-width:992px){
  #nav-agenda-item{width:100%}
  .nav-agenda{width:100%;display:flex !important;justify-content:flex-start !important;align-items:center;gap:8px}
}

@keyframes pageFadeIn{from{opacity:0}to{opacity:1}}
body{animation:pageFadeIn .5s ease both}
body.pt-leaving{opacity:0!important;transition:opacity .3s ease}

        /* Estilo do botão Agenda no nav quando hover */
        #nav-agenda-link:hover {
            color: #8DC63F !important
        }
