        /* --- 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;
            --bg-hero: #E6EEFA;
        }

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

        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-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);
        }

        .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 #f5f5f5;
            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;
        }

        /* --- CABEÇALHO DA PÁGINA --- */
        main {
            flex: 1;
        }

        .page-header {
            background-color: var(--bg-hero);
            text-align: center;
            padding: 50px 20px;
        }

        .page-header h1 {
            color: var(--roxo);
            font-size: 36px;
            margin-bottom: 10px;
            text-transform: none;
        }

        .page-header p {
            color: #555;
            font-size: 18px;
        }

        /* --- LAYOUT CENTRADO ESTILO ORIGINAL --- */
        .content-section {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .story-block {
            text-align: center;
            margin-bottom: 70px;
        }

        .story-block h2 {
            color: var(--verde-principal);
            font-size: 34px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .story-block p {
            color: #555;
            font-size: 17px;
            line-height: 1.8;
            font-style: italic;
            max-width: 700px;
            margin: 0 auto 15px auto;
        }

        .story-block p strong {
            font-style: normal;
            font-weight: 700;
            color: var(--texto-escuro);
        }

        /* Foto simples (sem polaroid) */
        .polaroid-wrap {
            display: block;
            margin: 50px auto;
            text-align: center;
        }

        .polaroid {
            display: inline-block;
            max-width: 680px;
            width: 85%;
        }

        .polaroid img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        /* MVV three columns */
        .mvv-section {
            max-width: 1100px;
            margin: 0 auto 60px auto;
            padding: 0 20px;
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            text-align: center;
        }

        .mvv-item h3 {
            color: var(--verde-principal);
            font-size: 26px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .mvv-item p {
            color: #555;
            font-size: 16px;
            line-height: 1.7;
        }

        /* Eco section heading */
        .eco-section-title {
            text-align: center;
            margin-bottom: 20px;
        }

        .eco-section-title h2 {
            color: var(--verde-principal);
            font-size: 30px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .eco-section-title p {
            font-size: 16px;
            color: #555;
            font-style: italic;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Eco items with icons - two column layout */
        .eco-items-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 60px;
            max-width: 800px;
            margin: 40px auto 0 auto;
            list-style: none;
        }

        .eco-items-grid li {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 18px 0;
            border-bottom: 1px solid #eee;
            font-size: 16px;
            color: var(--texto-escuro);
        }

        .eco-items-grid li i {
            color: var(--verde-principal);
            font-size: 30px;
            min-width: 40px;
            text-align: center;
        }

        /* Symbol / Equipe centered */
        .symbol-block {
            text-align: center;
            margin-bottom: 70px;
        }

        .symbol-block h2 {
            color: var(--verde-principal);
            font-size: 34px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .symbol-block p {
            color: #555;
            font-size: 17px;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 20px auto;
        }

        .symbol-block img {
            max-width: 260px;
            margin: 0 auto;
        }

        /* --- SUSTENTABILIDADE --- */
        .eco-section {
            background-color: #ffffff;
            padding: 60px 20px 80px 20px;
            margin-bottom: 0;
        }

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

        /* --- WHATSAPP FIXO --- */
        @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: white;
            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(0, 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;
            }
        }

        @media (max-width: 768px) {
            .mvv-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .eco-items-grid {
                grid-template-columns: 1fr;
            }

            .polaroid {
                max-width: 90%;
            }

            footer {
                padding-top: 70px;
            }
        }

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

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

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cellipse cx='30%25' cy='40%25' rx='35%25' ry='30%25' fill='%2322c55e' opacity='0.2'/%3E%3C/svg%3E");
        }

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

        .page-hero .hero-content h1 {
            font-size: 46px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }

        .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: 28px;
                letter-spacing: 1px;
            }

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

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

        /* ícone grande acima do título */
        .page-hero .hero-icon {
            font-size: 48px;
            opacity: 0.9;
            line-height: 1;
        }

        /* linha separadora */
        .page-hero .hero-divider {
            width: 60px;
            height: 3px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
        }

        /* subtítulo */
        .page-hero .hero-subtitle {
            font-size: 17px;
            font-weight: 400;
            opacity: 0.88;
            max-width: 560px;
            line-height: 1.55;
            margin: 0;
        }

        /* badges de info rápida */
        .page-hero .hero-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 4px;
        }

        .page-hero .hero-badge {
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            backdrop-filter: blur(4px);
        }

        @media(max-width:768px) {
            .page-hero .hero-icon {
                font-size: 36px;
            }

            .page-hero .hero-subtitle {
                font-size: 14px;
            }
        }

        @media(max-width:480px) {
            .page-hero .hero-badge {
                font-size: 12px;
                padding: 5px 12px;
            }
        }

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