/* =========================================
   FOOTER CLEAN & TECH
   ========================================= */

.lab-footer {
    background: #050505; /* Negro casi puro */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 10;
}

.lab-footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; /* La primera columna es más ancha */
    gap: 60px;
    padding-bottom: 60px;
}

/* COLUMNA 1: MARCA */
.footer-logo {
    height: 40px; margin-bottom: 25px; opacity: 0.9;
}
.footer-desc {
    color: #888; font-size: 0.9rem; line-height: 1.6;
    max-width: 350px; margin-bottom: 30px;
}

/* Badge de estado (Toque Tech sutil) */
.lab-status-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.03); 
    padding: 6px 12px; border-radius: 4px;
    font-size: 0.75rem; color: #666; font-family: 'Courier New', monospace;
    border: 1px solid rgba(255,255,255,0.05);
}
.status-dot {
    width: 6px; height: 6px; background: var(--lab-cyan);
    border-radius: 50%; box-shadow: 0 0 5px var(--lab-cyan);
}

/* COLUMNAS 2 y 3: TÍTULOS */
.lab-col-links h4, .lab-col-contact h4 {
    color: white; font-size: 1rem; font-weight: 700;
    margin-bottom: 25px; letter-spacing: 1px;
}

/* NAVEGACIÓN */
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 15px; }
.footer-nav a {
    color: #aaa; text-decoration: none; font-size: 0.9rem; transition: 0.3s;
}
.footer-nav a:hover { color: var(--lab-cyan); padding-left: 5px; }

.tiny-badge {
    font-size: 0.6rem; background: var(--lab-purple); color: white;
    padding: 2px 4px; border-radius: 3px; margin-left: 5px; vertical-align: middle;
}

/* CONTACTO Y REDES */
.footer-mail {
    color: #ccc; text-decoration: none; font-size: 0.9rem;
    display: block; margin-bottom: 25px; transition: 0.3s;
}
.footer-mail:hover { color: white; text-decoration: underline; }

.footer-socials { display: flex; gap: 15px; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; transition: 0.3s;
    border: 1px solid transparent;
}
.social-btn:hover {
    background: transparent; border-color: var(--lab-cyan); color: var(--lab-cyan);
    transform: translateY(-3px);
}

/* --- BARRA INFERIOR --- */
.lab-footer-bottom {
    background: black;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
}
.bottom-content {
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}

.copyright { color: #555; font-size: 0.8rem; }

/* Enlace a Sketch Connection */
.parent-brand-link {
    color: #777; text-decoration: none; font-size: 0.75rem; letter-spacing: 1px;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.parent-brand-link strong { color: white; font-weight: 800; font-size: 0.85rem; }
.parent-brand-link:hover { color: var(--lab-cyan); }
.parent-brand-link:hover strong { color: var(--lab-cyan); }


/* RESPONSIVE */
@media (max-width: 768px) {
    .lab-footer-container {
        grid-template-columns: 1fr; /* Todo en una columna */
        gap: 40px;
    }
    .bottom-content {
        flex-direction: column; text-align: center;
    }
}