/* ============================================================
   BURGOCAR LANDING CORE — Video Section Styles
   BEM + CSS Custom Properties
   ============================================================ */
:root {
    --blc-video-bg: #ffffff;
    --blc-video-primary: #3D7A6B; /* Color del subtítulo (oscuro) */
    --blc-video-dark: #9AC123; /* Color del título principal (verde claro) */
    --blc-video-list-title: #152d24; /* Color independiente para titulos de lista */
    --blc-video-accent: #d4a373;
    --blc-video-text: #666666; /* Color independiente para descripcion de lista */
    --blc-video-font: 'Catamaran', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --blc-badge-font: 'Google Sans', -apple-system, sans-serif;
    --blc-title-font: 'Bitter', serif;
}

.blc-video-section {
    padding: 80px 20px;
    background-color: var(--blc-video-bg);
    font-family: var(--blc-video-font);
}

.blc-video-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabecera */
.blc-video-section__header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.blc-video-section__badge {
    display: inline-block;
    color: var(--blc-video-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: var(--blc-badge-font);
}
.blc-video-section__title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--blc-video-dark);
    margin: 0;
    line-height: 1.1;
    font-family: var(--blc-title-font);
}

/* Grid Layout */
.blc-video-section__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}
.blc-video-section__col-video,
.blc-video-section__col-text {
    flex: 1 1 45%;
    min-width: 300px;
}
.blc-video-section__grid--reverse {
    flex-direction: row-reverse;
}

/* Video Wrapper */
.blc-video-section__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.blc-video-section__thumb {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease;
}
.blc-video-section__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(21, 45, 36, 0.3);
    z-index: 11;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.blc-video-section__play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 75px; height: 75px;
    background-color: var(--blc-video-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 12;
    box-shadow: 0 0 0 0 rgba(4, 101, 55, 0.6);
    animation: blcPulse 2s infinite;
    border: none;
    transition: transform 0.3s ease, opacity 0.4s ease, background-color 0.3s ease;
}
.blc-video-section__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: var(--blc-video-accent);
}
.blc-video-section__play-icon {
    width: 26px; height: 26px;
    fill: currentColor;
    margin-left: 5px; /* Visual center adjustment for play triangle */
}

@keyframes blcPulse {
    0% { box-shadow: 0 0 0 0 rgba(4, 101, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(4, 101, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(4, 101, 55, 0); }
}

.blc-video-section__iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
    z-index: 5; /* Starts below thumb */
}
.blc-video-section__player.is-playing .blc-video-section__thumb,
.blc-video-section__player.is-playing .blc-video-section__overlay,
.blc-video-section__player.is-playing .blc-video-section__play-btn {
    opacity: 0;
    pointer-events: none;
}
.blc-video-section__player.is-playing .blc-video-section__iframe {
    z-index: 20; /* Move above when playing */
}

/* Info Column */
.blc-video-section__list {
    list-style: none;
    padding: 0; margin: 0 0 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.blc-video-section__list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.blc-video-section__list-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    color: var(--blc-video-primary);
    margin-top: 3px;
}
.blc-video-section__list-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blc-video-list-title);
    margin-bottom: 5px;
}
.blc-video-section__list-desc {
    font-size: 1rem;
    color: var(--blc-video-text);
    line-height: 1.6;
    margin: 0;
}

.blc-video-section__btn {
    display: inline-block;
    background-color: var(--blc-video-dark);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.blc-video-section__btn:hover {
    background-color: var(--blc-video-primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .blc-video-section__grid {
        flex-direction: column;
        gap: 40px;
    }
    .blc-video-section__grid--reverse {
        flex-direction: column;
    }
    .blc-video-section__title {
        font-size: 2.2rem;
    }
    .blc-video-section {
        padding: 60px 15px;
    }
}
