/* ============================================================
   QUANTUM CONECTA - LIGHT TESLA DESIGN SYSTEM ⚛️
   ============================================================ */

:root {
    --bg-quantum: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(0, 0, 0, 0.05);
    --accent: #00d1b2; /* Cian Neón Adaptado */
    --accent-glow: rgba(0, 209, 178, 0.2);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --font-main: 'Outfit', sans-serif;
    --shadow-tesla: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

body.light-tesla {
    background-color: var(--bg-quantum);
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 209, 178, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(30, 41, 59, 0.02) 0px, transparent 50%);
    color: var(--text-primary);
    transition: background 0.5s ease;
}

/* CONTENEDOR PRINCIPAL */
.quantum-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* GLASSMORPHISM CLARO */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-tesla);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 50px -15px rgba(0, 209, 178, 0.1);
}

/* HERO SECTION */
.hero-light {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, rgba(0, 209, 178, 0.05) 0%, transparent 70%);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* BUSCADOR */
.search-wrapper-tesla {
    max-width: 700px;
    margin: 30px auto;
    position: relative;
}

.search-input-light {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 20px 25px 20px 60px;
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
    outline: none;
}

.search-input-light:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* BOTONES */
.btn-tesla-light {
    background: linear-gradient(135deg, #00d1b2 0%, #0081ff 100%);
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 209, 178, 0.2);
}

.btn-tesla-light:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 209, 178, 0.3);
}

/* TARJETAS DE SERVICIO */
.service-card-light {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-light:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 209, 178, 0.08);
}

/* MAPA ADAPTADO */
#mapa {
    border-radius: 30px;
    border: 2px solid #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    z-index: 1;
}

.leaflet-popup-content-wrapper {
    background: var(--bg-card) !important;
    backdrop-filter: blur(10px);
    border-radius: 15px !important;
    color: var(--text-primary) !important;
}

.btn-navigate {
    background: #4285F4;
    color: white !important;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .quantum-container { padding: 1rem; }
    .hero-title { font-size: 2.2rem; }
}
