.estatutos-banner {
    background-color: var(--main-color);
    padding: 40px 20px 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.estatutos-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centrado */
    flex-wrap: wrap;
    gap: 30px; /* Espacio aumentado */
}

.estatutos-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.estatutos-separator {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    opacity: 0.5;
}

.estatutos-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.estatutos-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

.estatutos-link svg {
    width: 12px;
    height: 18px;
    stroke: #ffffff;
    fill: none;
}

@media (max-width: 768px) {
    .estatutos-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .estatutos-separator {
        display: none; /* Ocultar separador en móvil si se apilan */
    }
}