/* --- ESTILOS FOOTER SKETCH CONNECTION --- */

.sc-footer-section {
    background-color: #190b6a; /* Negro suave premium */
    color: #FFFFFF;
    padding: 80px 0 0 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    border-top: 4px solid #190b6a; /* La línea morada superior de tu marca */
}

.sc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    /* Grid de 4 columnas: La primera es más ancha (2fr) */
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr; 
    gap: 40px;
    margin-bottom: 60px;
}

/* 1. BRAND COLUMN */
.sc-footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.5rem; font-weight: 700; color: white;
    text-decoration: none; margin-bottom: 20px;
}
.sc-logo-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #6200EA 0%, #00E5FF 100%);
}
.sc-footer-logo img {
  width: 100%; max-width: 220px;
}
.sc-footer-desc {
    color: #999; font-size: 0.9rem; line-height: 1.6;
    margin-bottom: 25px; max-width: 300px;
}

/* REDES SOCIALES */
.sc-social-icons { display: flex; gap: 15px; }
.sc-social-link {
    width: 35px; height: 35px; background: #ffffff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color:#190b6a; text-decoration: none; transition: 0.3s;
}
.sc-social-link:hover {
    background: #6200EA; /* Hover Morado */
    transform: translateY(-3px);
    color: white;
}

/* 2, 3, 4. COLUMNAS DE LINKS */
.sc-footer-title {
    font-size: 1rem; font-weight: 700; margin-bottom: 20px;
    color: white; text-transform: uppercase; letter-spacing: 1px;
}

.sc-footer-list { list-style: none; padding: 0; margin: 0; }
.sc-footer-list li { margin-bottom: 12px; }

.sc-footer-list a {
    color: #999; text-decoration: none; font-size: 0.95rem;
    transition: 0.2s; display: flex; align-items: center; gap: 8px;
}
.sc-footer-list a:hover { color: #00E5FF; padding-left: 5px; } /* Hover Cyan */

/* DIRECCIÓN */
.sc-address {
    color: #999; font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px;
}
.sc-address i { color: #6200EA; margin-right: 5px; }

.sc-map-btn {
    display: inline-block; font-size: 0.8rem; font-weight: 700;
    color: white; text-decoration: underline;
}

/* BARRA COPYRIGHT */
.sc-copyright-bar {
    background: #111111;
    padding: 20px 40px 40px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #222;
    font-size: 0.85rem; color: #666;
}

.sc-legal-links { display: flex; gap: 15px; }
.sc-legal-links a { color: #666; text-decoration: none; transition: 0.2s; }
.sc-legal-links a:hover { color: white; }

/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
    .sc-footer-container {
        grid-template-columns: 1fr; /* Todo en 1 columna */
        gap: 30px;
        text-align: center;
    }
    .sc-footer-logo, .sc-social-icons { justify-content: center; }
    .sc-footer-desc { margin: 0 auto 20px auto; }
    .sc-footer-list a { justify-content: center; }
    
    .sc-copyright-bar {
        flex-direction: column; gap: 10px; text-align: center;
    }
    
    /* En móvil damos más espacio abajo para que no choque con el menú sc_nint */
    .sc-footer-section { padding-bottom: 0px; } 
    .sc-legal-links {
        width: 100%;
        height: 100px;
        justify-content: center;
    }
}
@media (max-width: 290px) {
    .sc-footer-container {
        grid-template-columns: 1fr; /* Todo en 1 columna */
        gap: 30px;
        text-align: center;
    }
    .sc-footer-logo, .sc-social-icons { justify-content: center; width: 100%; max-width: 200px; }
    .sc-footer-desc { margin: 0 auto 20px auto; width: 100%; max-width: 200px;}
    .sc-footer-list a { justify-content: center; width: 100%; max-width: 200px;}
    
    .sc-copyright-bar {
        flex-direction: column; gap: 10px; text-align: center;
    }
    
}