/* =========================================
   TONY ROBBINS STATS SECTION (DEFINITIVO)
   ========================================= */

.tony-stats-section {
    background-color: #ffffff;
    color: #000;
    font-family: 'Inter', sans-serif;
    padding: 40px 20px;
    overflow: hidden;
}

.stats-container {
    max-width: 500px;
    /* Ancho inicial móvil */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* --- TIPOGRAFÍA --- */
.stats-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
    color: #000;
}

.stats-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

/* --- GRID DE ESTADÍSTICAS --- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    /* Números gigantes */
    font-weight: 800;
    letter-spacing: -0.05em;
    /* Kerning negativo agresivo */
    color: #000;
    line-height: 1.0;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
    font-weight: 500;
}

/* --- BOTÓN CTA --- */
.stats-pill-btn {
    display: inline-block;
    background-color: #f4f4f4;
    color: #000;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.stats-pill-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* --- TARJETA DE VIDEO (INTERACTIVA) --- */
.vertical-video-card {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    /* Animación de Zoom Suave */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vertical-video-card:hover .video-poster {
    transform: scale(1.05);
    /* Efecto Zoom al pasar mouse */
}

/* --- BOTÓN WATCH (GLASSMORPHISM) --- */
.floating-watch-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
}

.glass-play-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.glass-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.glass-play-btn svg {
    width: 14px;
    height: 14px;
    fill: white;
}

/* --- SELLO DE MARCA (BRANDING) --- */
.video-brand-stamp {
    position: absolute;
    bottom: 40px;
    left: 30px;
    z-index: 10;
    text-align: left;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.brand-eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: white;
    margin: 0;
    text-transform: uppercase;
    font-style: italic;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.brand-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 2px;
    font-style: normal;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}


/* --- TESTIMONIO --- */
.video-testimonial {
    margin-top: 25px;
    padding-left: 10px;
}

.video-testimonial p {
    font-weight: 700;
    font-size: 1.05rem;
    color: #000;
    margin-bottom: 5px;
}

.video-testimonial cite {
    font-style: normal;
    color: #666;
    font-size: 0.9rem;
}


/* =========================================
   DESKTOP (LAYOUT 2 COLUMNAS)
   Min-width: 992px
   ========================================= */
@media (min-width: 992px) {
    .stats-container {
        max-width: 1200px;
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .content-side {
        flex: 1;
    }

    .media-side {
        flex: 1;
    }

    .vertical-video-card {
        height: 650px;
    }

    /* Más alto e imponente en desktop */
}

/* =========================================
   MÓVIL PEQUEÑO (Ajuste de lectura)
   ========================================= */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        border-bottom: none;
    }

    .stat-number {
        font-size: 4rem;
    }

    .brand-title {
        font-size: 2.5rem;
    }
}