/* =========================================
   FACE MASTER SECTION - TONY ROBBINS EXACT MATCH
   ========================================= */

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

.face-container {
    max-width: 1200px;
    margin: 0 auto;

    /* VISTA MÓVIL */
    display: grid;
    /* CORRECCIÓN 1: Usamos Gap real para separar */
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "text"
        "image"
        "video";
}

/* ASIGNACIÓN DE ÁREAS */
.face-title {
    grid-area: title;
    margin-bottom: 10px;
}

.face-description {
    grid-area: text;
    margin-bottom: 20px;
}

.face-image-card {
    grid-area: image;
}

.face-video-card {
    grid-area: video;
}

/* --- TIPOGRAFÍA --- */
.face-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #000;
}

.face-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    max-width: 500px;
}

.face-pill-btn {
    display: inline-block;
    background-color: #f4f4f4;
    color: #000;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 10px;
}

/* --- TARJETAS (ESTILO FLOTANTE) --- */

/* 1. Tarjeta Superior (Imagen) */
.face-image-card {
    position: relative;
    width: 100%;
    height: 400px;
    /* Altura generosa */

    /* CORRECCIÓN 2: Bordes redondeados COMPLETOS */
    border-radius: 24px;
    overflow: hidden;
}

.face-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* CORRECCIÓN VISUAL: Enfocamos la cara (Top) para móvil */
    object-position: center 20%;
}

/* 2. Tarjeta Inferior (Video) */
.face-video-card {
    position: relative;
    width: 100%;
    height: 220px;

    /* CORRECCIÓN 3: Bordes redondeados COMPLETOS */
    border-radius: 24px;
    overflow: hidden;
    margin-top: 0;
}

/* BACKGROUND VIDEO STYLE */
.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Oscurecer para que resalte el botón */
    display: block;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* 3. Botón (Centrado INTERNO) */
.video-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.face-play-btn {
    /* Estilo Glassmorphism (Tony Style) */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.face-play-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.35);
}

.face-play-btn svg {
    width: 18px;
    height: 18px;
}


/* =========================================
   DESKTOP (Layout Lateral)
   ========================================= */
@media (min-width: 992px) {
    .face-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
        /* Remover logos del grid desktop */
        grid-template-areas:
            "image title"
            "image text"
            "image video";
    }

    /* Ajustes específicos de Desktop */
    .face-image-card {
        height: 100%;
        min-height: 600px;
        border-radius: 32px;
    }

    .face-video-card {
        height: 250px;
        border-radius: 32px;
        margin-top: auto;
    }

    /* En escritorio, la imagen debe enfocarse a la izquierda para dejar espacio visual */
    .face-img {
        object-position: center left;
    }
}