.custom-footer {
    background-color: #D9D9D9;
    color: #014375;
    padding: 40px 0; /* padding vertical, lateral se aplica en wrapper */
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    text-align: center;
    margin-top: 4rem;
}

/* WRAPPER para respetar padding lateral */
.footer-wrapper {
    max-width: 1600px; /* ancho máximo del contenido */
    margin: 0 auto;
    padding: 0 16px; /* padding lateral */
    box-sizing: border-box;
}

/* Footer container como flex */
.footer-container {
    display: flex;
    justify-content: space-between; /* distribuye secciones uniformemente */
    flex-wrap: wrap;
    gap: 32px; /* espacio entre secciones */
    text-align: left;
}

/* Secciones con igual proporción */
.footer-section {
    margin-bottom: 20px;
    
}

.p-footer {
    font-size: 16px;
    font-weight: 700; /* 700 = bold */
    margin-bottom: 10px;
    color: #014375;
}
.pp-footer{
    font-size: 16px;
    color: #014375;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    color: #014375;
}

.footer-section ul li a {
    color: #014375;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #429AE8;
    text-decoration: underline;
}



.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #014375;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}

.footer-social-icons img.footer-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    transition: opacity 0.2s ease;
}

.footer-social-icons img.footer-icon:hover {
    opacity: 0.8; /* efecto hover */
}
