/* ===== Oki Doki Gas - Stylesheet ===== */
/* Reset & Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green: #1f7c3b;
    --green-dark: #17632d;
    --green-deep: #0a1f11;
    --yellow: #f8dd00;
    --yellow-hover: #dcb700;
    --yellow-text: #4a4200;
    --bg: #ffffff;
    --surface: #f4f8f5;
    --border: #e1ebe4;
    --text: #0a1f11;
    --text-muted: #4a6352;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(31,124,59,0.06);
    --shadow-hover: 0 20px 40px rgba(31,124,59,0.12);
    --shadow-glow: 0 8px 30px rgba(31,124,59,0.08);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); font-size: 1rem; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }
@media (min-width: 1440px) { .container { max-width: 1400px; padding: 0 64px; } }

/* Section */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.bg-white { background: var(--bg); }
.bg-surface { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 48px; }
@media (min-width: 768px) { .section-header { margin-bottom: 64px; } }
.section-title { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.1; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-desc { font-size: 1.125rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.text-left { text-align: left; margin: 0; }
.text-white { color: var(--white) !important; }
.text-white-80 { color: rgba(255,255,255,0.8) !important; }
.text-green { color: var(--green) !important; }
.text-yellow { color: var(--yellow) !important; }

/* Badges */
.badge { display: inline-block; padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; }
.badge-green { background: rgba(31,124,59,0.1); color: var(--green); }
.badge-yellow { background: var(--yellow); color: var(--yellow-text); }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: var(--radius-full); transition: all var(--transition); white-space: nowrap; text-align: center; }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 14px 32px; font-size: 1.125rem; }
.btn-xl { padding: 18px 40px; font-size: 1.125rem; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* WhatsApp CTA Button */
.btn-whatsapp { background: #25D366; color: var(--white); display: inline-flex; align-items: center; gap: 8px; font-weight: 700; border-radius: var(--radius-full); transition: all var(--transition); box-shadow: 0 2px 12px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.45); color: var(--white); }
.btn-whatsapp svg { flex-shrink: 0; }

/* Sub-zone Dropdown */
.subzone-dropdown-wrap { position: relative; display: inline-block; }
.subzone-toggle { cursor: pointer; border: none; }
.subzone-dropdown { display: none; position: absolute; bottom: calc(100% + 12px); left: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: 0 8px 32px rgba(0,0,0,0.2); min-width: 280px; padding: 12px; z-index: 50; animation: modalSlideUp 0.2s ease; }
.subzone-dropdown.open { display: block; }
.subzone-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; padding: 0 4px; }
.subzone-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px; border-radius: var(--radius-sm); transition: all var(--transition); cursor: pointer; text-decoration: none; color: var(--text); }
.subzone-item:hover { background: rgba(37,211,102,0.08); color: #25D366; }
.subzone-name { font-weight: 700; font-size: 0.9375rem; display: block; }
.subzone-phone { font-size: 0.8125rem; color: var(--text-muted); display: block; }
.subzone-item svg { color: #25D366; flex-shrink: 0; }
.btn-yellow { background: var(--yellow); color: var(--green-deep); }
.btn-yellow:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.btn-white { background: var(--white); color: var(--green-deep); }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--green); }
.btn-outline-green { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.w-full { width: 100%; }

/* Icons */
.icon-xs { width: 16px; height: 16px; flex-shrink: 0; }
.icon-sm { width: 20px; height: 20px; flex-shrink: 0; }
.icon-md { width: 24px; height: 24px; flex-shrink: 0; }
.icon-lg { width: 28px; height: 28px; flex-shrink: 0; }
.icon-xl { width: 40px; height: 40px; flex-shrink: 0; }

/* ===== HEADER ===== */
#main-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 6px 0; transition: all var(--transition); background: rgba(31,124,59,0.9); backdrop-filter: blur(8px); }
#main-header::before { display: none; }
#main-header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 10px rgba(0,0,0,0.05); padding: 4px 0; }
#main-header.scrolled::before { display: none; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { height: 64px; width: auto; }
@media (min-width: 768px) { .logo-img { height: 76px; } }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--white); display: flex; align-items: center; white-space: nowrap; letter-spacing: -0.02em; }
.logo-city { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.8); display: none; }
@media (min-width: 640px) { .logo-city { display: block; } }
.scrolled .logo-text { color: var(--text); }
.scrolled .logo-city { color: var(--text-muted); }

