/* =========================================================
   LEGACY FX PRO - FUNNEL STYLES (Landing Page)
   File: assets/css/funnel.css
   ========================================================= */

/* --- LAYOUT DE PASOS --- */
.step-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(var(--blur-strength));
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 60px;
    transition: var(--transition-fast);
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Alternar orden en escritorio (Zig-Zag) */
.step-card.reverse { direction: rtl; }
.step-card.reverse > * { direction: ltr; }

/* --- NUMERACIÓN Y TEXTOS --- */
.step-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-color);
    opacity: 0.5;
    line-height: 1;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.step-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* --- VIDEO WRAPPER ESPECÍFICO --- */
.funnel-video-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.funnel-video-box video, 
.funnel-video-box iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

/* --- LISTAS DE REQUISITOS --- */
.checklist {
    list-style: none;
    margin: 20px 0;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.95rem;
}
.checklist li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

/* --- RESPONSIVE FUNNEL --- */
@media (max-width: 900px) {
    .step-card, .step-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr; /* Desactivar Zig-Zag en móvil */
        padding: 30px;
    }
    .step-number { font-size: 3rem; }
    .step-title { font-size: 1.8rem; }
}