:root {
            --primary: #0a0e17;
            /* Deep Midnight Blue */
            --secondary: #1a1f2e;
            /* Rich Navy */
            --accent-gold: #d4af37;
            /* Classic Gold */
            --accent-rose: #c78887;
            /* Dusty Rose */
            --accent-teal: #4a7c7d;
            /* Sophisticated Teal */
            --light: #f5f5f5;
            /* Soft White */
            --text: #2a2a2a;
            --text-light: #6b7280;
            --border: #e5e7eb;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            letter-spacing: -0.025em;
        }

        h2 {
            font-size: 2.5rem;
            letter-spacing: -0.02em;
        }

        h3 {
            font-size: 1.8rem;
        }

        p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 100%;
        }
         img,
        svg {
            vertical-align: middle;
        }

        .hero-waves {
            width: 100%;
            height: 50px;
            position: relative;
        }

        .hero-waves use {
            animation: move-forever 10s linear infinite;
            fill: #b6971d;
            /* cor das ondas */
        }

        .wave1 use {
            animation-delay: -2s;
            animation-duration: 7s;
            opacity: 0.5;
        }

        .wave2 use {
            animation-delay: -3s;
            animation-duration: 10s;
            opacity: 0.3;
        }

        .wave3 use {
            animation-delay: -4s;
            animation-duration: 13s;
            opacity: 0.2;
        }

        @keyframes move-forever {
            0% {
                transform: translate(-90px, 0%);
            }

            100% {
                transform: translate(85px, 0%);
            }
        }

        /* Container para a onda ficar onde quiser */
        .wave-container {
            position: relative;
            overflow: hidden;
            line-height: 0;
        }

        svg:not(:root) {
            overflow-clip-margin: content-box;
            overflow: hidden;
        }

        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 5;
            pointer-events: none;
        }

        /* Ondas em tons de dourado e branco translúcido */
        .parallax>use {
            animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
        }

        .parallax>use:nth-child(1) {
            animation-delay: -2s;
            animation-duration: 7s;
            fill: rgba(212, 175, 55, 0.1);
        }

        .parallax>use:nth-child(2) {
            animation-delay: -3s;
            animation-duration: 10s;
            fill: rgba(212, 175, 55, 0.2);
        }

        .parallax>use:nth-child(3) {
            animation-delay: -4s;
            animation-duration: 13s;
            fill: rgba(212, 175, 55, 0.05);
        }

        .parallax>use:nth-child(4) {
            animation-delay: -5s;
            animation-duration: 20s;
            fill: #ffffff;
        }

        @keyframes move-forever {
            0% {
                transform: translate3d(-90px, 0, 0);
            }

            100% {
                transform: translate3d(85px, 0, 0);
            }
        }

        /* SÍMBOLOS MÁGICOS - VERSÃO SUTIL */
        .magic-symbols-container {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            height: 150px;
            z-index: 4;
            pointer-events: none;
        }

        .math-symbol {
            position: absolute;
            bottom: -20px;
            color: #886d01;
            /* Dourado da marca */
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            font-size: 32px;
            opacity: 0;
            animation: jump-fish 5s ease-in-out infinite;
        }

        @keyframes jump-fish {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.6;
            }

            50% {
                transform: translate(30px, -100px) rotate(180deg);
                opacity: 0.4;
            }

            90% {
                opacity: 0.6;
            }

            100% {
                transform: translate(60px, 0) rotate(360deg);
                opacity: 0;
            }
        }

        /* Distribuição dos símbolos */
        .symbol-1 {
            left: 10%;
            animation-delay: 0s;
        }

        .symbol-2 {
            left: 30%;
            animation-delay: 2s;
            font-size: 18px;
        }

        .symbol-3 {
            left: 50%;
            animation-delay: 1s;
        }

        .symbol-4 {
            left: 70%;
            animation-delay: 3s;
            font-size: 20px;
        }

        .symbol-5 {
            left: 90%;
            animation-delay: 1.5s;
        }

        /* Estilos de texto originais */
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 3.5rem;
            color: #2c3e50;
        }

        .hero-title span {
            color: #d4af37;
        }

        .hero-subtitle {
            font-family: 'Montserrat', sans-serif;
            color: #555;
            font-size: 1.1rem;
            max-width: 500px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .bg-section {
                clip-path: ellipse(180% 100% at 50% 0%);
            }
        }

        /* Estilo do calendário */
        .calendar-sidebar {
            border: 1px solid #eaeaea;
            border-radius: 8px;
        }

        .calendar-day {
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.9rem;
            position: relative;
        }

        .calendar-day.other-month {
            color: #aaa;
            font-weight: 300;
        }

        .calendar-day.current-month {
            color: #000;
            font-weight: 500;
        }

        .calendar-day.today {
            background-color: #d4af37;
            color: white;
            border-radius: 50%;
            width: 50px;
            height: 40px;
            line-height: 20px;
            display: inline-block;
            margin: 0 auto;
        }

        .calendar-day.has-event::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            background-color: #333333;
            border-radius: 50%;
        }

        .calendar-day:hover:not(.selected):not(.empty) {
            background-color: #f8f9fa;
            transform: scale(1.05);
        }

        .calendar-day.selected {
            background-color: #777777;
            box-shadow: 0 0 0 1px #bd9924;
            font-weight: 700;
        }

        /* Linha separadora do título */
        #current-month-year {
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 8px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        /* Nova cor selecionada */
        .calendar-day.selected {
            background-color: #f5dc8c !important;
            color: #000 !important;
            border-radius: 6px !important;
            width: 48px !important;
            height: 39px !important;
            line-height: 20px !important;
            display: inline-block !important;
            margin: 0 auto !important;
            box-shadow: 0 0 0 1px #dbb63a !important;
            font-weight: 600 !important;
        }

        /* Linha separadora do título */
        #current-month-year {
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 8px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        /* Para compatibilidade com grids modernos */
        .grid-cols-7 {
            grid-template-columns: repeat(7, 1fr);
        }

        .digital-clock {
            width: 100%;
            cursor: pointer;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            font-weight: 600;
            color: #2c3e50;
            /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
            padding: 2px;
            border-radius: 4px;
            /* border: 1px solid #dee2e6; */
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: baseline;
            gap: 2px;
            margin-top: 2px;
            transition: all 0.3s ease;
            justify-content: center;
            align-content: center;
            flex-wrap: wrap;
        }

        .digital-clock:hover {
            color: #ffffff;
            background: linear-gradient(135deg, transparent, #dbb63a);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .digital-clock .clock-time {
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .digital-clock .clock-ampm {
            font-size: 0.7rem;
            color: #333333;
            margin-left: 2px;
        }
        
        @media (max-width: 991px) {
            .digital-clock {
                display: none;
            }
        }
        /* === BACKGROUND COM IMAGEM E GRADIENTE === */
        .bg-image-repeat-x {
            height: auto;
            background: linear-gradient(45deg, transparent, #e2ca7c, #d4af37, #f7f8de), url(/assets/img/bg-meio.png);
            background-blend-mode: overlay;
            background-repeat: repeat;
            background-position: top;
            z-index: 3 !important;
        }
        .bg-section{
            width: 100%;
            clip-path: ellipse(150% 100% at 50% 0%);
        }
        /* Navigation */
        .navbar {
            background-color: #f1e8c4;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1rem 0;
            border-bottom: 2px double #d4af37;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 0.75rem 0;
            background-color: rgba(255, 255, 255, 0.98);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.3rem;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.025em;
            transition: all 0.4s ease;
        }

        .navbar-brand:hover {
            text-shadow: 0 10px 7px rgba(212, 175, 55, 0.3);
            color: var(--accent-gold) !important;
            opacity: 1;
        }

        .navbar-brand i {
            color: var(--accent-gold);
            font-size: 1.6rem;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text) !important;
            padding: 0.75rem 1.2rem !important;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
            font-family: 'Montserrat', sans-serif;
        }

        .nav-link:hover {
            color: var(--accent-gold) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 80%;
        }

        /* Buttons */
        .btn-elegant {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white !important;
            border: 2px solid var(--accent-gold);
            padding: 1.1rem 2.8rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.15rem;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(10, 14, 23, 0.2);
            letter-spacing: 0.03em;
            position: relative;
            overflow: hidden;
            will-change: transform;
        }

        .btn-elegant.btn-sm {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
        }

        .btn-outline-elegant.btn-sm {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
        }

        .btn-elegant::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-elegant:hover::before {
            left: 100%;
        }

        .btn-elegant:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(10, 14, 23, 0.3);
            background: linear-gradient(135deg, var(--secondary), #151a25);
        }

        .btn-outline-elegant {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary) !important;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
        }

        .btn-outline-elegant:hover {
            background: var(--primary);
            color: white !important;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
        }

          /* Hero Section */
        .hero-section {
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .hero-section {
            background: linear-gradient(135deg, #fff 0%, #bfa2308f 100%);
            padding: 120px 0;
            color: white;
            clip-path: ellipse(150% 100% at 50% 0%);
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 4.2rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary), #0c131f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: var(--text-light);
            font-weight: 400;
            text-align: center;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }

        .hero-image-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            padding: 10px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(10, 14, 23, 0.1));
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            border-radius: 15px;
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-image-container:hover .hero-image {
            transform: scale(1.02);
        }


        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: var(--white);
            position: relative;
        }

         /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: var(--white);
            position: relative;
        }

        .stats-container {
            display: flex;
            gap: 50px;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 0;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Features Section */
        #features {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--white), #f1f5f9);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        section.visible .section-title h2 {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 3px;
        }

        .section-title p {
            font-size: 1.2rem;
            max-width: 650px;
            margin: 0 auto;
            color: var(--text-light);
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            transition-delay: 0.1s;
        }

        section.visible .section-title p {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 45px 35px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        section.visible .feature-card {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.02), rgba(199, 136, 135, 0.02));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: rgba(212, 175, 55, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            font-size: 2.4rem;
            color: var(--accent-gold);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 2px solid rgba(212, 175, 55, 0.2);
        }

        .feature-card:hover .feature-icon {
            background: rgba(212, 175, 55, 0.15);
            transform: scale(1.2) rotate(10deg);
            border-color: rgba(212, 175, 55, 0.4);
            filter: drop-shadow(0 8px 15px rgba(212, 175, 55, 0.4));
        }

        .feature-card h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(108deg, rgba(212, 175, 55, 0.7), rgba(51, 51, 51, 0.8));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            z-index: -1;
        }

        .cta-title {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: white;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .cta-section.visible .cta-title {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.9;
            color: #f2f2f2;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            transition-delay: 0.1s;
        }

        .cta-section.visible .cta-subtitle {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 0 40px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.3rem !important;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
            text-align: center;
            width: 100%;
        }

        .footer-logo i {
            color: var(--accent-gold);
        }

        .footer p {
            color: #888888;
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 15px;
        }

        .footer a {
            color: #999999 !important;
            text-decoration: none;
            transition: all 0.4s ease;
            font-size: 0.95rem;
        }

        .footer a:hover {
            text-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            color: var(--accent-gold) !important;
            opacity: 1;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 80%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 50px;
            right: 50px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--white), #f8f9fa);
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 9999;
            font-size: 1.4rem;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            background: linear-gradient(135deg, var(--accent-gold), #b89e2e);
            color: white !important;
        }

        /* Cursos em Destaque */
        #courses {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f8f9fa, var(--white));
            position: relative;
        }

        .course-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            background: var(--white);
            height: 100%;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        #courses.visible .course-card {
            opacity: 1;
            transform: translateY(0);
        }

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

        .course-image {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-color: #bca02f7d;
            color: #666;
            font-size: 3.5rem;
        }

        .course-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .course-level {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .course-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .course-price .price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* Depoimentos */
        #testimonials-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--white), #f8f9fa);
            position: relative;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 4px solid var(--accent-gold);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        #testimonials-section.visible .testimonial-card {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .testimonial-stars {
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Blog */
        #blog {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f8f9fa, var(--white));
            position: relative;
        }

        .blog-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        #blog.visible .blog-card {
            opacity: 1;
            transform: translateY(0);
        }

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

        .blog-image {
            height: 200px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .blog-category {
            background: #f1db99bd;
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
            font-size: 0.85rem;
        }

        .author-thumb {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        .blog-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
        }

        .blog-excerpt {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .blog-link {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .blog-link:hover {
            color: var(--primary);
        }

        /* Eventos */
        #events {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--white), #f8f9fa);
            position: relative;
        }

        .event-card {
            display: flex;
            gap: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        #events.visible .event-card {
            opacity: 1;
            transform: translateY(0);
        }

        .event-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .event-date {
            background: linear-gradient(135deg, #131724, #cdaa35);
            color: var(--white);
            border-radius: 8px;
            padding: 1rem 16px;
            text-align: center;
            min-width: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .event-day {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .event-month {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .event-category {
            display: inline-block;
            background: #cfab357a;
            color: #373b3e;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .event-title {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .event-description {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .event-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }


        /* FAQ Section */
        #faq {
            padding: 100px 0;
            background-color: var(--white);
            position: relative;
        }

       .faq-badge {
            background-color: #bea2306e;
            color: #333;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .faq-container {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .faq-list {
            flex: 2;
            min-width: 300px;
        }

        .faq-sidebar {
            flex: 1;
            min-width: 300px;
            background-color: rgb(225 217 189 / 17%);
            border: 1px dotted #c7c5c5;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            transition-delay: 0.6s;
            align-content: stretch;
            flex-wrap: nowrap;
        }
        
        #faq.visible .faq-sidebar {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-sidebar i {
            font-size: 2.5rem;
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
        }

        .faq-item {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        #faq.visible .faq-item {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item:nth-child(2) {
            transition-delay: 0.1s;
        }

        .faq-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .faq-item:nth-child(4) {
            transition-delay: 0.3s;
        }

        .faq-header {
            background-color: #ceab354a;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background-color 0.3s ease;
        }
        .faq-item:hover .faq-header {
             background-color: #e0bc4669;
        }

       .faq-content {
            padding: 20px 25px 20px;
            color: #777;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .faq-item.active .faq-content {
            max-height: 500px;
            opacity: 1;
        }

        .faq-item.active {
            border-color: var(--accent-teal);
            box-shadow: 0 4px 15px rgba(74, 124, 125, 0.1);
        }

        /* Missão, Visão e Valores */
        #about {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f8f9fa, var(--white));
            position: relative;
        }

        .mvv-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 4px solid var(--accent-gold);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
            position: relative;
            overflow: hidden;
        }

        #about.visible .mvv-card {
            opacity: 1;
            transform: translateY(0);
        }

        .mvv-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: -1;
        }

        .mvv-card:hover::after {
            opacity: 1;
        }

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

        .mvv-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .mvv-card:hover .mvv-icon {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 8px 15px rgba(212, 175, 55, 0.4));
        }

        .mvv-card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .mvv-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Section Transitions */
        section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        section.visible::before {
            opacity: 0.3;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* === IMAGENS FIXAS DECORATIVAS === */
       
        .fixed-image {
            position: absolute;
            top: 100%;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            max-width: 1200px;
            width: 100%;
            height: auto;
            z-index: 2;
            pointer-events: none;
        }
        /* Responsive */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            .hero-title {
                font-size: 3.2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.7rem;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .stat-number {
                font-size: 2.8rem;
            }
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .navbar.scrolled {
                padding: 0.5rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
            .cta-title {
                font-size: 2.2rem;
            }
            .hero-image {
                width: 100%;
                height: auto;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 140px 0 100px;
            }
            h1 {
                font-size: 2rem;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .stats-container {
                gap: 25px;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .section-title h2 {
                font-size: 1.6rem;
            }
            .cta-title {
                font-size: 1.8rem;
            }
            .btn-elegant,
            .btn-outline-elegant,
            .cta-btn {
                width: 100%;
                padding: 1rem;
                font-size: 1.05rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 1.5rem;
            }
        }