*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.footer {
    display: flex;
    justify-content: center;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    background-color: #1a2c38;
    color: white;
    padding: 30px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    bottom: 0;
    min-height: 50vh;       /* Opcional: una altura mínima */

}

.footer-contenido {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3a80d1;
}

.footer-redes a {
    color: white;
    font-size: 1.5rem;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer-redes a:hover {
    color: #3a80d1;
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}




@media (max-width: 768px) {
  .footer-contenido{
    justify-content: center;
  }
}