/**
 * Estilos compartidos para secciones Hero
 * 
 * @package Grupo_Mexico
 */

/* Hero Section Base */
.hero {
    background-color: blue;
    position: relative;
    height: 34vw;
    max-height: 424px;
    min-height: 260px;
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px var(--shadow-primary);
}

.hero__background {
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__background-overlay {
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, #9B1C1C 0%, #B91C1C 35.36%, #7F1D1D 70.71%);
    border-radius: 12px;
}

.hero__background-overlay--transparent {
    opacity: 0.8;
}

.hero__container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 40px 64px;
    position: relative;
    z-index: 3;
}

.hero__content {
    color: var(--text-white);
    margin-right: 64px;
}

.hero__title {
    font-weight: 350;
    font-size: 48px;
    line-height: 36px;
    letter-spacing: 0;
    margin: 0 0 22px;
}

.hero__subtitle {
    font-weight: 400;
    font-style: Bold Italic;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 2px;
    margin: 0;
}

.hero__image {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hero__image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .hero__container {
        padding: 40px 30px;
    }

    .hero__content {
        margin-right: 0;
    }

    .hero__title {
        font-size: 24px;
        line-height: 24px;
        margin: 0 0 16px;
    }

    .hero__subtitle {
        font-size: 14px;
        line-height: 16px;
    }

    .hero__image {
        display: none;
    }
}





