/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B46C1;
    --secondary-color: #9F7AEA;
    --accent-color: #F6AD55;
    --dark-purple: #44337A;
    --text-dark: #2D3748;
    --text-light: #718096;
    --background: #F7FAFC;
    --white: #FFFFFF;
    --success: #48BB78;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient);
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.5)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>'), var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(68, 51, 122, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #ED8936;
}

.cta-button.pulse {
    animation: pulse 2s infinite, fadeInUp 1s ease 0.6s both;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.9s both;
}

.trust-badges span {
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--background);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
    border-color: var(--secondary-color);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: bold;
    font-style: normal !important;
}

/* Urgency Section */
.urgency {
    padding: 80px 20px;
    background: var(--gradient);
    color: var(--white);
}

.urgency-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.urgency-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-box > p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.bonus-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

.bonus-list li {
    font-size: 1.2rem;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.urgency-text {
    font-size: 1.5rem;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

#spots-left {
    color: var(--accent-color);
    font-size: 2rem;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: var(--white);
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--background);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(159, 122, 234, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

/* Estilos para intl-tel-input */
.iti {
    width: 100%;
}

.iti__flag-container {
    border-radius: 10px 0 0 10px;
}

.iti__selected-flag {
    border-radius: 10px 0 0 10px;
    padding: 0 15px;
    background-color: #F7FAFC;
}

.iti__country-list {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
}

.iti__country:hover {
    background-color: rgba(159, 122, 234, 0.1);
}

.iti__selected-country {
    background-color: rgba(159, 122, 234, 0.2);
}

#telefono {
    padding-left: 90px !important;
}

.submit-button {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

.privacy-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 20px;
}

.success-message {
    max-width: 700px;
    margin: 50px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(72, 187, 120, 0.3);
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: var(--background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification Popup */
.social-proof-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(-400px);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease;
    opacity: 0;
    max-width: 350px;
    border-left: 4px solid var(--primary-color);
}

.social-proof-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-flag {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-content .name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.notification-content .action {
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-top: 2px;
}

.notification-content .time {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-top: 4px;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .social-proof-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        bottom: 10px;
        padding: 12px 15px;
    }
    
    .notification-flag {
        font-size: 1.5rem;
    }
    
    .notification-content .name {
        font-size: 0.85rem;
    }
    
    .notification-content .action {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }

    .urgency-box {
        padding: 30px 20px;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badges span {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .benefits-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .urgency-box h2 {
        font-size: 1.8rem;
    }

    .bonus-list li {
        font-size: 1rem;
    }
}