.desktop-nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 1200px) { .desktop-nav { display: flex; } }
.nav-link { padding: 8px 14px; font-weight: 600; border-radius: var(--radius-full); transition: all var(--transition); color: rgba(255,255,255,0.9); font-size: 0.9375rem; white-space: nowrap; }
.nav-link:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.scrolled .nav-link { color: var(--text-muted); }
.scrolled .nav-link:hover { color: var(--green); background: var(--surface); }

.city-selector { position: relative; }
.city-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.city-dropdown { display: none; position: absolute; top: 100%; right: 0; min-width: 200px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-hover); padding: 8px; padding-top: 16px; margin-top: 0; z-index: 50; max-height: 320px; overflow-y: auto; }
.city-selector:hover .city-dropdown, .city-selector.open .city-dropdown { display: block; }
.city-option { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text-muted); font-size: 0.875rem; transition: all var(--transition); }
.city-option:hover { background: var(--surface); color: var(--green); }
.city-option.active { background: var(--surface); color: var(--green); font-weight: 600; }

.header-actions { display: none; align-items: center; gap: 12px; flex-shrink: 0; }
@media (min-width: 1200px) { .header-actions { display: flex; } }
.phone-link { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.875rem; white-space: nowrap; flex-shrink: 0; }
.scrolled .phone-link { color: var(--text-muted); }
.phone-text { display: inline; white-space: nowrap; }

.mobile-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--white); flex-shrink: 0; }
@media (min-width: 1200px) { .mobile-toggle { display: none; } }
.scrolled .mobile-toggle { color: var(--text); }

.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; }
.mobile-menu.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { padding: 12px 16px; color: var(--text-muted); font-weight: 500; border-radius: var(--radius-sm); transition: all var(--transition); }
.mobile-nav a:hover { background: var(--surface); color: var(--green); }
.mobile-cities { padding: 12px 16px; }
.mobile-cities-label { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 8px; }
.mobile-cities-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chip { padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; background: var(--surface); color: var(--text-muted); transition: all var(--transition); }
.city-chip:hover { background: var(--border); }
.city-chip.active { background: var(--green); color: var(--white); }
.mobile-actions { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.mobile-phone { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: var(--text-muted); font-weight: 500; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 60px; overflow: hidden; background: linear-gradient(135deg, #1f7c3b 0%, #1a6a32 50%, #145428 100%); }
.hero-bg-pattern { position: absolute; inset: 0; pointer-events: none; }
.hero-mano-texture { position: absolute; right: 0; top: 0; height: 100%; width: auto; pointer-events: none; z-index: 2; }
.hero-bg-pattern::before { display: none; }
.hero-bg-pattern::after { display: none; }
.hero-grid { position: relative; z-index: 10; display: grid; gap: 32px; align-items: center; min-height: calc(100vh - 60px); }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.hero-content { text-align: center; position: relative; z-index: 20; padding-top: 16px; }
@media (min-width: 1024px) { .hero-content { text-align: left; padding-top: 0; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); color: var(--white); padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(4px); }
.pulse-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero-slogan { font-style: italic; font-weight: 400; color: var(--white); font-family: var(--font-heading); font-size: 2rem; margin-bottom: 28px; letter-spacing: -0.01em; line-height: 1.1; }
@media (min-width: 768px) { .hero-slogan { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero-slogan { font-size: 3.25rem; } }
.hero-welcome { color: var(--yellow); font-weight: 700; font-size: 1.375rem; margin-bottom: 16px; font-family: var(--font-heading); letter-spacing: -0.01em; }
@media (min-width: 768px) { .hero-welcome { font-size: 1.625rem; } }
@media (min-width: 1024px) { .hero-welcome { font-size: 1.875rem; } }
.hero-title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-title-zone { display: block; color: var(--yellow); }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 560px; line-height: 1.7; }
@media (min-width: 1024px) { .hero-subtitle { margin: 0 0 32px; } }
.hero-buttons { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }
.hero-trust { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: center; color: rgba(255,255,255,0.8); font-size: 0.875rem; }
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; }
.trust-num { color: var(--yellow); font-weight: 700; }
.hero-visual { display: flex; justify-content: center; position: relative; z-index: 5; }
@media (min-width: 1024px) { .hero-visual { justify-content: flex-end; } }
.hero-mascot-wrapper { position: relative; }
.hero-mascot { width: 320px; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.3)); animation: float 4s ease-in-out infinite; }
@media (min-width: 768px) { .hero-mascot { width: 400px; } }
@media (min-width: 1024px) { .hero-mascot { width: 480px; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-mascot-fallback { width: 300px; height: 300px; background: rgba(255,255,255,0.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-heading); font-size: 2rem; font-weight: 800; }
.hero-float-card { position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; z-index: 15; animation: floatCard 3s ease-in-out infinite; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hero-float-phone { bottom: -16px; left: -16px; }
.hero-float-wa { text-decoration: none; cursor: pointer; transition: all var(--transition); }
.hero-float-wa:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.float-icon-wa { background: #25D366; }
.hero-float-slogan { text-decoration: none; cursor: pointer; transition: all var(--transition); }
.hero-float-slogan:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 24px rgba(31,124,59,0.3); }
.float-icon-slogan { background: var(--yellow); }
.float-icon-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-label { font-size: 0.75rem; color: var(--text-muted); }
.float-value { font-weight: 700; color: var(--text); font-size: 0.875rem; }
.hero-float-express { position: absolute; top: 16px; right: -16px; background: var(--yellow); animation-delay: 0.5s; flex-direction: column; align-items: flex-start; gap: 4px; }
.float-title { font-weight: 700; color: var(--green-deep); font-size: 1.125rem; }
.float-desc { font-size: 0.875rem; color: rgba(10,31,17,0.7); }
.scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; }
.scroll-mouse { width: 32px; height: 52px; border: 2px solid rgba(255,255,255,0.4); border-radius: var(--radius-full); display: flex; justify-content: center; padding-top: 10px; animation: scrollBounce 1.5s infinite; }
.scroll-dot { width: 8px; height: 16px; background: var(--white); border-radius: var(--radius-full); }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* ===== CARDS ===== */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); transition: all var(--transition); }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-icon { width: 80px; height: 80px; border-radius: var(--radius-lg); background: rgba(31,124,59,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--green); transition: all var(--transition); }
.card-icon svg { width: 40px; height: 40px; }
.card:hover .card-icon { background: var(--green); color: var(--white); transform: scale(1.1); }
.card-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-desc { color: var(--text-muted); line-height: 1.7; }

