﻿/* ============================================================
   bandstrip.css — Bandas full-bleed con foto-placeholder + frase
   Patrón clave de Primer Plano para romper ritmo entre secciones
   ============================================================ */

.bandstrip {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 56px;
    overflow: hidden;
    isolation: isolate;
    color: var(--text-white);
}

.bandstrip::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-color: #1a1a1a;
}

.bandstrip::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, rgba(0,0,0,0.70) 0%, rgba(10,27,51,0.75) 100%);
}

.bandstrip__inner {
    max-width: 980px;
    margin: 0 auto;
}

.bandstrip__text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-white);
}

.bandstrip__text strong {
    color: var(--text-white);
    border-bottom: 3px solid var(--text-white);
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .bandstrip { min-height: 220px; padding: 56px 24px; }
}


