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

        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;
            position: relative;
        }

        .nav-item:not(.has-dropdown) .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 0;
            height: 2px;
            background: currentColor;
            transition: width 0.3s ease;
        }

        .nav-item:not(.has-dropdown) .nav-link:hover::after {
            width: 100%;
        }

        .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 #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;
            padding-left: 26px;
        }

        .dropdown-item a i {
            font-size: 14px;
        }

        /* --- HERO SECTION --- */
        .hero {
            background-color: var(--bg-hero);
            display: flex;
            align-items: center;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        @keyframes float-soft {
            0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
            50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
        }

        @keyframes pop-in {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes ken-burns {
            0% { transform: scale(1); }
            100% { transform: scale(1.06); }
        }

        /* Elementos decorativos desktop */
        .hero-deco-dot-red {
            position: absolute;
            top: 30px;
            right: 80px;
            width: 14px;
            height: 14px;
            background: #e84393;
            border-radius: 50%;
            z-index: 0;
            animation: float-soft 4s ease-in-out infinite;
        }

        .hero-deco-bar {
            position: absolute;
            top: 52px;
            right: 58px;
            width: 6px;
            height: 40px;
            background: #e84393;
            border-radius: 3px;
            transform: rotate(-35deg);
            z-index: 0;
            --rot: -35deg;
            animation: float-soft 5s ease-in-out infinite 0.3s;
        }

        .hero-deco-blue {
            position: absolute;
            top: 40px;
            right: 20px;
            width: 60px;
            height: 70px;
            background: #1565c0;
            border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
            z-index: 0;
            animation: float-soft 6s ease-in-out infinite 0.6s;
        }

        .hero-deco-circle-teal {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 90px;
            border: 3px solid #00bcd4;
            border-radius: 50%;
            background: repeating-linear-gradient(-45deg,
                    transparent,
                    transparent 4px,
                    rgba(0, 188, 212, 0.25) 4px,
                    rgba(0, 188, 212, 0.25) 6px);
            z-index: 0;
            animation: float-soft 7s ease-in-out infinite;
        }

        .hero-deco-circle-hollow {
            position: absolute;
            bottom: 40px;
            left: 16px;
            width: 22px;
            height: 22px;
            border: 2.5px solid #e84393;
            border-radius: 50%;
            z-index: 0;
            animation: float-soft 5s ease-in-out infinite 0.4s;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            width: 100%;
            align-items: center;
        }

        .hero-images {
            width: 50%;
            position: relative;
            overflow: hidden;
            border-radius: 0 50% 50% 0;
            opacity: 0;
            animation: slide-in-right 0.9s cubic-bezier(.22,1,.36,1) forwards;
        }

        @keyframes slide-in-right {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-images img {
            width: 100%;
            object-fit: cover;
            border-radius: 0 50% 50% 0;
            animation: ken-burns 12s ease-in-out infinite alternate;
        }

        .hero-content {
            width: 50%;
            padding: 40px;
            position: relative;
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 10%;
            width: 120px;
            height: 120px;
            background: #F1D433;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            z-index: 1;
            opacity: 0.8;
            animation: blob-pulse 6s ease-in-out infinite;
        }

        @keyframes blob-pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.12) rotate(8deg); }
        }

        .hero-text-box {
            position: relative;
            z-index: 2;
        }

        .hero-text-box > * {
            opacity: 0;
            animation: pop-in-big 0.85s cubic-bezier(.22,1.2,.36,1) forwards;
        }

        @keyframes pop-in-big {
            from { opacity: 0; transform: translateY(34px) scale(0.94); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .hero-text-box h1 { animation-delay: 0.1s; }
        .hero-text-box p { animation-delay: 0.3s; }
        .hero-text-box .hero-badges { animation-delay: 0.48s; }
        .hero-text-box .hero-cta { animation-delay: 0.66s; }

        .hero h1 span {
            display: inline-block;
            animation: span-glow 3s ease-in-out 1.4s infinite;
        }

        @keyframes span-glow {
            0%, 100% { text-shadow: 0 0 0 rgba(19,141,69,0); }
            50% { text-shadow: 0 4px 18px rgba(19,141,69,0.35); }
        }

        .hero h1 {
            color: var(--roxo);
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 15px;
            text-transform: none;
        }

        .hero h1 span {
            color: var(--verde-principal);
            display: block;
            font-size: 42px;
            margin-top: 10px;
        }

        .hero p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Botões CTA hero desktop */
        .hero-cta {
            display: flex;
            gap: 14px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--verde-principal);
            color: #fff;
            padding: 13px 26px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--verde-claro);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-secondary {
            background: transparent;
            color: var(--roxo);
            padding: 12px 24px;
            border-radius: 30px;
            border: 2px solid var(--roxo);
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: var(--roxo);
            color: #fff;
        }

        /* Cards de benefícios rápidos abaixo do hero */
        .hero-badges {
            display: flex;
            gap: 12px;
            margin-top: 22px;
            flex-wrap: wrap;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            padding: 7px 14px;
            font-size: 13px;
            font-weight: 600;
            color: var(--verde-principal);
            border: 1.5px solid rgba(19, 141, 69, 0.2);
            backdrop-filter: blur(4px);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .badge-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 14px rgba(19, 141, 69, 0.15);
        }

        .badge-item i {
            color: var(--verde-principal);
            font-size: 14px;
        }

        /* ── MOBILE HERO (design da imagem) ─── */
        @media (max-width: 480px) {

            .hero {
                min-height: 100svh;
                flex-direction: column;
                align-items: stretch;
                padding: 0;
            }

            .hero-container {
                flex-direction: column;
                align-items: stretch;
                padding: 0;
                position: relative;
                min-height: 100svh;
            }

            /* Imagem aparece acima do texto no mobile */
            .hero-images {
                display: block;
                width: 100%;
                order: -1;
            }

            .hero-images img {
                width: 100%;
                height: 240px;
                object-fit: cover;
                border-radius: 0 0 50% 50% / 0 0 30px 30px;
            }

            .hero-content {
                width: 100%;
                padding: 24px 22px 120px;
                position: relative;
                z-index: 2;
                background: transparent;
            }

            /* Mancha amarela grande – canto superior esquerdo */
            .hero-content::before {
                content: '';
                position: absolute;
                top: -10px;
                left: -30px;
                width: 210px;
                height: 200px;
                background: #F1D433;
                border-radius: 40% 60% 55% 45% / 50% 45% 60% 50%;
                z-index: 1;
                opacity: 1;
            }

            /* Mancha rosa/magenta – canto superior direito */
            .hero-content::after {
                content: '';
                position: absolute;
                top: 0;
                right: -10px;
                width: 14px;
                height: 14px;
                background: #e84393;
                border-radius: 50%;
                z-index: 3;
            }

            .hero-text-box {
                position: relative;
                z-index: 4;
            }

            .hero h1 {
                font-size: 26px;
                margin-bottom: 10px;
            }

            .hero h1 span {
                font-size: 32px;
                margin-top: 6px;
            }

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

            /* Decorativos mobile */
            .hero-deco-dot-red {
                top: 14px;
                right: 40px;
                width: 10px;
                height: 10px;
            }

            .hero-deco-bar {
                top: 28px;
                right: 24px;
                width: 5px;
                height: 30px;
            }

            .hero-deco-blue {
                top: 20px;
                right: 0px;
                width: 46px;
                height: 54px;
            }

            .hero-deco-circle-teal {
                bottom: 30px;
                left: 50%;
                width: 100px;
                height: 76px;
            }

            .hero-deco-circle-hollow {
                bottom: 20px;
                left: 12px;
                width: 18px;
                height: 18px;
            }

            /* Botões CTA no mobile */
            .hero-cta {
                flex-direction: column;
                gap: 10px;
                margin-top: 22px;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
                font-size: 14px;
                padding: 13px 20px;
            }

            /* Badges mobile */
            .hero-badges {
                gap: 8px;
                margin-top: 18px;
            }

            .badge-item {
                font-size: 12px;
                padding: 6px 11px;
            }
        }

        /* --- SEÇÃO GALERIA & CONTATO --- */
        .gallery-contact {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            text-align: center;
        }

        .section-title {
            color: var(--verde-principal);
            font-size: 32px;
            margin-bottom: 40px;
            text-transform: none;
        }

        .gallery-container-new {
            display: flex;
            flex-direction: column;
            gap: 25px;
            width: 100%;
        }

        .row-top,
        .row-middle {
            display: flex;
            gap: 20px;
            width: 100%;
        }

        .row-top img {
            width: calc(50% - 10px);
            height: 380px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .row-top img:hover,
        .row-middle img:hover {
            transform: scale(1.035);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
        }

        .gallery-middle-text {
            color: var(--verde-principal);
            font-weight: 600;
            font-size: 20px;
            line-height: 1.6;
            margin: 15px 0;
        }

        .row-middle img {
            width: calc(33.33% - 13.33px);
            height: 220px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        /* --- SISTEMA DE ENSINO --- */
        .sistema-ensino {
            background: #ffffff;
            padding: 60px 20px 0 20px;
            text-align: center;
            position: relative;
        }

        .sistema-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .sistema-ensino p {
            color: #555;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .logo-mackenzie {
            max-width: 280px;
            margin: 0 auto;
            transition: transform 0.35s ease;
        }

        .logo-mackenzie:hover {
            transform: scale(1.05);
        }

        /* --- FOOTER COM FUNDO DE IMAGEM --- */
        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;
            /* Ajustado de 4 para 3 colunas, removendo a do Menu */
            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, transform 0.3s;
        }

        .social-icons a:hover {
            background: var(--verde-claro);
            transform: translateY(-3px) scale(1.05);
        }

        .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 E ANIMAÇÃO --- */
        @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;
            /* Animação adicionada */
            transition: transform 0.3s;
        }

        .whatsapp-fixed:hover {
            animation: none;
            /* Para de pulsar ao passar o mouse */
            transform: scale(1.1);
        }

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

            .nav-menu {
                display: none;
                /* Esconde a lista original */
                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;
                /* Classe ativada pelo JavaScript */
            }

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

            .nav-link {
                width: 100%;
                justify-content: space-between;
                /* Espalha o texto e a setinha */
            }

            .dropdown {
                position: relative;
                box-shadow: none;
                border-top: none;
                opacity: 1;
                visibility: visible;
                display: none;
                /* Submenu escondido inicialmente no mobile */
                transform: none;
                padding-left: 15px;
                background: #fdfdfd;
            }

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

            /* Seta rotaciona ao abrir */
            .nav-link i.fa-caret-down.rotated {
                transform: rotate(180deg);
                transition: transform 0.3s;
            }

            .hero-container {
                flex-direction: column;
            }

            .hero-images,
            .hero-content {
                width: 100%;
            }

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

            footer {
                padding-top: 100px;
            }
        }

        @media (max-width: 768px) {

            .row-top,
            .row-middle {
                flex-direction: column;
                gap: 15px;
            }

            .row-top img,
            .row-middle img {
                width: 100%;
                height: 280px;
            }

            footer {
                padding-top: 70px;
            }
        }

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

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

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001s !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001s !important;
            }
        }

        /* Exceção: o botão do WhatsApp mantém o MESMO pulsar das outras
           páginas (anel), mesmo com "Reduzir Movimento" ligado. */
        @media (prefers-reduced-motion: reduce) {
            .whatsapp-fixed {
                animation: pulse-whatsapp 2s infinite !important;
                animation-duration: 2s !important;
                animation-iteration-count: infinite !important;
            }
        }

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