/* Service Card - New Design */
.services-grid { gap: 32px; }
.service-card-new { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 24px 32px; border-radius: var(--radius-lg); background: var(--white); border: 2px solid var(--border); transition: all var(--transition); }
.service-card-new:hover { border-color: var(--green); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-icon-large { width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--green); }
.service-icon-large svg, .service-icon-large img { width: 100%; height: 100%; object-fit: contain; }
.service-card-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.02em; }
.service-card-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; flex-grow: 1; }
.service-cta { width: 100%; justify-content: center; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
@media (min-width: 768px) { .service-icon-large { width: 240px; height: 240px; } }
@media (min-width: 1024px) { .service-icon-large { width: 280px; height: 280px; } .service-card-title { font-size: 1.75rem; } }

/* Step Card */
.steps-wrapper { position: relative; }
.steps-line { display: none; position: absolute; top: 50%; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, rgba(31,124,59,0.2), var(--green), rgba(31,124,59,0.2)); transform: translateY(-50%); z-index: 0; }
@media (min-width: 1024px) { .steps-line { display: block; } }
.steps-grid { position: relative; z-index: 5; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; text-align: center; box-shadow: var(--shadow-soft); transition: all var(--transition); display: flex; flex-direction: column; align-items: center; }
.step-card:hover { box-shadow: var(--shadow-hover); }
.step-icon-wrap { position: relative; width: 80px; height: 80px; margin-bottom: 24px; }
.step-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 24px rgba(31,124,59,0.3); }
.step-number { position: absolute; top: -8px; right: -8px; width: 32px; height: 32px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--yellow-text); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.step-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.step-desc { color: var(--text-muted); line-height: 1.7; flex-grow: 1; }

