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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0e1a;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('https://pixel-perfect-clone-9875.lovable.app/assets/hero-bg-CA9WkG7_.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 20px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 14, 26, 0.7), rgba(10, 14, 26, 0.9));
    transition: opacity 0.3s ease;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #0a0e1a);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    flex-direction: row;
}

.hero-left {
    max-width: 650px;
}

.lote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    color: #fdea35;
    margin-bottom: 30px;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #fdea35;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

.highlight {
    color: #FDEA35;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #b4b8c5;
    margin-bottom: 10px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b4b8c5;
}

.cta-button {
    background: #fdea35;
    color: #0a0e1a;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.5),
            0 0 10px rgba(245, 158, 11, 0.4),
            0 0 15px rgba(245, 158, 11, 0.3),
            0 0 20px rgba(245, 158, 11, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8),
            0 0 30px rgba(245, 158, 11, 0.6),
            0 0 40px rgba(245, 158, 11, 0.4),
            0 0 50px rgba(245, 158, 11, 0.3),
            0 0 60px rgba(245, 158, 11, 0.2);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.cta-button:hover {
    background: #f5a823;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 1),
        0 0 40px rgba(245, 158, 11, 0.8),
        0 0 50px rgba(245, 158, 11, 0.6);
    animation: none;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 20px;
    color: #6b7280;
    text-decoration: line-through;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #fdea35;
}

.warning-text {
    color: #fdea35;
    font-size: 14px;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    gap: 10px;
    align-items: center;
}

.countdown-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    min-width: 70px;
}

.countdown-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: #9ca3af;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 15px;
    position: relative;
    animation: scroll 2s infinite;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fdea35;
    border-radius: 2px;
    animation: wheel 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes wheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* Benefits Section */
.benefits-section {
    background: #0f1729;
    padding: 100px 0;
    position: relative;
}

.benefits-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
}

.benefits-description {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    color: #b4b8c5;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.benefits-description strong {
    color: #ffffff;
    font-weight: 600;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #00f508;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #93ff97;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.5;
}

