footer {
    background-color: #000000;
    color: white;
    padding: 50px 60px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    height: auto; /* Altura dinámica según el contenido */
    gap: 20px;
}

/* Ajusta cada sección del footer */
.footer-logo {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 250px; /* Tamaño ajustado */
    object-fit: contain;
}

.footer-info,
.footer-links,
.footer-social {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-social a img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.footer-bottom::before {
    content: "";
    display: block;
    border-bottom: 1px solid white;
    margin: 10px 0;
}

/* Sección de Contacto */
.contacto2 {
    background: #222;
    padding: 60px 20px;
    text-align: center;
    margin-top: 15px;
}

.contacto2-titulo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.contacto2-contenedor {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contacto2-item {
    text-align: center;
    color: white;
}

.contacto2-icono {
    display: block;
    font-size: 7rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.contacto2-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 5px;
}

.contacto2-item p {
    font-size: 1rem;
    margin: 0;
}

/* === Responsividad === */
@media (max-width: 1024px) {
    .footer-logo {
        width: 40%;
    }
    .footer-info,
    .footer-links,
    .footer-social {
        width: 25%;
    }
    .footer-logo img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-info,
    .footer-links,
    .footer-social {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .contacto2-contenedor {
        flex-direction: column;
        align-items: center;
    }
}
