/* ==========================================================================
   B) HERO
   ========================================================================== */
.hero {
    height: 100dvh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 8vh;
    overflow: hidden;
    background-color: var(--cafe-oscuro);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/frontal negocio inicio_foto.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.15);
    /* Aumentamos el tamaño para el efecto de profundidad */
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--blanco-calido);
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero .drama-text {
    display: block;
    font-size: clamp(3.5rem, 7vw, 6rem);
    color: var(--beige-crema);
    margin-bottom: 1.5rem;
    line-height: 0.9;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}