/* ===== COVERAGE ===== */
.section-dark { background: linear-gradient(135deg, #0a1f11 0%, #0d2914 50%, #0a1f11 100%); position: relative; overflow: hidden; }
.section-dark > .container { position: relative; z-index: 2; }
.cobertura-mano-texture { position: absolute; right: 0; top: 0; height: 100%; width: auto; pointer-events: none; z-index: 0; }
.city-card { display: flex; flex-direction: column; padding: 24px; border-radius: var(--radius-lg); border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); transition: all var(--transition); }
.city-card:hover { background: rgba(255,255,255,0.2); border-color: var(--yellow); }
.city-card-active { background: var(--green); border-color: var(--green); }
.city-card-header { display: flex; align-items: flex-start; gap: 16px; }
.city-card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(31,124,59,0.2); color: var(--green); }
.city-card-active .city-card-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.city-card-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.city-card-state { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.city-card-active .city-card-state { color: rgba(255,255,255,0.8); }
.city-check { flex-shrink: 0; }
.city-card-zones { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); flex-grow: 1; }
.zones-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.city-card-active .zones-label { color: rgba(255,255,255,0.7); }
.zones-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.zone-tag { font-size: 0.75rem; padding: 4px 8px; border-radius: var(--radius-full); background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.city-card-active .zone-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.zone-more { font-size: 0.75rem; padding: 4px; color: rgba(255,255,255,0.5); }
.city-detail-panel { margin-top: 64px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(255,255,255,0.2); }
.city-detail-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .city-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .city-detail-grid { grid-template-columns: repeat(4, 1fr); } }
.city-detail-subzones { display: grid; gap: 32px; }
@media (min-width: 768px) { .city-detail-subzones { grid-template-columns: 1.5fr 1fr 1fr; } }
.detail-col { }
.detail-subzone-list { display: flex; flex-direction: column; gap: 8px; }
.detail-subzone-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 12px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); }
.detail-subzone-name { color: var(--white); font-weight: 600; font-size: 0.875rem; }
.detail-subzone-phone { color: rgba(255,255,255,0.8); font-size: 0.8125rem; display: flex; align-items: center; gap: 4px; text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.detail-subzone-phone:hover { color: var(--yellow); }
.detail-label { color: var(--yellow); font-weight: 600; margin-bottom: 8px; }
.detail-value { color: rgba(255,255,255,0.8); }
.detail-link { display: block; transition: color var(--transition); }
.detail-link:hover { color: var(--white); }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { font-size: 0.75rem; background: var(--green); color: var(--white); padding: 4px 12px; border-radius: var(--radius-full); }

/* ===== STATIONS ===== */
.card-station { background: var(--surface); }
.card-station:hover { background: var(--white); }
.station-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.station-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.station-name { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text); transition: color var(--transition); }
.card-station:hover .station-name { color: var(--green); }
.station-address { font-size: 0.875rem; color: var(--text-muted); }
.station-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.station-row { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.875rem; }
.station-row a { transition: color var(--transition); }
.station-row a:hover { color: var(--green); }
.station-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag { font-size: 0.75rem; padding: 4px 12px; border-radius: var(--radius-full); }
.tag-green { background: rgba(31,124,59,0.1); color: var(--green); }
.station-actions { display: flex; gap: 12px; }

