/* ==================================================
   HISPASEEDS BLACK
   Archivo: assets/css/components/hero-premium.css
   Propósito: Fuente única de verdad para el hero de home.
   ================================================== */

.luxe-home-hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    min-height: calc(92vh - 92px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.16) 0%, rgba(8, 8, 8, 0.28) 100%),
        radial-gradient(circle at 82% 24%, rgba(200, 161, 90, 0.18), transparent 30%),
        var(--luxe-hero-image) 70% center / cover no-repeat;
    border-bottom: 1px solid rgba(198, 168, 90, 0.16);
}

.luxe-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.62) 0%,
        rgba(5, 5, 5, 0.38) 24%,
        rgba(5, 5, 5, 0.12) 52%,
        rgba(5, 5, 5, 0.16) 100%
    );
    pointer-events: none;
}

.luxe-home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.14) 100%);
    pointer-events: none;
}

.luxe-home-hero .luxe-container {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 1360px);
}

.luxe-home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    min-height: calc(92vh - 92px);
}

.luxe-home-hero__content {
    width: 100%;
    max-width: 820px;
    padding: 58px 40px 58px 42px;
    margin-right: auto;
    text-align: left;
}

.luxe-home-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: rgba(245, 241, 232, 0.88);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.luxe-home-hero__kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: rgba(198, 168, 90, 0.72);
    flex: 0 0 auto;
}

.luxe-home-hero__content h1 {
    margin: 0 0 20px;
    max-width: 13.6ch;
    font-size: clamp(3rem, 4.7vw, 5.15rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.94);
    text-wrap: balance;
}

.luxe-home-hero__content p {
    max-width: 34ch;
    margin: 0 0 28px;
    font-size: clamp(1rem, 1.18vw, 1.08rem);
    line-height: 1.62;
    color: rgba(230, 223, 210, 0.96);
}

.luxe-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.luxe-home-hero__actions .luxe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 1px solid rgba(198, 168, 90, 0.82);
    border-radius: 12px;
    background: rgba(0,0,0,0.08);
    color: var(--luxe-gold);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.luxe-home-hero__actions .luxe-btn:hover,
.luxe-home-hero__actions .luxe-btn:focus-visible {
    transform: translateY(-2px);
    color: var(--luxe-gold-soft);
    border-color: var(--luxe-gold-soft);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1180px) {
    .luxe-home-hero {
        background-position: 73% center;
    }

    .luxe-home-hero .luxe-container {
        width: min(100% - 28px, 1180px);
    }

    .luxe-home-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    }

    .luxe-home-hero__content {
        max-width: 760px;
        padding: 52px 28px 52px 24px;
    }

    .luxe-home-hero__content h1 {
        max-width: 13.1ch;
        font-size: clamp(2.8rem, 5vw, 4.8rem);
    }
}

@media (max-width: 991px) {
    .luxe-home-hero,
    .luxe-home-hero__grid {
        min-height: calc(82vh - 76px);
    }

    .luxe-home-hero {
        background:
            linear-gradient(180deg, rgba(8, 8, 8, 0.24) 0%, rgba(8, 8, 8, 0.38) 100%),
            radial-gradient(circle at 82% 24%, rgba(200, 161, 90, 0.14), transparent 30%),
            var(--luxe-hero-image) 74% center / cover no-repeat;
    }

    .luxe-home-hero::before {
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.34) 100%);
    }

    .luxe-home-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .luxe-home-hero__content {
        max-width: 760px;
        padding: 56px 18px 58px 18px;
    }

    .luxe-home-hero__content h1 {
        max-width: 13.2ch;
        font-size: clamp(2.6rem, 6.4vw, 4.1rem);
        line-height: 1;
    }

    .luxe-home-hero__content p {
        max-width: 36ch;
    }
}

@media (max-width: 767px) {
    .luxe-home-hero,
    .luxe-home-hero__grid {
        min-height: calc(76vh - 72px);
    }

    .luxe-home-hero {
        background:
            linear-gradient(180deg, rgba(8, 8, 8, 0.32) 0%, rgba(8, 8, 8, 0.46) 100%),
            radial-gradient(circle at 80% 18%, rgba(200, 161, 90, 0.12), transparent 26%),
            var(--luxe-hero-image) 78% center / cover no-repeat;
        border-bottom-width: 0;
    }

    .luxe-home-hero__content {
        max-width: 100%;
        padding: 46px 10px 50px 10px;
    }

    .luxe-home-hero__kicker {
        letter-spacing: 0.16em;
    }

    .luxe-home-hero__content h1 {
        max-width: 11.5ch;
        font-size: clamp(2.35rem, 10vw, 3.55rem);
        line-height: 1.01;
        letter-spacing: -0.025em;
    }

    .luxe-home-hero__content p {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .luxe-home-hero__actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .luxe-home-hero__actions > *,
    .luxe-home-hero__actions .luxe-btn {
        width: 100%;
    }

    .luxe-home-hero__actions .luxe-btn {
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .luxe-home-hero__content {
        padding-left: 12px;
        padding-right: 12px;
    }
}


/* ==================================================
   HERO V2.2 · offsets y CTA más sólido
   ================================================== */

.luxe-home-hero__content{
    padding-left: 56px;
}

.luxe-home-hero__actions .luxe-btn{
    min-height: 58px;
    padding: 0 32px;
    border-radius: 10px;
    letter-spacing: 0.07em;
}

@media (max-width: 1180px){
    .luxe-home-hero__content{
        padding-left: 42px;
    }
}

@media (max-width: 991px){
    .luxe-home-hero__content{
        padding-left: 26px;
        padding-right: 20px;
    }
}

@media (max-width: 767px){
    .luxe-home-hero__content{
        padding-left: 18px;
        padding-right: 18px;
    }

    .luxe-home-hero__actions .luxe-btn{
        min-height: 54px;
        border-radius: 10px;
    }
}
