:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --accent: #f59e0b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--accent);
    color: #000;
    text-align: center;
    margin: 0 auto 40px;
}

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, #2e1065 0%, var(--bg-dark) 70%);
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-logo {
    height: 80px;
    width: auto;
}

.headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 900;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.cta-button.primary {
    background: var(--primary);
    color: white;
}

.cta-button.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-main);
}

.cta-button.secondary:hover {
    border-color: var(--text-main);
}

/* ======================================================
   🚀 NUEVO HERO EN DOS COLUMNAS (AGREGADO)
   ====================================================== */
.hero-two-columns {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.hero-asistente {
    max-width: 520px;
    width: 100%;
}

/* Responsive para el HERO */
@media (max-width: 900px) {
    .hero-two-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-asistente {
        max-width: 300px;
    }
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--bg-card);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    margin-top: -30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #334155;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
    z-index: 1;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.plan-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-plan {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s;
}

.btn-plan:hover {
    background: rgba(139, 92, 246, 0.1);
}

.btn-plan.primary {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-plan.primary:hover {
    background: var(--primary-hover);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    font-style: italic;
}

.testimonial-item p {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 60px 0;
    background: #000;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background: #111827;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    position: relative;
    transition: transform 0.3s;
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.bonus-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}
.small-info {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}
.small-info-global {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 20px;
}

@media (min-width: 500px) {
    .small-info-global {
        white-space: nowrap; /* Solo en pantallas medianas o grandes */
    }
}
/* Overlay oscuro del modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Caja interna */
.video-modal-content {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

/* Botón cerrar */
.video-modal-close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 34px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}
.video-modal-close:hover {
    color: #f87171;
}

/* Video */
.video-player {
    width: 100%;
    border-radius: 10px;
}
.video-demo-block {
    width: 100%;
    text-align: center;
    margin: 50px auto;
}

.video-demo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;
    margin: 50px 0;
}

.video-demo-btn {
    font-size: 1.1rem;
}
