:root {
    --brand-dark: #1E1B4B;
    --brand-primary: #4F46E5;
    --brand-light: #E0E7FF;
    --accent: #10B981;
    --accent-dark: #059669;
    
    --bg-main: #FAFAF9;
    --bg-surface: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    --radius-full: 9999px;
    --radius-xl: 32px;
    --radius-md: 16px;
    
    --shadow-soft: 0 10px 40px -10px rgba(79, 70, 229, 0.1);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-main); background-color: var(--bg-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.section-spacing { padding: 100px 0; }

.section-title { font-size: clamp(2rem, 4vw, 2.5rem); color: var(--brand-dark); font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.text-gradient { background: linear-gradient(135deg, var(--brand-primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; font-size: 1.05rem; font-weight: 700; border-radius: var(--radius-full); text-decoration: none; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background-color: var(--brand-primary); color: white; box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(79, 70, 229, 0.4); background-color: #4338CA; }
.btn-secondary { background-color: var(--accent); color: white; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); }
.btn-secondary:hover { transform: translateY(-3px); background-color: var(--accent-dark); }
.btn-text { color: var(--text-main); background: transparent; padding: 16px 20px; }
.btn-text:hover { color: var(--brand-primary); }

.top-notice { background-color: var(--brand-dark); color: white; text-align: center; padding: 12px 20px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; }
.fab-whatsapp { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-float); z-index: 999; transition: var(--transition); }
.fab-whatsapp:hover { transform: translateY(-5px) scale(1.05); }

.hero-centric { padding: 80px 0 0 0; text-align: center; background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%); }
.hero-content { max-width: 800px; margin: 0 auto; }
.pill-badge { display: inline-block; padding: 6px 16px; background-color: var(--brand-light); color: var(--brand-primary); border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.hero-centric h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; letter-spacing: -1px; }
.hero-centric p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }
.hero-actions { display: flex; justify-content: center; gap: 16px; align-items: center; margin-bottom: 60px; }

.hero-image-container { position: relative; max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.main-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-xl) var(--radius-xl) 0 0; box-shadow: var(--shadow-soft); display: block; }

.glass-card { position: absolute; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.3); padding: 16px 24px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-float); z-index: 10; }
.gc-left { top: 20%; left: -20px; }
.gc-right { bottom: 20%; right: -20px; }
.gc-icon { font-size: 2rem; background: var(--brand-light); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
.gc-text strong { display: block; color: var(--brand-dark); font-size: 1rem; }
.gc-text span { color: var(--text-muted); font-size: 0.85rem; }

.z-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.z-row.reverse .z-text { order: 2; }
.z-row.reverse .z-image { order: 1; }
.z-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; }

.info-quote { background: var(--bg-surface); padding: 24px; border-left: 4px solid var(--accent); border-radius: 0 var(--radius-md) var(--radius-md) 0; box-shadow: var(--shadow-soft); font-size: 1.05rem; }
.z-image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.feature-list li { display: flex; gap: 20px; align-items: flex-start; }
.f-icon { font-size: 1.8rem; background: var(--brand-light); padding: 12px; border-radius: var(--radius-md); }
.feature-list strong { display: block; color: var(--brand-dark); font-size: 1.15rem; margin-bottom: 4px; }

.highlight-card { background: var(--brand-primary); color: white; padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-float); }
.highlight-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.highlight-card hr { border: 0; border-top: 1px solid rgba(255,255,255,0.2); margin: 24px 0; }
.highlight-card ul { list-style: none; }
.highlight-card li { margin-bottom: 12px; font-weight: 500; }

.map-container-new { background: var(--bg-surface); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-soft); }
.route-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.pill { background: var(--bg-main); border: 1px solid var(--border-color); padding: 12px 24px; border-radius: var(--radius-full); font-size: 0.95rem; font-weight: 600; color: var(--text-main); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 8px; font-family: inherit; }
.pill .p-time { color: var(--accent-dark); background: #D1FAE5; padding: 2px 8px; border-radius: 12px; font-size: 0.8rem; }
.pill:hover { border-color: var(--brand-primary); transform: translateY(-2px); }
.pill.active { background: var(--brand-primary); color: white; border-color: var(--brand-primary); box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3); }
.pill.active .p-time { background: rgba(255,255,255,0.2); color: white; }
.pill.btn-gps { background: var(--brand-dark); color: white; }
.map-frame-wrapper iframe { border-radius: var(--radius-md); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-box { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); }
.faq-box:hover { border-color: var(--brand-primary); }
.faq-head { padding: 24px; font-weight: 700; color: var(--brand-dark); font-size: 1.1rem; position: relative; }
.faq-head::after { content: '+'; position: absolute; right: 24px; font-size: 1.5rem; color: var(--brand-primary); font-weight: 400; transition: transform 0.3s; }
.faq-box.active .faq-head::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px; max-height: 0; overflow: hidden; color: var(--text-muted); transition: all 0.3s ease; }
.faq-box.active .faq-body { padding: 0 24px 24px; max-height: 300px; }

.footer-elegant { background-color: var(--brand-dark); padding: 80px 0 40px; }
.text-white { color: white !important; }
.op-80 { opacity: 0.8; font-size: 1.1rem; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 60px 0 30px; }
.copyright { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }

@media (max-width: 992px) {
    .z-row { grid-template-columns: 1fr; gap: 40px; }
    .z-row.reverse .z-text { order: 1; }
    .z-row.reverse .z-image { order: 2; }
    .gc-left { top: 10%; left: 10px; }
    .gc-right { bottom: 10%; right: 10px; }
}
@media (max-width: 768px) {
    .hero-centric h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .glass-card { display: none; }
    .main-img { height: 350px; }
    .section-spacing { padding: 60px 0; }
    .route-pills { justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; flex-wrap: nowrap; }
    .pill { white-space: nowrap; flex-shrink: 0; }
}