/* ===== APP PROMO ===== */
.section-app { background-image: linear-gradient(135deg, rgba(31,124,59,0.95), rgba(23,99,45,0.98)), url('https://images.unsplash.com/photo-1706720094773-d91e070e4b90'); background-size: cover; background-position: center; overflow: hidden; }
.app-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .app-grid { grid-template-columns: 1fr 1fr; } }
.app-desc { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin: 24px 0 32px; line-height: 1.7; }
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.app-feat { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }
.app-feat > div:first-child, .app-feat > svg:first-child { width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.app-buttons { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .app-buttons { flex-direction: row; } }
.btn-store { border-radius: var(--radius-md) !important; padding: 12px 24px; height: auto; display: flex; align-items: center; gap: 12px; }
.btn-store small { font-size: 0.75rem; opacity: 0.7; display: block; font-weight: 400; }
.btn-store strong { font-size: 1.125rem; display: block; }
.store-icon { width: 32px; height: 32px; flex-shrink: 0; }
.app-visual { display: flex; justify-content: center; }
.phone-mockup { position: relative; width: 288px; background: var(--green-deep); border-radius: 48px; padding: 12px; box-shadow: 0 50px 100px rgba(0,0,0,0.3); }
.phone-screen { width: 100%; height: 560px; background: var(--white); border-radius: 40px; overflow: hidden; position: relative; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--green), transparent 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--white); }
.phone-status { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.status-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.status-label { font-size: 0.75rem; opacity: 0.7; }
.status-value { font-weight: 700; }
.phone-order { background: rgba(255,255,255,0.2); border-radius: var(--radius-md); padding: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.phone-notch { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 96px; height: 24px; background: var(--green-deep); border-radius: var(--radius-full); }

/* ===== TESTIMONIALS ===== */
.testimonials-track { overflow: hidden; margin-bottom: 48px; }
.testimonials-marquee { display: flex; gap: 16px; animation: marquee 40s linear infinite; width: max-content; }
.testimonials-marquee:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testimonial-card { width: 350px; flex-shrink: 0; background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .testimonial-card { width: 400px; } }
.testimonial-quote { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(248,221,0,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-text { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; flex-shrink: 0; }
.author-name { font-weight: 700; color: var(--text); }
.author-city { font-size: 0.875rem; color: var(--text-muted); }

.stats-bar { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--green); }
@media (min-width: 768px) { .stat-num { font-size: 3rem; } }
.stat-label { color: var(--text-muted); margin-top: 8px; }

/* ===== FAQ ===== */
.faq-layout { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 1fr 1fr; gap: 64px; } }
.faq-left { position: sticky; top: 128px; }
.faq-cta-box { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; margin-top: 32px; }
.faq-cta-title { font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-cta-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.faq-cta-link { color: var(--green); font-weight: 600; }
.faq-cta-link:hover { text-decoration: underline; }
.faq-right { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--surface); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.faq-item.active { background: var(--white); box-shadow: var(--shadow-glow); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; text-align: left; font-size: 1.125rem; font-weight: 600; color: var(--text); gap: 16px; }
.faq-chevron { transition: transform var(--transition); color: var(--text-muted); }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; gap: 64px; } }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--white); border-radius: var(--radius-md); transition: all var(--transition); }
.contact-method:hover { box-shadow: var(--shadow-glow); }
.method-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(31,124,59,0.1); display: flex; align-items: center; justify-content: center; color: var(--green); transition: all var(--transition); flex-shrink: 0; }
.contact-method:hover .method-icon { background: var(--green); color: var(--white); }
.method-icon-wa { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-method:hover .method-icon-wa { background: #25D366; color: var(--white); }
.method-label { font-size: 0.875rem; color: var(--text-muted); }
.method-value { font-weight: 700; color: var(--text); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-glow); }
.form-success { text-align: center; padding: 48px 24px; }
.success-icon { margin: 0 auto 24px; width: 80px; height: 80px; background: rgba(31,124,59,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.form-success p { color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 8px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 1rem; transition: all var(--transition); background: var(--white); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,124,59,0.1); }
.form-group textarea { resize: none; }
.form-check { display: flex; align-items: flex-start; gap: 12px; margin: 24px 0; }
.form-check input { margin-top: 4px; accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.form-check label { font-size: 0.875rem; color: var(--text-muted); }
.form-check a { color: var(--green); text-decoration: underline; }

/* ===== CTA FINAL ===== */
.section-cta { position: relative; background: var(--green); overflow: hidden; text-align: center; }
.cta-bg::before { content: ''; position: absolute; top: 0; left: 0; width: 384px; height: 384px; background: rgba(255,255,255,0.05); border-radius: 50%; transform: translate(-50%, -50%); }
.cta-bg::after { content: ''; position: absolute; bottom: 0; right: 0; width: 500px; height: 500px; background: rgba(248,221,0,0.1); border-radius: 50%; transform: translate(25%, 25%); }
.cta-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; }
.cta-title { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin: 16px 0 24px; line-height: 1.1; }
@media (min-width: 768px) { .cta-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 3.75rem; } }
.cta-desc { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-trust { margin-top: 32px; color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ===== FOOTER ===== */
footer { background: var(--green-deep); color: var(--white); padding-top: 80px; padding-bottom: 32px; }
.footer-grid { display: grid; gap: 48px; margin-bottom: 64px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo img { height: 80px; margin-bottom: 24px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; display: block; margin-bottom: 24px; }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: var(--green); }
.footer-heading { font-weight: 700; font-size: 1.125rem; margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact a, .footer-address { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--yellow); }
.footer-hours { margin-top: 24px; padding: 16px; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); }
.hours-label { font-size: 0.875rem; font-weight: 600; color: var(--yellow); margin-bottom: 4px; }
.hours-value { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-brand-big { text-align: center; padding: 0; border-top: none; overflow: visible; margin-top: -180px; position: relative; z-index: 1; }
.footer-brazo { display: inline-block; height: 400px; width: auto; margin-bottom: -4px; }
.footer-bottom { display: flex; flex-direction: column; gap: 16px; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ===== CHATBOT ===== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.chat-button { width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(31,124,59,0.3); transition: all var(--transition); animation: pulseGlow 2s infinite; }
.chat-button:hover { transform: scale(1.1); background: var(--green-dark); }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 8px 24px rgba(31,124,59,0.3); } 50% { box-shadow: 0 8px 32px rgba(31,124,59,0.5); } }
.chat-window { position: absolute; bottom: 70px; right: 0; width: 380px; max-width: calc(100vw - 48px); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 25px 50px rgba(0,0,0,0.15); overflow: hidden; }
.chat-header { background: var(--green); color: var(--white); padding: 16px; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.chat-name { font-weight: 700; }
.chat-status { font-size: 0.75rem; opacity: 0.7; }
.chat-close { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: background var(--transition); }
.chat-close:hover { background: rgba(255,255,255,0.2); }
.chat-messages { height: 320px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: var(--surface); }
.msg { max-width: 80%; }
.msg p { padding: 12px; border-radius: var(--radius-md); font-size: 0.875rem; line-height: 1.5; }
.msg-bot { align-self: flex-start; }
.msg-bot p { background: var(--white); color: var(--text); border-bottom-left-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.msg-user { align-self: flex-end; }
.msg-user p { background: var(--green); color: var(--white); border-bottom-right-radius: 4px; }
.msg-loading p { color: var(--green); }
.chat-suggestions { padding: 12px 16px; border-top: 1px solid var(--border); background: var(--white); }
.suggestions-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.suggestions-list { display: flex; flex-wrap: wrap; gap: 8px; }
.suggestions-list button { font-size: 0.75rem; background: var(--surface); color: var(--text-muted); padding: 6px 12px; border-radius: var(--radius-full); transition: all var(--transition); }
.suggestions-list button:hover { background: var(--green); color: var(--white); }
.chat-input-wrap { padding: 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; background: var(--white); }
.chat-input-wrap input { flex: 1; padding: 10px 16px; border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 0.875rem; }
.chat-input-wrap input:focus { outline: none; border-color: var(--green); }
.chat-input-wrap button { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; transition: background var(--transition); flex-shrink: 0; }
.chat-input-wrap button:hover { background: var(--green-dark); }
.chat-escalation { padding: 8px 16px; background: var(--surface); text-align: center; }
.chat-options { display: flex; flex-direction: column; gap: 8px; padding: 4px 0; }
.chat-option-btn { display: flex; align-items: center; gap: 10px; width: 100%; padding: 12px 16px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 600; color: var(--text); cursor: pointer; transition: all var(--transition); text-align: left; }
.chat-option-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: translateX(4px); }
.chat-escalation a { font-size: 0.75rem; color: var(--text-muted); }
.chat-escalation span { text-decoration: underline; }

/* ===== ANIMATIONS ===== */
[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim="fade-left"] { transform: translateX(40px); }
[data-anim].visible { opacity: 1 !important; transform: translate(0, 0) !important; }

/* Hero content always visible (above the fold) */
.hero [data-anim] { opacity: 1; transform: none; }
.hero .hero-content { animation: heroFadeRight 0.8s ease forwards; }
.hero .hero-visual { animation: heroFadeLeft 0.8s ease 0.2s forwards; }
@keyframes heroFadeRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes heroFadeLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* Fallback: if JS fails, show all content */
.no-js [data-anim] { opacity: 1 !important; transform: none !important; }

/* ===== ZONE SELECTOR MODAL ===== */
.zone-modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(10,31,17,0.85); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 24px; }
.zone-modal-overlay.zone-modal-open { display: flex; }
.zone-modal { background: var(--white); border-radius: var(--radius-lg); max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 40px 32px; animation: modalSlideUp 0.35s ease; }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.zone-modal-header { text-align: center; margin-bottom: 32px; }
.zone-modal-logo { margin-bottom: 16px; }
.zone-modal-logo img { height: 56px; margin: 0 auto; }
.zone-modal-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--green); }
.zone-modal-title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.zone-modal-desc { color: var(--text-muted); font-size: 1rem; }
.zone-modal-grid { display: grid; gap: 12px; }
@media (min-width: 640px) { .zone-modal-grid { grid-template-columns: repeat(2, 1fr); } }
.zone-modal-card { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--radius-md); border: 2px solid var(--border); transition: all var(--transition); cursor: pointer; }
.zone-modal-card-active:hover { border-color: var(--green); background: rgba(31,124,59,0.04); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.zone-modal-card-soon { cursor: default; opacity: 0.6; }
.zone-modal-card-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(31,124,59,0.1); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.zone-modal-icon-soon { background: rgba(0,0,0,0.05); color: var(--text-muted); }
.zone-modal-card-info h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text); }
.zone-modal-card-info p { font-size: 0.8125rem; color: var(--text-muted); }
.zone-modal-card-arrow { margin-left: auto; color: var(--green); opacity: 0; transition: opacity var(--transition); }
.zone-modal-card-active:hover .zone-modal-card-arrow { opacity: 1; }
.badge-proximamente, .badge-soon { display: inline-block; padding: 4px 10px; border-radius: var(--radius-full); font-size: 0.6875rem; font-weight: 700; background: var(--yellow); color: var(--yellow-text); margin-left: auto; white-space: nowrap; }
.zone-modal-close-btn { display: block; width: 100%; margin-top: 24px; padding: 14px; border-radius: var(--radius-full); background: var(--surface); color: var(--text-muted); font-weight: 600; font-size: 1rem; transition: all var(--transition); cursor: pointer; border: none; }
.zone-modal-close-btn:hover { background: var(--border); color: var(--text); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding-bottom: 60px; }
.legal-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
@media (min-width: 768px) { .legal-title { font-size: 2.5rem; } }
.legal-company { font-size: 0.9375rem; color: var(--text-muted); font-weight: 600; margin-bottom: 32px; }
.legal-highlight { background: rgba(31,124,59,0.06); border-left: 4px solid var(--green); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-weight: 600; margin: 24px 0; }
.legal-content h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--green); margin-top: 36px; margin-bottom: 12px; }
.legal-content h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text); margin-top: 28px; margin-bottom: 10px; }
.legal-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 0.9375rem; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content li { color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; font-size: 0.9375rem; }

