/* ESTÉTICA URBAN NIGHT / APP-STYLE - ROCÍO GARCÍA ÁLVARO (TAXIS) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-dark: #0A0A0C;         /* Noche Profunda */
    --card-dark: #16161A;       /* Asfalto Oscuro */
    --taxi-yellow: #FFCC00;     /* Amarillo Taxi / Neón */
    --text-main: #FFFFFF;       /* Blanco Puro */
    --text-muted: #9E9E9E;      /* Gris Urbano */
    --capsule-bg: rgba(22, 22, 26, 0.85);
    --border-radius-large: 24px;
    --border-radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--text-main); }

/* FONDOS LUMINOSOS (EFECTO FAROLAS DESENFOCADAS) */
.ambient-glow { position: fixed; top: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 204, 0, 0.15) 0%, rgba(10, 10, 12, 0) 70%); border-radius: 50%; z-index: -1; pointer-events: none; }
.ambient-glow-2 { position: fixed; bottom: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, rgba(10, 10, 12, 0) 70%); border-radius: 50%; z-index: -1; pointer-events: none; }

/* NAVEGACIÓN EN PÍLDORA FLOTANTE (APP STYLE) */
.floating-nav-wrapper { position: fixed; top: 20px; left: 0; width: 100%; display: flex; justify-content: center; z-index: 1000; padding: 0 5%; }
.floating-capsule { background: var(--capsule-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.05); padding: 10px 20px; border-radius: var(--border-radius-pill); display: flex; align-items: center; justify-content: space-between; box-shadow: 0 10px 30px rgba(0,0,0,0.5); width: 100%; max-width: 900px; }
.brand h1 { font-size: 1.5rem; letter-spacing: -0.5px; }
.brand h1 span { color: var(--taxi-yellow); }

nav { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; list-style: none; gap: 5px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; padding: 8px 16px; border-radius: var(--border-radius-pill); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { background: var(--taxi-yellow); color: var(--bg-dark); }
.lang-selector { background: transparent; border: 1px solid var(--text-muted); color: var(--text-main); padding: 6px 12px; border-radius: var(--border-radius-pill); font-family: 'Outfit', sans-serif; cursor: pointer; outline: none; transition: var(--transition); }
.lang-selector:hover { border-color: var(--taxi-yellow); color: var(--taxi-yellow); }

/* HERO SECTION (PANTALLA DE INICIO APP) */
.hero { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; text-align: center; padding: 120px 5% 50px; position: relative; }
.hero-tag { background: rgba(255, 204, 0, 0.1); color: var(--taxi-yellow); padding: 8px 20px; border-radius: var(--border-radius-pill); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 1px; border: 1px solid rgba(255, 204, 0, 0.2); }
.hero h2 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }
.hero-image-wrapper { width: 100%; max-width: 1000px; border-radius: var(--border-radius-large); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); }
.hero-image-wrapper img, .hero-image-wrapper video { width: 100%; height: 500px; object-fit: cover; display: block; opacity: 0.85; filter: contrast(1.1); }
/* CONTENEDORES Y TÍTULOS */
.content-block { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.8rem; margin-bottom: 50px; text-align: center; }
.section-title span { color: var(--taxi-yellow); }

/* SERVICIOS (REGLA: SOLO TÍTULOS - TARJETAS APP) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.service-card { background: var(--card-dark); border-radius: var(--border-radius-large); padding: 15px; border: 1px solid rgba(255,255,255,0.03); transition: var(--transition); cursor: pointer; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-5px); border-color: var(--taxi-yellow); box-shadow: 0 10px 30px rgba(255, 204, 0, 0.1); }
.service-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 16px; margin-bottom: 20px; filter: grayscale(50%); transition: var(--transition); }
.service-card:hover img { filter: grayscale(0%); }
.service-card h3 { font-size: 1.3rem; text-align: center; margin: 0; padding-bottom: 10px; }

/* TESTIMONIOS (REGLA: 100% ANÓNIMOS - BURBUJAS DE CHAT) */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--card-dark); padding: 30px; border-radius: var(--border-radius-large); border: 1px solid rgba(255,255,255,0.03); position: relative; }
.testimonial-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.testimonial-card::before { content: '★ ★ ★ ★ ★'; color: var(--taxi-yellow); display: block; margin-bottom: 15px; font-size: 1.2rem; letter-spacing: 2px; }

/* DUDAS (REGLA: EXACTAMENTE 2, H3 + P) */
.faq-container { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.faq-box { background: var(--card-dark); padding: 30px; border-radius: var(--border-radius-large); border: 1px solid rgba(255,255,255,0.03); }
.faq-box h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-main); }
.faq-box p { font-size: 1.05rem; color: var(--text-muted); }

/* FOOTER */
footer { background: var(--card-dark); padding: 60px 5% 30px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 60px; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 50px; }
.footer-columns h4 { color: var(--taxi-yellow); font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-columns p { margin-bottom: 10px; font-size: 0.95rem; color: var(--text-muted); }
.footer-menu-links { list-style: none; }
.footer-menu-links li { margin-bottom: 12px; }
.footer-menu-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.footer-menu-links a:hover { color: var(--text-main); padding-left: 5px; }

/* REGLA ESTRICTA LOGO KIT DIGITAL: BLANCO, PADDING, SIN FILTROS */
.logo-kit-local { display: block; margin: 0 auto 40px; max-width: 250px; width: 100%; height: auto; background-color: #FFFFFF !important; padding: 15px; border-radius: 12px; }
.footer-legal-text { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; font-size: 0.85rem; color: #666; }

/* ADAPTABILIDAD */
@media (max-width: 1024px) {
    .floating-capsule { flex-direction: column; gap: 15px; border-radius: 20px; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .hero { padding-top: 180px; }
    .hero h2 { font-size: 3rem; }
}