        * {
            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;
        }

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

        .contato-hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, var(--verde), #0d6e36);
            color: #fff;
        }

        .contato-hero h1 {
            font-size: 36px;
            margin-bottom: 14px;
        }

        .contato-hero p {
            font-size: 18px;
            opacity: .9;
            max-width: 600px;
            margin: 0 auto;
        }

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

        .contato-card {
            background: #f9f9f9;
            border-radius: 20px;
            padding: 40px;
        }

        .contato-card h2 {
            color: var(--verde);
            font-size: 22px;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .contato-info {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

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

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

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

        .mapa {
            width: 100%;
            height: 300px;
            border-radius: 14px;
            border: none;
            margin-top: 24px;
        }

        /* SEÇÃO DE TÍTULO STANDALONE */
        .page-title {
            text-align: center;
            padding: 60px 20px 20px;
        }

        .page-title h1 {
            color: var(--verde);
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .page-title p {
            color: #666;
            font-size: 17px;
        }

        /* CABEÇALHO ESTILO SOBRE */
        .page-header {
            background-color: #E6EEFA;
            text-align: center;
            padding: 50px 20px;
        }

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

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

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




        /* Materiais */
        .mat-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 40px 60px;
        }

        .mat-year {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            color: var(--verde);
            margin-bottom: 40px;
        }

        .mat-group {
            margin-bottom: 40px;
        }

        .mat-group h2 {
            color: var(--verde);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0f0f0;
        }

        .mat-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .mat-card {
            background: #f7f7f7;
            border-radius: 14px;
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 4px solid var(--verde);
            transition: background .2s;
        }

        .mat-card:hover {
            background: #eef7f1;
        }

        .mat-card span {
            color: var(--texto);
            font-size: 15px;
            font-weight: 600;
        }

        .mat-card a {
            background: var(--verde);
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            white-space: nowrap;
            text-transform: none;
            transition: background .2s;
        }

        .mat-card a:hover {
            background: #0d6e36;
        }

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

            .mat-section {
                padding: 30px 20px 40px;
            }
        }

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