/* City card soon (coverage section) */
.city-card-soon:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: none; }

/* City chip soon (mobile menu) */
.city-chip-soon { cursor: default; opacity: 0.6; font-style: italic; }

/* City option soon (header dropdown) */
.city-option-soon { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-radius: 8px; color: var(--text-muted); font-size: 0.875rem; cursor: default; opacity: 0.6; }

/* Global Subzone Modal */
button.phone-link { background: none; border: none; cursor: pointer; font: inherit; }
button.mobile-phone { background: none; border: none; cursor: pointer; font: inherit; color: inherit; display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center; }
/* === Global Subzone Modal === */
.subzone-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.subzone-modal-overlay.subzone-modal-open { display: flex; animation: modalFadeIn 0.2s ease; }
.subzone-modal { background: var(--white); border-radius: var(--radius-lg); padding: 28px; max-width: 440px; width: 90%; box-shadow: 0 24px 64px rgba(0,0,0,0.25); animation: modalSlideUp 0.25s ease; }
.subzone-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.subzone-modal-header h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text); margin: 0; }
.subzone-modal-close { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 4px; border-radius: 50%; transition: background 0.2s; }
.subzone-modal-close:hover { background: rgba(0,0,0,0.08); }
.subzone-modal-body { display: flex; flex-direction: column; gap: 12px; max-height: 60vh; overflow-y: auto; }
.subzone-modal-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px; border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.08); transition: all 0.2s; }
.subzone-modal-item:hover { border-color: var(--green); background: rgba(31,124,59,0.04); }
.subzone-modal-info { display: flex; flex-direction: column; gap: 2px; }
.subzone-modal-name { font-weight: 700; font-size: 0.9375rem; color: var(--text); }
.subzone-modal-phone { font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.subzone-modal-actions { display: flex; gap: 8px; flex-shrink: 0; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Station zone divider and badges */
.station-zone-divider { padding: 8px 0 4px; }
.station-zone-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--green); padding-bottom: 8px; }
.station-badges { display: flex; gap: 6px; margin-bottom: 8px; }
.badge-tipo { font-size: 0.6875rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.04em; }
.badge-planta { background: var(--green); color: var(--white); }
.badge-estacion { background: rgba(31,124,59,0.12); color: var(--green); }

/* Utilities */
.text-white svg { color: var(--white); }
