/* ======================================================
   HISPASEEDS BLACK - HERO PREMIUM (V2.0 OPTIMIZADO)
   ====================================================== */

.luxe-home-hero {
    position: relative;
    overflow: hidden;
    min-height: 85vh; 
    display: flex;
    align-items: center;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
        var(--luxe-hero-image) 70% center / cover no-repeat !important;
}

.luxe-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%) !important;
    z-index: 1;
}

.luxe-home-hero__content {
    position: relative;
    z-index: 2;
    padding: 90px 40px 100px 56px !important; 
    max-width: 820px;
}

/* 1. KICKER: Look Editorial de Lujo */
.luxe-home-hero__kicker {
    display: inline-flex !important;
    width: fit-content !important;
    white-space: nowrap !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 22px !important;
    color: #b5935a !important;
    font-size: 1rem !important; 
    font-weight: 900 !important; 
    letter-spacing: 0.4em !important; /* Espaciado premium */
    text-transform: uppercase !important;
    opacity: 0.9;
}

.luxe-home-hero__kicker::before,
.luxe-home-hero__kicker::after {
    content: "" !important;
    width: 45px !important;
    height: 1.5px !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.luxe-home-hero__kicker::before { background: linear-gradient(to left, #b5935a, transparent) !important; }
.luxe-home-hero__kicker::after { background: linear-gradient(to right, #b5935a, transparent) !important; }

/* 2. TITULAR: Impacto Visual con Degradado MetÃ¡lico */
.luxe-home-hero__content h1 {
    font-family: "Playfair Display", serif !important;
    font-size: clamp(3.5rem, 6vw, 5.5rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.02em !important;
    /* Efecto de Oro Suave */
    background: linear-gradient(180deg, #f5f1e8 0%, #d3b369 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. DESCRIPCIÃ“N: Legibilidad MÃ¡xima */
.luxe-home-hero__content p {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8) !important;
    max-width: 600px !important;
    margin-bottom: 40px !important;
}

/* 4. BOTONES: Glassmorphism y Reactividad */
.luxe-home-hero__actions .luxe-btn {
    border: 1px solid rgba(181, 147, 90, 0.4) !important;
    background: rgba(0,0,0,0.3) !important;
    backdrop-filter: blur(8px);
    color: #b5935a !important;
    padding: 16px 35px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxe-home-hero__actions .luxe-btn:hover {
    background: #b5935a !important;
    color: #0b0b0b !important;
    box-shadow: 0 10px 30px rgba(181, 147, 90, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .luxe-home-hero__content { padding: 80px 20px 40px !important; text-align: center; }
    .luxe-home-hero__kicker { 
        font-size: 0.85rem !important; 
        white-space: normal !important;
        letter-spacing: 0.25em !important;
    } 
    .luxe-home-hero__content h1 { font-size: 3rem !important; }
}