.footer {
    background: linear-gradient(135deg,#156764 0%,#59A491 100%); /* verde tierra más oscuro */
    color: #fff;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-logo {
    font-family: 'GROBOLD', sans-serif !important;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo i {
    color: #B7C909; /* mostaza */
}

.footer h5 {
    font-family: 'CARONI', serif;
    color: #B7C909; /* mostaza */
    font-weight: normal;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: none;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-links a:hover {
    color: #B7C909; /* mostaza */
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #B7C909; /* mostaza */
    color:#156764;
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.contact-info i {
    color: #B7C909; /* mostaza */
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-bottom a {
    color: #B7C909;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
        margin-top: 60px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
}