/* Estilos para la sección de requerimientos */
.req-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.req-title {
    text-align: center;
    font-size: 32px;
    color: #4f2987;
    margin-bottom: 15px;
    font-weight: 700;
    width: 100%; /* Añadir esta línea */
}

.req-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    width: 100%; /* Añadir esta línea también */
}
.req-column {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.041);
    transition: all 0.3s ease;
}

.req-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Estilos específicos para cada columna */
.left-column {
    background: linear-gradient(135deg, #4f298791 0%, #5c23b193 100%);
    color: #fff;
}

.right-column {
    background: linear-gradient(135deg, #bd8222 0%, #eeab4d 100%);
    color: #fff;
}

.center-column {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    flex: 1.2;
}
.center-column h2 {
    color: #fff;
}

.center-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.center-column:hover img {
    transform: scale(1.05);
}

.req-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
}

.req-overlay h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
}

.req-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Estilos para los encabezados */
.req-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 15px;
}

.req-header i {
    font-size: 30px;
    margin-right: 15px;
}

.req-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Estilos para las listas */
.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.req-list li:last-child {
    border-bottom: none;
}

.req-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fff;
}

/* Responsivo */
@media (max-width: 992px) {
    .req-container {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .req-container {
        flex-direction: column;
    }
    
    .center-column {
        order: -1;
        height: 300px;
    }
    
    .req-column {
        min-width: 100%;
    }
}