/* Secciones alternadas con colores específicos */
.section:nth-of-type(even) {
    background-color: var(--color-section-2); /* #2E313D - Gris medio azulado */
}

.section:nth-of-type(odd) {
    background-color: var(--color-section-1); /* #191A1F - Gris oscuro azulado */
}

/* Asegurar que el contenido esté por encima del fondo */
.section .container {
    position: relative;
    z-index: 1;
}

/* Efecto sutil para transiciones entre secciones */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 229, 255, 0.2), transparent);
}

/* Ajuste para la sección hero que tiene un diseño especial con degradado */
.hero {
    background: linear-gradient(90deg, #2E313D, #191A1F);
    position: relative;
}

/* Efecto de superposición para la imagen de fondo del hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
    mix-blend-mode: overlay;
}

.valores-lista {
    margin-top: 1rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}
.valores-lista li {
    margin-bottom: 1rem;
}
