.footer {
    background-color: #2E8B57;
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 16px;
    margin-top: 75px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.footer-logo img {
    width: 100px;
    border-radius: 10px;
}
.footer-logo h3 {
    margin-top: 10px;
    color: #fff;
}

.footer-contacto, .footer-links, .footer-social {
    flex: 1;
    min-width: 180px;
}

.footer-contacto h4,
.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    color: #ffeb3b;
}

.footer a {
    color: #fff;
    display: block;
    margin: 5px 0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: #ffeb3b;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #fff3;
    padding-top: 10px;
    font-size: 14px;
    color: #ccc;
}
