/* ------------------------------------------------ FOOTER ------------------------------------------------*/
/* Estilo general del footer */
footer {
    background-color: #FF7300;
    color: #fff;
    padding: 50px 40px 0 40px;
    font-family: 'Inter', sans-serif;
}

/* Contenedor principal del footer */
.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-center {
    height: 35vh;
    display: flex;
    flex-direction: column; /* Asegura que los elementos estén en columna */
    justify-content: space-around; /* Espaciado entre elementos */
    flex: 1;
}

.footer-center ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-center ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-center h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

/* Contenedor del botón */
.footer-button-container {
    margin-top: auto; /* Empuja el botón hacia abajo */
    display: flex;
    justify-content: center; /* Alinea el botón a la izquierda */
}

.footer-contact-button {
    width: 20vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Asegura separación con el contenido anterior */
}

.footer-contact-button i {
    margin-left: 10px;
}

.footer-contact-button:hover {
    background-color: #333;
}


/* Sección izquierda y central */
.footer-left,
.footer-center {
    flex: 0.3; /* Ocupa espacio proporcional */
    width: auto;
}

.footer-left h3,
.footer-center h3 {
    font-size: 15px;
    margin-bottom: 15px;
    border-top: 2px solid #fff;
    padding-top: 10px;
    text-transform: uppercase;
}

.footer-left ul,
.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-left li,
.footer-center li {
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}

.footer-left li:hover,
.footer-center li:hover {
    text-decoration: underline;
}

/* Sección derecha */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-right .footer-logo {
    max-width: 15vw;
    height: auto;
}

/* Botón de contacto */
.footer-contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0D1B26;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-contact-button i {
    margin-left: 10px;
    font-size: 20px;
}

.footer-contact-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Sección de derechos reservados */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0 10px 0;
}

/* Estilos responsivos */
@media (max-width: 436px) {
    footer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: justify;
        justify-content: center;
    }
    
    .footer-center {
        margin-top: 30px;
        margin-bottom: 20px;
        width: 75vw;
    }

    .footer-contact-button {
        width: 70vw;
    }

    .footer-right {
        align-items: center;
    }

    .footer-right .footer-logo {
        max-width: 75vw;
        height: auto;
    }
}