/* Estilos Footer */
.footer {
    background-color: #7a0c0c;
    color: #ffffff;
    padding: 40px 20px 20px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    align-items: flex-start;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffd700;
    /* Amarillo dorado */
}

.footer-section a {
    color: #ffd700;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #dddddd;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}