
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF6B6B;
            --primary-dark: #441709ff;
            --secondary: #e97855ff;
            --dark: #1a1a1a;
            --light-bg: #315251ff;
            --text-dark: #000;
            --text-light: #F9EEE7;
            --success: #EF9C82;
            --warning: #F39C12;
            --white: #F2f2f2;
            --degrade1: #ff9515;
            --degrade2: #ff0060;

        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, sans-serif;
            line-height: 1.6;
            color: var(--primary-dark);
            overflow-x: hidden;
            background-color: var(--light-bg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* SCROLL INDICATOR */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 999;
            width: 0%;
            transition: width 0.1s ease;
        }

        /* HEADER & NAVIGATION */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background:var(--light-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }

        .logo {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary);
            letter-spacing: -1px;
            animation: slideInLeft 0.6s ease;
        }

        

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        /* HERO SECTION */
        .hero {
            margin-top: 80px;
            padding: 80px 0;
            background: linear-gradient(135deg, #375c5aff 0%, #45666599 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text {
            animation: slideInUp 0.8s ease;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .hero h1 strong {
            background: linear-gradient(135deg, var(--primary), var(--success));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .typing-text {
            display: inline-block;
            border-right: 3px solid var(--primary);
            white-space: nowrap;
            overflow: hidden;
            animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
            min-height: 1.2em;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            from, to { border-color: var(--primary); }
            50% { border-color: transparent; }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-ctas {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* HERO IMAGE */
        .hero-image {
            position: relative;
            animation: slideInRight 0.8s ease;
            z-index: 2;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

       .hero-image-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0,0,0,0.05);
            background: white;
        }
        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
            z-index: 10;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transform: scale(1.02); /* Leve zoom para mais presença */
        }

        .hero-image-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: bounce 2s ease-in-out infinite;
            border-left: 4px solid var(--primary);
            z-index: 20;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .badge-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .badge-text {
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* COUNTER ANIMADO */
        .animated-counter {
            display: inline-block;
            min-width: 50px;
            text-align: right;
        }

        /* ABOUT & MENTORS SECTION */
        .mentors-section {
            padding: 120px 0;
            background: var(--text-light);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--success);
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--primary-dark);
            margin-bottom: 5rem;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subti {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 5rem;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .mentor-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .mentor-row.reverse {
            direction: rtl;
        }

        .mentor-row.reverse > * {
            direction: ltr;
        }

        .mentor-text {
            padding-right: 2rem;
        }

        .mentor-row.reverse .mentor-text {
            padding-right: 0;
            padding-left: 2rem;
        }

        .mentor-tag {
            display: inline-block;
            background: var(--primary-dark);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .mentor-tag.bonus {
            background: var(--warning);
            color: var(--text-light);
        }

        .mentor-text h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .mentor-text p {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .mentor-image-container {
            position: relative;
        }

        .mentor-image-container img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .mentor-image-container::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--light-bg);
            border-radius: 4px;
            z-index: -1;
        }

        .mentor-row.reverse .mentor-image-container::before {
            left: -20px;
        }

        /* NOTIFICAÇÃO FLUTUANTE */
        .notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 500;
            animation: slideIn 0.5s ease;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .notification.hide {
            animation: slideOut 0.5s ease forwards;
        }

        @keyframes slideOut {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(100px);
            }
        }

        .notification-title {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .notification-text {
            color: var(--light-bg);
            font-size: 0.9rem;
        }

        /* HERO FEATURES */
        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            animation: fadeInUp 1s ease 0.7s both;
        }

        .feature-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .feature-icon {
            font-size: 2rem;
            min-width: 50px;
            animation: spin 2s linear infinite;
        }

        .feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
        .feature-card:nth-child(2) .feature-icon { animation-delay: 0.3s; }
        .feature-card:nth-child(3) .feature-icon { animation-delay: 0.6s; }

        @keyframes spin {
            0%, 100% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(360deg) scale(1.1); }
        }

        .feature-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* PAIN POINTS SECTION */
        .pain-section {
            padding: 100px 0;
            background: white;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--secondary);
            opacity: 0;
            animation: fadeInUp 1s ease both;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .pain-card {
            background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            transition: all 0.3s;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .pain-card:nth-child(1) { animation-delay: 0.1s; }
        .pain-card:nth-child(2) { animation-delay: 0.2s; }
        .pain-card:nth-child(3) { animation-delay: 0.3s; }
        .pain-card:nth-child(4) { animation-delay: 0.4s; }

        .pain-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
        }

        .pain-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .pain-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ABOUT SECTION */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f4ff 0%, #fff5f5 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            opacity: 0;
            animation: slideInLeft 1s ease both;
        }

        .about-text h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .mentor-image {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: slideInRight 1s ease both;
            position: relative;
        }

        .mentor-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
        }

        .mentor-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .credentials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .credential-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .credential-item:nth-child(1) { animation-delay: 0.5s; }
        .credential-item:nth-child(2) { animation-delay: 0.6s; }
        .credential-item:nth-child(3) { animation-delay: 0.7s; }

        .credential-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
        }

        .credential-item h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .credential-item p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* PROGRAM SECTION */
        .program-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .class-card {
            background: linear-gradient(135deg, #fff5f5 0%, #f2f2f2 100%);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

         

        .class-card:nth-child(1) { animation-delay: 0.2s; }
        .class-card:nth-child(2) { animation-delay: 0.4s; }

        .class-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .class-card:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
            transform: translateY(-5px);
        }

        .class-date {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .class-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .class-learnings {
            list-style: none;
            margin: 2rem 0;
        }

        .class-learnings li {
            padding: 0.75rem 0;
            color: var(--text-dark);
            position: relative;
            padding-left: 1.5rem;
        }

        .class-learnings li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .class-description {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-top: 1.5rem;
            border-left: 4px solid var(--primary);
        }

        /* TESTIMONIAL SLIDER */
        .testimonials-slider {
            position: relative;
            margin: 3rem 0;
        }

        .slider-container {
            overflow: hidden;
            border-radius: 15px;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 3rem;
            background: white;
            border-radius: 15px;
            border: 2px solid var(--light-bg);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--light-bg);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .slider-arrow:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: -25px;
        }

        .slider-arrow.next {
            right: -25px;
        }

        .stars {
            color: var(--warning);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--text-dark);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            color: var(--text-light);
            font-size: 0.9rem;
        }


