/* ===== FOOTER STYLES ===== */
.footer {
    background: #009ae8;
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Línea superior decorativa */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.6);
    z-index: 1;
}

/* Forzar texto blanco */
.footer,
.footer p,
.footer span,
.footer a,
.footer li,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    color: #ffffff;
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Logo */
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Contacto */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    width: 100%;
}

.footer-contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

/* Botón llamada */
.footer-call-button {
    margin: 20px 0 25px;
    width: 100%;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #009ae8 !important;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    width: 100%;
    max-width: 280px;
}

.btn-call span,
.btn-call i {
    color: #009ae8 !important;
}

.btn-call:hover {
    transform: translateY(-3px);
    background: #f2f2f2;
}

/* Horario */
.footer-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
}

/* Redes */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.3);
}

/* Títulos */
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
    width: 100%;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* Enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-links li a:hover {
    transform: translateX(8px);
    opacity: 0.8;
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-form-footer {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form-footer input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
}

.newsletter-form-footer input::placeholder {
    color: rgba(255,255,255,0.8);
}

.newsletter-form-footer .btn {
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
    background: #ffffff;
    color: #009ae8;
    border: none;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 5px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .newsletter-form-footer {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form-footer .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}.footer-menu-items {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    width: 100%;
}

.footer-menu-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}