/* ------------------ FOOTER ------------------ */
.footer {
    width: 100%;
    background-color: #031A46;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 50px;
}

/* Curva en la parte superior del footer */
.curva_footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: white;
    border-radius: 0 0 100% 100%;
}

/* Contenido del footer */
.contenido_footer_without_curve {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}
.contenido_footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    margin-top: 10%;
}

/* Logo del footer */
.footer-logo img {
    width: 100px;
}

.footer-logo p {
    font-size: 14px;
    margin-top: 5px;
}

/* Estilos para secciones de servicios y contacto */
.services, .contact {
    text-align: left;

}

h3 {
    margin-bottom: 10px;
}

ul {
    list-style: none;
    margin: 0; /* Elimina el margen por defecto */
    padding: 0;
}

ul li {
    margin-bottom: 5px;
}

/* Iconos y enlaces en contacto */
.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact i {
    font-size: 20px;
    color: white;
}

.contact a {
    color: white;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.services ul {
    list-style: none;
    margin: 0; /* Elimina el margen por defecto */
    padding: 0; /* Se asegura de que no haya relleno adicional */
}
.contact ul{
        list-style: none;
        margin: 0; /* Elimina el margen por defecto */
        padding: 0; /* Se asegura de que no haya relleno adicional */   
}
.contact {
    margin-top: -75px !important;
}


/* footer without curve */
.contact_without_curve p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_without_curve i {
    font-size: 20px;
    color: white;
}

.contact_without_curve a {
    color: white;
    text-decoration: none;
}

.contact_without_curve a:hover {
    text-decoration: underline;
}

.services_without_curve, .contact_without_curve {
    text-align: left;
    margin-top: 0px;
}

.services_without_curve ul {
    list-style: none;
    margin: 0; /* Elimina el margen por defecto */
    padding: 0; /* Se asegura de que no haya relleno adicional */
}
.contact_without_curve ul{
        list-style: none;
        margin: 0; /* Elimina el margen por defecto */
        padding: 0; /* Se asegura de que no haya relleno adicional */   
}

.contact_without_curve{
    margin-top: -75px !important;
}

/*Footer light*/

.contenido_footer_light {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}


.footer_light {
    width: 100%;
    background-color: #FFF;
    position: relative;
    color: #031A46;
    text-align: center;
}


.contact_light p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_light i {
    font-size: 20px;
    color: #031A46;
}

.contact_light a {
    color: #031A46;
    text-decoration: none;
}
@media(max-width: 768px){
    .contact_light p {
        display: block;
        align-items: center;
        gap: 10px;
    }
    
    .contact_light i {
        font-size: 20px;
        color: #031A46;
    }
    
    .contact_light a {
        color: #031A46;
        text-decoration: none;
    }
}

.contact_light a:hover {
    text-decoration: underline;
}

.services_light, .contact_light {
    text-align: left;
    margin-top: 0px;
}

.services_light ul {
    list-style: none;
    margin: 0; /* Elimina el margen por defecto */
    padding: 0; /* Se asegura de que no haya relleno adicional */
}
.contact_light ul{
        list-style: none;
        margin: 0; /* Elimina el margen por defecto */
        padding: 0; /* Se asegura de que no haya relleno adicional */   
}

.contact_without_curve{
    margin-top: -75px !important;
}

/***********************************/

