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

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

        body {
            color: var(--texto);
            background: #fff;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

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

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

        /* HEADER */
        header {
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 10px rgba(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-toggle {
            display: none;
            font-size: 28px;
            color: var(--verde);
            cursor: pointer;
        }

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

        .nav-item {
            position: relative;
        }

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

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

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

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

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 5px 15px rgba(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 .3s ease;
            list-style: none;
            padding: 0;
            overflow: hidden;
        }

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

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

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

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

        main {
            flex: 1;
        }

        /* ZIGUE-ZAGUE */
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 40px 60px;
        }

        .content-row {
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 60px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .content-row.reverse {
            flex-direction: row-reverse;
        }

        .content-row:last-child {
            border-bottom: none;
        }

        .col-img {
            flex: 0 0 45%;
        }

        .col-img img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 22px;
        }

        .col-text {
            flex: 1;
        }

        .col-text h2 {
            color: var(--verde);
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 18px;
            line-height: 1.25;
        }

        .col-text p {
            color: #555;
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 14px;
        }

        .col-text p strong {
            color: var(--texto);
            font-weight: 700;
        }

        .col-text p em {
            font-style: italic;
        }

        .col-text ul {
            margin: 10px 0 14px 20px;
        }

        .col-text ul li {
            color: #555;
            font-size: 16px;
            line-height: 1.8;
        }

        /* INFO BOXES (Turmas / Horários) */
        .info-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .info-box {
            background: #f7f7f7;
            border-radius: 14px;
            padding: 22px 20px;
            border-left: 4px solid var(--verde);
        }

        .info-box h3 {
            color: var(--verde);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .info-box ul {
            list-style: none;
        }

        .info-box ul li {
            color: #555;
            font-size: 14px;
            line-height: 1.8;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .info-box ul li::before {
            content: "•";
            color: var(--verde-claro);
            font-size: 18px;
            line-height: 1.4;
            flex-shrink: 0;
        }

        .info-box p {
            color: #555;
            font-size: 14px;
            line-height: 1.7;
            font-style: italic;
        }

        .info-box a {
            color: var(--verde);
            text-transform: none;
            font-size: 14px;
        }

        /* CARDS EXTRACURRICULARES */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 40px;
        }

        .card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
            transition: transform .3s, box-shadow .3s;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
        }

        .card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .card-body {
            padding: 22px;
        }

        .card-body h3 {
            color: var(--verde);
            font-size: 20px;
            margin-bottom: 10px;
        }

        .card-body p {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
        }

        /* PARCERIAS */
        .parceria-block {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 40px;
        }

        .parceria-block h2 {
            color: var(--verde);
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .parceria-item {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            padding: 40px 0;
            border-bottom: 1px solid #f0f0f0;
        }

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

        .parceria-item img {
            width: 260px;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            flex-shrink: 0;
        }

        .parceria-text h3 {
            color: var(--verde);
            font-size: 22px;
            margin-bottom: 12px;
        }

        .parceria-text p {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .parceria-text ul {
            margin-left: 20px;
        }

        .parceria-text ul li {
            color: #555;
            font-size: 15px;
            line-height: 1.9;
        }

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

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.10) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 20%, rgba(141,198,63,0.18) 0%, transparent 50%);
        }

        /* Floating orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            animation: floatOrb 6s ease-in-out infinite;
        }
        .hero-orb:nth-child(1) { width: 200px; height: 200px; top: -60px; left: -40px; animation-delay: 0s; }
        .hero-orb:nth-child(2) { width: 130px; height: 130px; bottom: 20px; left: 18%; animation-delay: 2s; }
        .hero-orb:nth-child(3) { width: 90px;  height: 90px;  top: 30px; right: 12%; animation-delay: 1s; }
        .hero-orb:nth-child(4) { width: 160px; height: 160px; bottom: -50px; right: -30px; animation-delay: 3s; }

        @keyframes floatOrb {
            0%, 100% { transform: translateY(0) scale(1); }
            50%       { transform: translateY(-18px) scale(1.04); }
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            padding: 60px 20px 130px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
        }

        .hero-icon-wrap {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.15);
            border: 2px solid rgba(255,255,255,0.35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            backdrop-filter: blur(8px);
            animation: pulseIcon 3s ease-in-out infinite;
        }

        @keyframes pulseIcon {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
            50%       { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
        }

        .page-hero .hero-content h1 {
            font-size: 50px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-shadow: 0 3px 16px rgba(0,0,0,0.18);
            line-height: 1;
        }

        .hero-tagline {
            font-size: 16px;
            opacity: 0.88;
            letter-spacing: 1px;
            font-weight: 400;
        }

        .hero-chips {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-chip {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.30);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .5px;
            backdrop-filter: blur(6px);
        }

        .page-hero .hero-wave {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 3;
        }

        .page-hero .hero-wave svg {
            display: block;
            width: 100%;
        }

        @media(max-width:768px) {
            .page-hero .hero-content h1 { font-size: 30px; letter-spacing: 2px; }
            .page-hero { min-height: 240px; }
        }

        /* CONTATO */
        .contato-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px 40px 80px;
        }

        .contato-section-title {
            text-align: center;
            margin-bottom: 56px;
        }

        .contato-section-title .badge {
            display: inline-block;
            background: linear-gradient(135deg, #138D45, #8DC63F);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .contato-section-title h2 {
            color: #1a1a1a;
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .contato-section-title h2 span {
            color: var(--verde);
        }

        .contato-section-title p {
            color: #666;
            font-size: 16px;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .contato-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 0;
        }

        .contato-card {
            background: #fff;
            border-radius: 24px;
            padding: 36px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.07);
            border: 1px solid #f0f0f0;
            transition: transform .3s, box-shadow .3s;
            position: relative;
            overflow: hidden;
        }

        .contato-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, #138D45, #8DC63F);
        }

        .contato-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(19,141,69,0.12);
        }

        .contato-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
        }

        .contato-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #138D45, #8DC63F);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            flex-shrink: 0;
        }

        .contato-card-title h2 {
            color: #1a1a1a;
            font-size: 20px;
            margin-bottom: 4px;
            font-weight: 700;
        }

        .contato-card-title p {
            color: #888;
            font-size: 13px;
            font-weight: 500;
        }

        .contato-info {
            display: flex;
            gap: 14px;
            margin-bottom: 16px;
            align-items: flex-start;
            padding: 14px 16px;
            background: #f8fdf9;
            border-radius: 12px;
            border: 1px solid rgba(19,141,69,0.08);
            transition: background .2s;
        }

        .contato-info:hover {
            background: #edf7f0;
        }

        .contato-info i {
            color: var(--verde);
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .contato-info span {
            color: #444;
            font-size: 14px;
            line-height: 1.6;
        }

        .contato-info a {
            color: var(--verde);
            text-transform: none;
            font-size: 14px;
            font-weight: 600;
        }

        .contato-info a:hover {
            text-decoration: underline;
        }

        .mapa {
            width: 100%;
            height: 240px;
            border-radius: 16px;
            border: none;
            margin-top: 20px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }

        /* WhatsApp CTA block */
        .wa-cta {
            margin-top: 50px;
            background: linear-gradient(135deg, #0d6e36 0%, #138D45 60%, #8DC63F 100%);
            border-radius: 28px;
            padding: 50px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .wa-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.10) 0%, transparent 60%);
        }

        .wa-cta-orb {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
        }

        .wa-cta-orb:nth-child(1) { width: 180px; height: 180px; top: -60px; right: 160px; }
        .wa-cta-orb:nth-child(2) { width: 100px; height: 100px; bottom: -30px; left: 80px; }

        .wa-cta-text {
            position: relative;
            z-index: 1;
        }

        .wa-cta-text h2 {
            color: #fff;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .wa-cta-text p {
            color: rgba(255,255,255,0.85);
            font-size: 15px;
            line-height: 1.6;
        }

        .wa-cta-btn {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            color: #138D45 !important;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            transition: transform .3s, box-shadow .3s;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            flex-shrink: 0;
        }

        .wa-cta-btn i {
            font-size: 22px;
            color: #25D366;
        }

        .wa-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.20);
        }

        @media(max-width:768px) {
            .wa-cta {
                flex-direction: column;
                text-align: center;
                padding: 40px 24px;
            }
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, var(--verde), #0d6e36);
            padding: 70px 40px;
            text-align: center;
            color: #fff;
        }

        .cta-block h2 {
            color: #fff;
            font-size: 32px;
            margin-bottom: 14px;
            font-weight: 700;
        }

        .cta-block p {
            color: rgba(255, 255, 255, .88);
            font-size: 17px;
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto 28px;
        }

        .cta-btn {
            display: inline-block;
            background: #fff;
            color: var(--verde) !important;
            padding: 16px 45px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: transform .3s, box-shadow .3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
        }

        /* FOOTER */
        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, .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, .15);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: #fff;
            font-size: 20px;
            transition: background .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: 15px;
        }

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

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

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

        /* WHATSAPP */
        @keyframes pulse-wa {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, .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: #fff;
            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, .2);
            z-index: 9999;
            animation: pulse-wa 2s infinite;
        }

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

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

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: #fff;
                box-shadow: 0 10px 15px rgba(0, 0, 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: #fdfdfd
            }

            .nav-item:hover .dropdown,
            .nav-item:focus-within .dropdown {
                display: block
            }

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

            footer {
                padding-top: 100px
            }

            .content-row,
            .content-row.reverse {
                flex-direction: column;
                gap: 30px;
                padding: 40px 0
            }

            .col-img img {
                height: 260px
            }

            .contato-grid {
                grid-template-columns: 1fr
            }

            .parceria-item {
                flex-direction: column
            }

            .parceria-item img {
                width: 100%;
                height: 220px
            }

            .cards-grid {
                padding: 0 20px
            }
        }

        @media(max-width:768px) {
            footer {
                padding-top: 70px
            }

            .content-section {
                padding: 10px 20px 40px
            }

            .cta-block {
                padding: 50px 20px
            }

            .contato-section {
                padding: 40px 20px
            }

            .parceria-block {
                padding: 0 20px
            }
        }

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

        /* ── 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;
            }

            /* Hero index */
            .hero {
                min-height: auto;
            }

            .hero-images img {
                border-radius: 0;
            }

            .hero-content {
                padding: 28px 20px 36px;
            }

            .hero h1 {
                font-size: 22px;
            }

            .hero h1 span {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            /* Section titles */
            .section-title {
                font-size: 22px;
                margin-bottom: 24px;
            }

            /* Gallery */
            .gallery-contact {
                margin: 32px auto;
            }

            .gallery-middle-text {
                font-size: 15px;
            }

            /* Sistema de ensino */
            .sistema-ensino p {
                font-size: 15px;
            }

            /* Footer */
            .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;
            }

            /* Page hero (inner pages) */
            .page-hero .hero-content h1 {
                font-size: 22px !important;
                letter-spacing: 1px;
            }

            /* Cards / grids in inner pages */
            .cards-grid,
            .mvv-grid,
            .eco-items-grid,
            .infra-grid,
            .activities-grid,
            .sections-grid {
                grid-template-columns: 1fr !important;
                gap: 20px;
            }

            /* Tables */
            table {
                font-size: 13px;
            }

            th,
            td {
                padding: 8px 10px;
            }

            /* WhatsApp button */
            .whatsapp-fixed {
                width: 50px;
                height: 50px;
                font-size: 26px;
                bottom: 18px;
                right: 18px;
            }
        }

        /* Decorativo hero */
        .hero-deco {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* Decorativo footer */
        .footer-deco {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 1;
        }

        footer {
            position: relative;
        }

        .footer-container,
        .copyright {
            position: relative;
            z-index: 1;
        }

        /* ── 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);
        }
        .fade-in-left {
            opacity: 0;
            transform: translateX(-32px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .fade-in-right {
            opacity: 0;
            transform: translateX(32px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(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
        }
