/* Estilos generales */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
}

/* Contenedor principal */
.section-container {
    height: 100vh;
    width: 100%;
    padding: 60px 20px 0;
    color: #fff;
    text-align: center;
    background: url('/inequivoco/img/fotoinicioacercade.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Superposición oscura */
.section-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) !important;
    z-index: 0;
}

/* Elementos sobre la superposición */
.section-container>* {
    position: relative;
    z-index: 1;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de sombra para mejorar la legibilidad */
.section-title,
.section-subtitle,
p,
.custom-list li {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Título principal */
.section-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #c9a773;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Subtítulos */
.section-subtitle {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 15px;
    color: #c9a773;
}

/* Párrafos */
p {
    font-size: 17px;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Lista personalizada */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    font-size: 18px;
    padding: 5px 0;
    color: #fff;
}