/* =========================
   HERO BIENVENIDA COMPLETO
   ========================= */

.hero-welcome {
    position: relative;
    min-height: clamp(520px, 75vh, 820px);
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--line);
}

/* =========================
   IMAGEN RESPONSIVE (picture)
   ========================= */

.hero-welcome__picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-welcome__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =========================
   OVERLAY PREMIUM
   ========================= */

.hero-welcome__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.70) 45%,
            rgba(0,0,0,.30) 75%,
            rgba(0,0,0,.20) 100%),
        linear-gradient(to bottom,
            rgba(0,0,0,.45) 0%,
            rgba(0,0,0,.80) 100%);
}

/* =========================
   CONTENIDO
   ========================= */

.hero-welcome__content {
    position: relative;
    z-index: 2;
    padding: clamp(42px, 6vw, 100px) 0 120px 0;
}

.hero-welcome__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 28px;
}

/* =========================
   TITULO
   ========================= */

.hero-welcome__title {
    font-size: clamp(32px, 4.2vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 14px;
    max-width: 14ch;
    color: #fff;
}

/* =========================
   SUBTITULO
   ========================= */

.hero-welcome__subtitle {
    max-width: 54ch;
    color: rgba(255,255,255,.85);
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.7;
}

/* =========================
   BOTONES
   ========================= */

.hero-welcome__cta {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-gold {
    background: var(--red);
    color: #000;
    border: none;
    font-weight: 900;
    letter-spacing: .4px;
    padding: 12px 22px;
    transition: .2s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
}

/* =========================
   HIGHLIGHTS INFERIORES
   ========================= */

.hero-welcome__highlights {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(0,0,0,.60);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

.hero-welcome__highlights .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-welcome__pill {
    padding: 18px 14px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-size: 14px;
    color: rgba(255,255,255,.92);
    position: relative;
}

.hero-welcome__pill:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: var(--line);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .hero-welcome__grid {
        grid-template-columns: 1fr;
    }

    .hero-welcome__title {
        max-width: 18ch;
    }
}

@media (max-width: 768px) {

    .hero-welcome {
        min-height: 640px;
    }

    /* Overlay más oscuro en móvil para mejor legibilidad */
    .hero-welcome__overlay {
        background:
            linear-gradient(to bottom,
                rgba(0,0,0,.75) 0%,
                rgba(0,0,0,.88) 100%);
    }

    .hero-welcome__content {
        padding: 60px 0 140px 0;
    }

    .hero-welcome__title {
        font-size: clamp(28px, 7vw, 42px);
    }

    .hero-welcome__subtitle {
        font-size: 15px;
    }

    .hero-welcome__highlights .container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-welcome__pill:nth-child(2)::after {
        display: none;
    }

    .hero-welcome__pill:not(:last-child)::after {
        top: 14px;
        bottom: 14px;
    }
}

@media (max-width: 420px) {

    .hero-welcome__highlights .container {
        grid-template-columns: 1fr;
    }

    .hero-welcome__pill::after {
        display: none !important;
    }

    .hero-welcome__title {
        line-height: 1.1;
    }
}