/* Custom Footer */
.custom-footer {
    background: linear-gradient(135deg, #5d5e3e 0%, #4a4b2e 100%);
    color: #ffffff;
    padding: 2rem 0 1rem;
}

.footer-text {
    color: #ffffff;
    font-size: 14px;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-social {
        justify-content: flex-start;
    }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f4a460;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-logo {
    max-width: 90px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-whatsapp {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-whatsapp:hover {
    color: #f4a460;
}

.footer-whatsapp i {
    font-size: 20px;
    margin-right: 0.5rem;
}

.footer-email a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #f4a460;
}

/* Footer Navigation */
.footer-navigation {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin: 0;
}

.footer-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-menu li a:hover,
.footer-menu li.current-menu-item a {
    color: #f4a460;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f4a460;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.75rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.footer-secure-payments>img {
    background-color: #ffffff;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 5px auto;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-menu {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        max-width: 80px;
    }
}