.main-footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 2rem 0 0.25rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0.25rem;
}

.footer-logo,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-contact {
    flex: 1;
    min-width: 100px;
    margin-left: 30px; /* Push contacto part more to the right */
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 5px;
}

.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Hide desktop footer on mobile */
@media (max-width: 768px) {
    .main-footer {
        display: none;
    }
}