/* Program Section */
.program-section {
    background: linear-gradient(to bottom, #0f1729, #0a0e1a);
    padding: 100px 0;
    position: relative;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.program-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #fdea35;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: #fffcde;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-card-highlight {
    border: 2px solid rgba(245, 158, 11, 0.5);
    background: rgba(15, 23, 42, 0.8);
}

.program-card-highlight:hover {
    border-color: rgba(245, 158, 11, 0.7);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.program-card-bonus {
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

.program-card-bonus:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.1);
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fdea35;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.program-badge-bonus {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.program-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.program-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b4b8c5;
}

.program-footer {
    margin-top: 60px;
    text-align: center;
}

.program-footer-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.program-footer-text .highlight {
    color: #fdea35;
}

/* Instructor Section */
.instructor-section {
    background: #0a0e1a;
    padding: 100px 0;
    position: relative;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.instructor-left {
    position: relative;
}

.instructor-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.instructor-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.instructor-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.instructor-badge svg {
    flex-shrink: 0;
}

.badge-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.badge-subtitle {
    font-size: 13px;
    color: #9ca3af;
}

.instructor-right {
    padding-left: 20px;
}

.instructor-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fdea35;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.instructor-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.instructor-description {
    font-size: 18px;
    line-height: 1.7;
    color: #b4b8c5;
    margin-bottom: 20px;
}

.instructor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.stat-card svg {
    flex-shrink: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fdea35;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.3;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(to bottom, #0a0e1a, #0f1729);
    padding: 100px 0;
    position: relative;
}

.guarantee-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.guarantee-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.guarantee-highlight {
    color: #10b981;
}

.guarantee-description {
    font-size: 20px;
    line-height: 1.7;
    color: #b4b8c5;
    max-width: 900px;
    margin: 0 auto 30px;
}

.guarantee-description strong {
    color: #10b981;
    font-weight: 700;
}

.guarantee-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    margin: 40px auto;
}

.guarantee-quote {
    font-size: 18px;
    line-height: 1.7;
    color: #9ca3af;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    background: #0f1729;
    padding: 100px 0;
    position: relative;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 18px;
    text-align: center;
    color: #9ca3af;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.5);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #fdea35;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #fdea35;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #b4b8c5;
}

/* Footer */
.footer {
    background: #0a0e1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
}

.footer-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    background: linear-gradient(to bottom, #0a0e1a, #0f1729);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, #0a0e1a, transparent);
    pointer-events: none;
    z-index: 1;
}

.form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://pixel-perfect-clone-9875.lovable.app/assets/hero-bg-CA9WkG7_.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: #d1d5db;
}

.highlight-text {
    color: #fdea35;
    font-weight: 700;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-container {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.invalid-feedback {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
}

.error-field {
    font-size: 13px;
    margin-top: 5px;
}

.form-group input:focus {
    outline: none;
    border-color: #fdea35;
    background: rgba(15, 23, 42, 0.9);
}

.form-group input::placeholder {
    color: #6b7280;
}

.form-submit {
    background: #fdea35;
    color: #0a0e1a;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    animation: glow 1.5s ease-in-out infinite;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

.form-submit:hover {
    background: #f5a823;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 1),
        0 0 40px rgba(245, 158, 11, 0.8),
        0 0 50px rgba(245, 158, 11, 0.6);
    animation: none;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 1px;
}

.countdown-card {
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 25px;
}

.old-price-card {
    font-size: 24px;
    color: #6b7280;
    text-decoration: line-through;
    margin-right: 15px;
}

.current-price-card {
    font-size: 56px;
    font-weight: 700;
    color: #fdea35;
}

.warning-card {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    color: #fdea35;
    font-size: 14px;
    margin-bottom: 30px;
}

.includes-section {
    margin-bottom: 30px;
}

.includes-title {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.5;
}

.includes-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-button-card {
    background: #fdea35;
    color: #0a0e1a;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    animation: glow 1.5s ease-in-out infinite;
}

.cta-button-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

.cta-button-card:hover {
    background: #f5a823;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 1),
        0 0 40px rgba(245, 158, 11, 0.8),
        0 0 50px rgba(245, 158, 11, 0.6);
    animation: none;
}

.guarantees {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
}

.guarantee-item span {
    color: #10b981;
    font-size: 16px;
}

.final-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.final-text {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 10px;
    }

    .hero-right {
        order: 2;
    }

    .hero-left {
        order: 1;
    }

    .hero-image {
        max-width: 400px;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .instructor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instructor-right {
        padding-left: 0;
    }

    .instructor-stats {
        grid-template-columns: 1fr;
    }

    /* Disable parallax on tablets and mobile for better performance */
    .hero-section,
    .form-section::after {
        background-attachment: scroll !important;
    }
}

@media (max-width: 768px) {

    .scroll-indicator {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .hero-left {
        justify-items: center;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 28px;
        text-align: justify;
    }

    .hero-description {
        font-size: 14px;
    }

    .countdown {
        gap: 5px;
        justify-content: center;
        margin-bottom: 5px;
    }

    .countdown-item {
        min-width: 45px;
        padding: 10px 12px;
    }

    .countdown-number {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .current-price-card {
        font-size: 42px;
    }

    .final-text {
        font-size: 28px;
    }

    .guarantees {
        flex-direction: column;
        align-items: center;
    }

    .benefits-title {
        font-size: 32px;
    }

    .benefits-description {
        font-size: 16px;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-footer-text {
        font-size: 24px;
    }

    .instructor-title {
        font-size: 32px;
    }

    .instructor-description {
        font-size: 16px;
    }

    .instructor-badge {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px;
    }

    .guarantee-card {
        padding: 40px 30px;
    }

    .guarantee-title {
        font-size: 28px;
    }

    .guarantee-description {
        font-size: 16px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-copyright {
        font-size: 14px;
    }

    .footer-disclaimer {
        font-size: 12px;
    }

    /* Ensure sections are visible on mobile */
    .hero-section,
    .form-section {
        opacity: 1 !important;
    }
}

/* Color del texto en el dropdown del país */
.iti__selected-flag {
    color: #000000 !important;
}

/* Color del texto en la lista de países */
.iti__country-list {
    color: #000000 !important;
}

/* Opcional: cambiar el fondo del input si es oscuro */
#phone {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.iti {
    width: 100%;
}

.para-quien-container {
    max-width: 1200px;
    margin: 0 auto;
}

.para-quien-title {
    text-align: center;
    margin-bottom: 60px;
}

.para-quien-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.para-quien-title .highlight {
    color: #fdea35;
}

.para-quien-checklist {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.para-quien-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #2ecc71;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.para-quien-item:hover {
    transform: translateX(10px);
    background: rgba(46, 204, 113, 0.1);
    border-color: #00f508;
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.2);
}

.para-quien-check {
    font-size: 2rem;
    color: #00f508;
    flex-shrink: 0;
    font-weight: bold;
}

.para-quien-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .para-quien-title h2 {
        font-size: 1.8rem;
    }

    .para-quien-item {
        padding: 20px;
        gap: 15px;
    }

    .para-quien-text {
        font-size: 1rem;
    }

    .para-quien-check {
        font-size: 1.5rem;
    }
}


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

.diferente-title {
    text-align: center;
    margin-bottom: 30px;
}

.diferente-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.diferente-headline {
    text-align: center;
    margin-bottom: 40px;
}

.diferente-headline h3 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
}

.diferente-headline .desafio-text {
    color: #fdea35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.diferente-content {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 252, 60, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.diferente-texto {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: center;
}

.diferente-texto strong {
    color: #fdea35;
    font-weight: 700;
}

.diferente-promesa {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.diferente-promesa strong {
    color: #00f508;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .diferente-title h2 {
        font-size: 1.6rem;
    }

    .diferente-headline h3 {
        font-size: 2rem;
    }

    .diferente-content {
        padding: 30px 20px;
    }

    .diferente-texto {
        font-size: 1.1rem;
    }

    .diferente-promesa {
        font-size: 1.05rem;
    }
}