/* ==========================================
   CSS ESTILOS: FERGA Services Landing Page
   Estilo Premium, Modo Oscuro con Acentos Dorados
   ========================================== */

/* Variables y Diseño de Colores */
:root {
    /* Paleta Principal */
    --color-bg: #0b0c0c;           /* Fondo ultra oscuro */
    --color-surface-base: #141616; /* Color base de tarjetas */
    --color-surface-hover: #1e2121;/* Tarjetas al pasar el mouse */
    --color-gold: #d9b34b;         /* Dorado del logo */
    --color-gold-hover: #e2c067;   /* Dorado brillante */
    --color-gold-glow: rgba(217, 179, 75, 0.15);
    --color-dark: #232424;         /* Gris carbón del logo */
    
    /* Paleta de Texto */
    --color-text-primary: #f0f0f0;   /* Blanco suave */
    --color-text-secondary: #a0a5a5; /* Gris medio */
    --color-text-muted: #6e7272;     /* Gris oscuro */
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, #d9b34b 0%, #ffd700 100%);
    --gradient-dark-card: linear-gradient(145deg, #181a1a 0%, #0e1010 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(217, 179, 75, 0.08) 0%, transparent 60%);
    
    /* Sombras y Bordes */
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 25px rgba(217, 179, 75, 0.2);
    --border-premium: 1px solid rgba(217, 179, 75, 0.1);
    --border-soft: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Fuentes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espaciados */
    --nav-height: 80px;
    --container-width: 1200px;
}

/* Reset y Estilos Globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografía */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

p {
    color: var(--color-text-secondary);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Textos Especiales */
.gold-text {
    color: var(--color-gold);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botones Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-bg);
    border: none;
    box-shadow: 0 4px 15px rgba(217, 179, 75, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 179, 75, 0.5);
    background: linear-gradient(135deg, #e2c067 0%, #ffe04d 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: var(--border-soft);
    margin-left: 12px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: var(--border-premium);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--color-gold);
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    color: var(--color-gold-hover);
    border-bottom-color: var(--color-gold-hover);
    padding-left: 4px;
}

.block-btn {
    width: 100%;
}

/* Header & Nav */
.header {
    height: var(--nav-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(11, 12, 12, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-soft);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-svg {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tagline-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(217, 179, 75, 0.1);
    border: var(--border-premium);
    border-radius: 50px;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    margin-bottom: 60px;
    display: flex;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: var(--border-soft);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Dashboard Mockup en Hero */
.hero-visual {
    position: relative;
}

.card-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background: radial-gradient(circle, rgba(217,179,75,0.06) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

.dashboard-mockup {
    background: var(--gradient-dark-card);
    border: var(--border-soft);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.mockup-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 14px 20px;
    border-bottom: var(--border-soft);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-header .red { background-color: #ff5f56; }
.mockup-header .yellow { background-color: #ffbd2e; }
.mockup-header .green { background-color: #27c93f; }

.mockup-title {
    margin-left: 10px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.mockup-body {
    padding: 24px;
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-soft);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.m-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.m-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 4px 0;
}

.m-trend {
    font-size: 0.75rem;
    font-weight: 600;
}

.m-trend.positive {
    color: #27c93f;
}

.chart-container {
    background: rgba(0, 0, 0, 0.2);
    border: var(--border-soft);
    border-radius: 8px;
    padding: 20px;
}

.chart-svg {
    width: 100%;
    height: 100px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* Secciones Comunes */
.services, .cases, .pricing, .hybrid-program, .contact {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

/* Servicios Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gradient-dark-card);
    border: var(--border-soft);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--x, 0px) var(--y, 0px), rgba(217, 179, 75, 0.08), transparent 80%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 179, 75, 0.2);
    box-shadow: var(--shadow-premium);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(217, 179, 75, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Casos de Éxito: Grid de 5 Columnas (Estilo exacto de Netlify) */
.video-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas exactas */
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.video-card-compact {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    aspect-ratio: 9/16; /* Formato vertical exacto de smartphone */
    border: var(--border-soft);
    width: 100%;
    max-width: 220px; /* Ancho máximo controlado para evitar que se estire */
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.video-card-compact:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(217, 179, 75, 0.45);
    box-shadow: var(--shadow-gold);
}

.video-card-compact .video-card-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    position: relative;
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.card-top-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.card-bottom-row {
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.video-niche-tag {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-platform-icon {
    width: 26px;
    height: 26px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.video-platform-icon svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.video-views-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.play-svg-small {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.video-card-compact:hover .video-views-badge {
    color: var(--color-gold);
}

/* Nube de Nichos Adicionales */
.niches-cloud-wrapper {
    text-align: center;
    margin: 50px auto 20px;
    max-width: 800px;
    padding-top: 40px;
    border-top: var(--border-soft);
}

.niches-cloud-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.niches-cloud-wrapper p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.niches-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.n-tag {
    background: rgba(217, 179, 75, 0.06);
    border: var(--border-premium);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.n-tag:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Modales e Iframes de Video (Diseño Mejorado y No Excesivamente Grande) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 12, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 360px; /* Ancho optimizado para visualizadores verticales */
    height: 80vh;
    max-height: 640px; /* Altura máxima controlada para que no sea inmenso en monitores */
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-premium);
    box-shadow: var(--shadow-gold);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes modalFadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 2rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modificación para el plugin de Facebook en iframe */
.fb-video-container iframe {
    height: 100% !important;
    width: 100% !important;
}

/* Botón de Fallback en el Modal */
.modal-fallback-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 1002;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-fallback-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
    filter: brightness(1.1);
}

/* Planes de Precios */
.pricing-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217,179,75,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.price-card {
    background: var(--color-surface-base);
    border: var(--border-soft);
    border-radius: 12px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
}

.price-card.popular {
    background: var(--gradient-dark-card);
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 40px -10px rgba(217, 179, 75, 0.15);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--color-bg);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-header {
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.price-amount {
    display: flex;
    align-items: baseline;
}

.price-amount .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.price-amount .amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-card.popular .price-amount .amount {
    color: var(--color-gold);
}

.price-amount .period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.card-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.card-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-features li.disabled {
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.card-btn {
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: 40px;
}

/* Programa Acompañamiento 4 Meses */
.hybrid-program {
    background: rgba(255, 255, 255, 0.01);
    border-top: var(--border-soft);
    border-bottom: var(--border-soft);
}

.program-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.program-tag {
    display: inline-block;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.hybrid-program h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.program-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.timeline-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-step {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(217, 179, 75, 0.08);
    border: var(--border-premium);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.program-card {
    background: var(--gradient-dark-card);
    border: var(--border-soft);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: var(--border-soft);
}

.program-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.program-details-list li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.program-details-list li::before {
    content: '•';
    color: var(--color-gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -6px;
}

.program-pricing-box {
    background: rgba(0, 0, 0, 0.3);
    border: var(--border-soft);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.price-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin: 8px 0;
}

.price-value .tax-tag {
    font-size: 1rem;
    font-weight: 500;
}

.payment-options {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* Contacto y Formulario */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background-color: #20ba5a;
}

.whatsapp-link svg {
    width: 24px;
    height: 24px;
}

.contact-form-wrapper {
    background: var(--gradient-dark-card);
    border: var(--border-soft);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input, .form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: var(--border-soft);
    border-radius: 6px;
    padding: 12px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(217, 179, 75, 0.1);
}

.form-feedback {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 10px;
}

.form-feedback.success {
    color: #27c93f;
}

.form-feedback.error {
    color: #ff5f56;
}

/* Footer */
.footer {
    border-top: var(--border-soft);
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .program-wrapper, .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .video-grid-5 {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en tablet */
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none; /* Mobile menu toggled via JS */
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--color-bg);
        border-bottom: var(--border-soft);
        flex-direction: column;
        padding: 24px 0;
        gap: 20px;
        z-index: 99;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-btn {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .video-grid-5 {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .video-grid-5 {
        grid-template-columns: 1fr; /* 1 columna en teléfonos pequeños */
    }
}
