/* Fondo principal */
    .historia-hero {
        background: url('/image/slade.png') center/cover no-repeat;
        height: 100vh;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    /* Capa oscura */
    .historia-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
    }

    /* Contenido */
    .historia-content {
        position: relative;
        z-index: 5;
        color: white;
        max-width: 900px;
        text-align: center;
    }

    /* Subtítulo */
    .historia-sub {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    /* Título principal */
    .historia-title {
        font-size: 4rem;
        font-weight: 900;
        line-height: 1.1;
        text-transform: uppercase;
    }

    /* Texto pequeño */
    .historia-text {
        margin-top: 25px;
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    /* RESPONSIVO */
    @media (max-width: 768px) {
        .historia-title {
            font-size: 2.8rem;
        }
        .historia-sub {
            font-size: 1.2rem;
        }
        .historia-text {
            font-size: 1rem;
        }
        .historia-hero {
            height: 90vh;
        }
    }



    .historia-section-2 {
        background: url('/image/slade.png') center/cover no-repeat;
        padding: 120px 20px;
        text-align: center;
        position: relative;
    }

    .historia-section-2::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

    .historia-2-content {
        position: relative;
        z-index: 5;
        color: white;
        max-width: 950px;
        margin: auto;
        line-height: 2.1rem;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .historia-2-title {
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 40px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    @media (max-width: 768px) {
        .historia-section-2 {
            padding: 90px 15px;
        }
        .historia-2-title {
            font-size: 2.2rem;
        }
        .historia-2-content {
            font-size: 1rem;
            line-height: 1.8rem;
        }
    }



    /* Sección completa */
.historia-cultura {
    position: relative;
    background: url('/image/slade.png') center/cover no-repeat;
    padding: 130px 0;
    text-align: center;
}

/* Oscurecido elegante */
.historia-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* Contenedor */
.historia-content {
    position: relative;
    z-index: 5;
}

/* Títulos */
.historia-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

/* Párrafos */
.historia-text {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 2.2rem;
}