:root {
    --w-blue-dark: #051d40; 
    --w-blue-light: #003B70;
    --w-gold: #d8ad28;
    --w-gold-hover: #b58f1f;
    --text-grey: #b3bccb;
    --white: #ffffff;
}

.wilan-modern-footer {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--w-blue-dark);
    color: var(--text-grey);
    position: relative;
    overflow: hidden;
}

.wilan-modern-footer p,
.wilan-modern-footer li,
.wilan-modern-footer span {
    color: var(--text-grey);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-cta-bar {
    background: linear-gradient(90deg, var(--w-gold) 0%, #f0c43d 100%);
    padding: 30px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h3 {
    margin: 0;
    color: var(--w-blue-dark) !important; 
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cta-text p {
    margin: 5px 0 0;
    color: var(--w-blue-dark) !important;
    font-weight: 500;
    opacity: 0.9;
}

.btn-footer-cta {
    background: var(--w-blue-dark);
    color: var(--w-gold) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--w-blue-dark) !important;
}

.footer-main {
    padding: 70px 0 50px;
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr; 
    gap: 40px;
}

.footer-logo {
    height: 70px; 
    margin-bottom: 20px;
    background: rgba(255,255,255,0.5);
    padding: 5px;
    border-radius: 8px;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
    color: var(--text-grey) !important; /* Asegurar gris claro */
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-badges span {
    font-size: 0.85rem;
    color: var(--w-gold) !important;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}

.footer-title {
    color: var(--white) !important; 
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--w-gold);
    border-radius: 2px;
}

.footer-links, .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 12px; }

/* Enlaces */
.footer-links a {
    color: var(--text-grey) !important; 
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--w-gold) !important;
    transform: translateX(6px); 
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-grey);
}

.contact-list i {
    color: var(--w-gold) !important;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-list span,
.contact-list a {
    color: var(--text-grey) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-list a:hover { color: var(--w-gold) !important; text-decoration: underline; }

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--w-gold);
    transform: translateY(-3px);
    color: var(--w-blue-dark) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.85rem;
    background: #031229;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-flex p {
    color: rgba(255,255,255,0.5) !important;
    margin: 0;
}

.made-by {
    color: rgba(255,255,255,0.3) !important;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-list li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}