/* ==========================================================================
   BOTÃO CTA - PROVA SOCIAL
   ========================================================================== */
.proof-cta-container {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.proof-btn {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-btn:hover {
    transform: translateY(-5px) scale(1.03); /* Leve expansão para atrair o clique */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: var(--primary-dark);
}
/* Indicadores do Slide (Bolinhas) */
.carousel-dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* ==========================================================================
   SEÇÃO DE PROVA SOCIAL (GRID + PULSO ORGÂNICO)
   ========================================================================== */
.social-proof-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.proof-grid {
    display: grid;
    /* Cria colunas responsivas que se adaptam sozinhas (desktop lado a lado, mobile empilhado) */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    margin-top: 3rem;
}

.proof-card {
    width: 100%;
    max-width: 320px; /* Mantém a proporção de um smartphone */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 5px solid #ffffff;
    overflow: hidden; /* Mantém as pontas da imagem arredondadas */
    /* Aplica a animação infinita */
    animation: gentlePulse 4s infinite ease-in-out;
}

/* Atrasos diferentes para criar um efeito orgânico (não pulsam todas juntas) */
.proof-card:nth-child(1) { animation-delay: 0s; }
.proof-card:nth-child(2) { animation-delay: 1.3s; }
.proof-card:nth-child(3) { animation-delay: 2.6s; }

.proof-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Keyframes para a animação de pulso e sombra dinâmica */
@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.03); /* Leve aumento */
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18); /* Sombra cresce com o pulso */
    }
}

        /* PRICING SECTION */
        .pricing-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--text-light) 100%);;
            position: relative;
            overflow: hidden;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .pricing-card {
            padding: 4rem 3rem;
            max-width: 500px;
            background: var(--white);
            border-radius: 8px;           
            text-align: center;
            border: 2px solid var(--light-bg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: all 0.3s;
            position: relative;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .pricing-card:nth-child(1) { animation-delay: 0.3s; }
        .pricing-card:nth-child(2) { animation-delay: 0.5s; }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 107, 107, 0.2);
        }

        .pricing-card.featured::before {
            content: '⭐ LOTE FUNDADORAS';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-label {
            color: var(--primary-dark);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .price-currency {
            font-size: 1.5rem;
        }

        .price-period {
            color: var(--dark);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--text-dark);
            position: relative;
            padding-left: 1.5rem;
            border-bottom: 1px solid var(--light-bg);
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .urgency-banner {
            background: linear-gradient(135deg, var(--degrade1) 0%, var(--degrade2) 100%);
            color: white;
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            margin-top: 2rem;
            font-weight: 600;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.9; transform: scale(1.02); }
        }

        /* FAQ SECTION */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border: 2px solid var(--light-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        .faq-item:nth-child(6) { animation-delay: 0.6s; }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(255, 107, 107, 0.1);
        }

        .faq-question {
            background: var(--light-bg);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--dark);
            user-select: none;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, var(--light-bg), #f0f4ff);
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        /* ==========================================================================
   FAQ REDESIGN
   ========================================================================== */
.faq-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.faq-left p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.whatsapp-box {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.whatsapp-box h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.whatsapp-box p {
    color: var(--text-light); /* Adaptando para a sua paleta */
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.wpp-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    margin: 0.5rem 0 2rem;
    transition: color 0.3s;
}

.wpp-number:hover {
    color: var(--primary);
}

.wpp-cta {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    padding: 1.2rem 1rem;
    border-radius: 8px;
}

/* Alterando estilo original do FAQ para o novo visual */
.faq-right .faq-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.faq-right .faq-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.faq-right .faq-question {
    background: transparent;
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-right .faq-question:hover {
    background: transparent;
    color: var(--primary);
}

.faq-right .faq-answer {
    padding: 0;
}

.faq-right .faq-item.active .faq-answer {
    padding: 0 0 1.5rem 0;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

/* Transforma o + em um X girando 45 graus */
.faq-item.active .faq-icon {
    transform: rotate(45deg); 
}


/* ==========================================================================
   CORREÇÕES RESPONSIVAS (MOBILE)
   ========================================================================== */
@media (max-width: 900px) {
    .faq-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Diminui todos os paddings gigantes no mobile */
    .hero, 
    .mentors-section, 
    .program-section, 
    .pricing-section, 
    .faq-section, 
    .social-proof-section, 
    .final-cta {
        padding: 60px 0 !important;
    }

    /* Corrige as caixas de preço que ficavam coladas na direita */
    .pricing-cards {
        grid-template-columns: 1fr !important; /* Força ficar em 1 coluna */
        gap: 2rem;
    }
    
    .pricing-card {
        max-width: 100%; /* Remove a trava de largura */
        margin: 0 auto;
    }
}

        /* CTA SECTION */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .final-cta-content {
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 1s ease both;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .contact-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        footer p {
            opacity: 0.7;
            margin-bottom: 1rem;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                padding: 60px 0;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .credentials {
                grid-template-columns: 1fr;
            }

            .classes-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .contact-buttons {
                flex-direction: column;
            }

            .contact-btn {
                width: 100%;
            }

            .final-cta h2 {
                font-size: 1.8rem;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .slider-arrow.prev {
                left: 10px;
            }

            .slider-arrow.next {
                right: 10px;
            }

            .notification {
                bottom: 20px;
                right: 20px;
                left: 20px;
            }
        }
        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero-image-wrapper {
                max-width: 500px;
                margin: 0 auto;
            }
            .mentor-row, .mentor-row.reverse {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .mentor-row.reverse > * {
                direction: ltr;
            }
            .mentor-text {
                padding: 0 !important;
            }
            .nav-links {
                display: none;
            }
        }
        /* Tablets (768px a 1024px) */
@media (max-width: 1024px) {
    .social-proof-section {
        padding: 80px 0;
    }
    
    .carousel-wrapper {
        margin: 3rem auto;
        max-width: 500px;
    }
    
    .carousel-indicators {
        gap: 10px;
        margin-top: 1.5rem;
    }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 60px 0;
    }
    
    .carousel-wrapper {
        margin: 2rem auto;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .carousel-container {
        border-radius: 16px;
    }
    
    .carousel-indicators {
        gap: 8px;
        margin-top: 1.2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 28px;
    }
    
    .carousel-counter {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .social-proof-cta p {
        font-size: 1rem;
    }
    
    .social-proof-cta .btn {
        width: 100%;
    }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    .carousel-wrapper {
        padding: 0 15px;
    }
    
    .carousel-container {
        border-radius: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
}

/* ========== PRINT STYLING (Opcional) ========== */
@media print {
    .social-proof-section {
        display: none;
    }
}

/* ========== ACESSIBILIDADE ========== */

/* Foco visível para navegação por teclado */
.dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* Reduz animações se preferência do usuário for reduzir movimento */
@media (prefers-reduced-motion: reduce) {
    .carousel-slide {
        transition: opacity 0.1s linear;
    }
    
    .carousel-slide.active {
        animation: none;
    }
    
    .dot {
        transition: background 0.1s linear;
    }
    
    .social-proof-cta {
        animation: none;
        opacity: 1;
    }
}

/* ========== ESTADOS ESPECIAIS ========== */

/* Quando o carrossel está em pausa (hover) */
.carousel-container:hover .carousel-slide {
    animation-play-state: paused;
}

/* Efeito de carregamento (se necessário) */
.carousel-slide img:not([src]) {
    background: linear-gradient(135deg, var(--degrade1) 0%, var(--degrade2) 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

