/* =========================================
   HERO SECTION
========================================= */

.vxm-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* =========================================
   BACKGROUND IMAGE
========================================= */

.vxm-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;

    /* 🔥 EFECTO CINEMATIC */
    transform: scale(1);
    animation: heroZoom 12s ease-in-out forwards;
}

/* =========================================
   OVERLAY (CLAVE PARA LEGIBILIDAD)
========================================= */

.vxm-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.75));
}

/* =========================================
   CONTENT
========================================= */

.vxm-hero__content {
    position: relative;
    z-index: 3;

    max-width: 800px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* =========================================
   TITLE
========================================= */

.vxm-hero__title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* =========================================
   SUBTITLE
========================================= */

.vxm-hero__subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;

    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
/* =========================================
   ACTION BUTTONS
========================================= */

.vxm-hero__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BOTONES BASE */

.vxm-btn {
    padding: 14px 28px;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* BOTÓN PRINCIPAL */

.vxm-btn--primary {
    background: var(--vxm-secondary);
    border: 2px solid #fff;
    color: var(--vxm-white);
}

.vxm-btn--primary:hover {
    background: var(--vxm-secondary-dark);
    transform: translateY(-2px);
}

/* BOTÓN SECUNDARIO */

.vxm-btn--secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.vxm-btn--secondary:hover {
    background: #fff;
    color: #000;
}

/* =========================================
   ANIMACIÓN ZOOM (CINEMATIC)
========================================= */

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .vxm-hero {
        height: 90vh;
        min-height: 500px;
    }

    .vxm-hero__content {
        padding-top: 80px;
        max-width: 100%;
    }

    .vxm-hero__title {
        font-size: 36px;
    }

    .vxm-hero__subtitle {
        font-size: 16px;
    }

    .vxm-btn {
        width: 100%;
        text-align: center;
    }

}