/* =================================================================
   STYLES.CSS MAESTRO - JET PARKING (REDISEÑO PREMIUM 2026)
   ================================================================= */

/* 1. VARIABLES & RESET */
:root {
    --blue-primary: #0A66FF;
    --blue-dark: #004EC2;
    --blue-deeper: #003399;
    --blue-soft: #EBF3FF;
    --blue-soft-hover: #D6E8FF;
    --blue-overlay: rgba(10, 60, 200, 0.85);
    --blue-glow: rgba(10, 102, 255, 0.15);
    --blue-gradient: linear-gradient(135deg, #0A66FF 0%, #004EC2 100%);
    --blue-gradient-soft: linear-gradient(135deg, #EBF3FF 0%, #D6E8FF 100%);

    --text-dark: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-warm: #FAFBFE;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;

    --header-height: 72px;
    --radius: 14px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 12px 40px rgba(10, 102, 255, 0.12);
    --shadow-elevated: 0 20px 60px rgba(0,0,0,0.1);

    --color-eco: #1E8E3E;
    --color-vip: #B7791F;
    --color-success: #10B981;
}

/* Skip to content (a11y) */
.skip-to-content {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--blue-primary); color: #fff; padding: 12px 24px;
    border-radius: 0 0 8px 8px; font-weight: 600; font-size: 0.9rem;
    z-index: 10000; transition: top 0.2s ease;
}
.skip-to-content:focus { top: 0; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--white); color: var(--text-body); line-height: 1.7;
    overflow-x: hidden; font-family: 'DM Sans', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
.w-100 { width: 100%; } .mt-2 { margin-top: 10px; } .mt-4 { margin-top: 30px; } .text-center { text-align: center; } .mb-5 { margin-bottom: 30px; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mb-3 { margin-bottom: 15px; } .mb-4 { margin-bottom: 20px; } .mt-3 { margin-top: 15px; } .mt-5 { margin-top: 50px; } .pt-4 { padding-top: 30px; }
.text-muted { color: var(--text-muted); } .text-uppercase { text-transform: uppercase; }
.section-padding { padding: 120px 0; }
.section-bg-light { background: var(--bg-warm); }

/* Section Headers */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--text-dark);
    margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.2;
}
.section-header h2::after {
    content: ''; display: block; width: 48px; height: 3px; margin: 18px auto 0;
    background: var(--blue-gradient); border-radius: 3px;
}
.section-header p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; font-weight: 400; }

.section-tag {
    display: inline-block; background: var(--blue-soft); color: var(--blue-primary);
    padding: 6px 16px; border-radius: 50px; font-weight: 600; font-size: 0.8rem;
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* =================================================================
   2. HEADER
   ================================================================= */
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    height: var(--header-height);
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}
.header-content {
    position: relative; display: flex; justify-content: space-between;
    align-items: center; height: 100%; gap: 20px;
}
.logo-center-wrapper { position: static; transform: none; flex-shrink: 0; display: flex; align-items: center; }
.logo { height: 42px; width: auto; }

.nav-desktop { display: flex; gap: 30px; flex: 1; justify-content: center; white-space: nowrap; }
.nav-desktop a {
    color: var(--text-dark); font-weight: 500; font-size: 0.92rem;
    padding: 6px 0; position: relative; letter-spacing: 0.01em;
}
.nav-desktop a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--blue-gradient); border-radius: 2px;
    transition: var(--transition); transform: translateX(-50%);
}
.nav-desktop a:hover { color: var(--blue-primary); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.header-buttons-desktop { display: flex; gap: 15px; align-items: center; flex-shrink: 0; }

/* Buttons */
.btn-primary, .btn-outline, .btn-white-action {
    display: inline-flex; justify-content: center; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 10px; font-weight: 600; cursor: pointer; white-space: nowrap; border: none;
    font-size: 0.95rem; letter-spacing: 0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
    background: var(--blue-gradient); color: #fff; border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(10, 102, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10, 102, 255, 0.35); filter: brightness(1.05); }
.btn-outline {
    background: transparent; color: var(--blue-primary); border: 2px solid var(--blue-primary);
}
.btn-outline:hover { background: var(--blue-soft); transform: translateY(-2px); box-shadow: 0 4px 12px var(--blue-glow); }
.btn-text { color: var(--blue-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.btn-text:hover { gap: 10px; }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }

.btn-submit { text-transform: uppercase; letter-spacing: 0.5px; font-size: 1.05rem; padding: 16px 24px; }

/* Mobile Menu */
.hamburger {
    display: none; background: none; border: none; flex-direction: column;
    justify-content: space-between; width: 26px; height: 20px; cursor: pointer; z-index: 1002;
}
.hamburger span { width: 100%; height: 2px; background: var(--text-dark); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px; height: 100vh;
    background: var(--white); padding: 100px 32px 40px; z-index: 1001;
    box-shadow: -20px 0 60px rgba(0,0,0,0.12);
    display: flex; flex-direction: column; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; display: block; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu hr { border: 0; border-top: 1px solid var(--border-light); margin: 16px 0; }

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: 1000;
    opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* CTA Sticky Mobile */
.cta-sticky-mobile {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px; z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-light);
}
.cta-sticky-mobile .btn-primary { width: 100%; justify-content: center; padding: 14px 20px; font-size: 1rem; }

/* =================================================================
   3. HERO
   ================================================================= */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding-top: var(--header-height); padding-bottom: 60px;
    color: #fff; overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 25%; z-index: 1;
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay-blue {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(10, 40, 160, 0.85) 0%, rgba(0, 20, 80, 0.68) 50%, rgba(10, 60, 200, 0.78) 100%);
    z-index: 2;
}
.hero-inner { position: relative; z-index: 5; width: 100%; max-width: 1100px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 600; color: #fff;
    margin-bottom: 24px;
}
.hero-badge svg { flex-shrink: 0; }

.hero-content { text-align: center; }
.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 700; line-height: 1.08;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3); margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-subtitle {
    font-size: 1.2rem; margin-bottom: 44px; opacity: 0.92; text-align: center;
    line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* Booking Form */
.hero-booking-wrapper {
    background: rgba(255, 255, 255, 0.97); color: var(--text-dark);
    padding: 28px 32px; border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); text-align: left; margin-bottom: 40px;
}
.hero-form-grid {
    display: grid; grid-template-columns: 1fr 1.4fr 1.4fr 1fr;
    gap: 15px; align-items: end;
}
.input-group label {
    display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.05em;
}
.input-wrapper {
    position: relative; background: #F3F6F9; border-radius: 10px; border: 1.5px solid #E2E8F0;
    display: flex; align-items: center; transition: var(--transition);
}
.input-wrapper:focus-within { border-color: var(--blue-primary); box-shadow: 0 0 0 3px var(--blue-glow); }
.input-wrapper select, .input-wrapper input {
    width: 100%; padding: 13px 15px; border: none; background: transparent;
    font-size: 0.95rem; outline: none; color: var(--text-dark); font-family: inherit;
}
.date-row { display: flex; gap: 10px; }
.date-input { flex: 1.5; } .time-input { flex: 1; }
.btn-group button { height: 50px; font-size: 1rem; }

/* Trust Badges */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.badge-item {
    background: rgba(255,255,255,0.12); color: #fff; padding: 10px 20px;
    border-radius: 50px; font-weight: 500; font-size: 0.88rem; backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); letter-spacing: 0.01em;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
    cursor: default;
}
.badge-item:hover { background: rgba(255,255,255,0.2); }
.badge-item svg { flex-shrink: 0; }

/* =================================================================
   4. STATS STRIP
   ================================================================= */
.stats-strip {
    background: var(--white); border-bottom: 1px solid var(--border-light);
    padding: 50px 0;
}
.stats-strip-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    text-align: center;
}
.stat-strip-item { position: relative; padding: 10px 0; }
.stat-strip-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 15%; height: 70%;
    width: 1px; background: var(--border-color);
}
.stat-number {
    display: block; font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 600;
    color: var(--blue-primary); line-height: 1; margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* =================================================================
   5. STEPS / HOW IT WORKS
   ================================================================= */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
    position: relative; background: var(--white); padding: 40px 30px 36px;
    border-radius: var(--radius-lg); text-align: center;
    box-shadow: var(--shadow-xs); border: 1px solid var(--border-light);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); cursor: default;
    overflow: hidden;
}
.step-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--blue-gradient); opacity: 0; transition: opacity 0.35s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: rgba(10, 102, 255, 0.15); }
.step-card:hover::before { opacity: 1; }
.step-number {
    position: absolute; top: 16px; right: 20px;
    font-size: 3.5rem; font-weight: 600; color: var(--blue-soft);
    line-height: 1; letter-spacing: -0.04em;
    transition: color 0.35s ease;
}
.step-card:hover .step-number { color: var(--blue-soft-hover); }
.step-icon {
    width: 68px; height: 68px; margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-soft); border-radius: 16px; color: var(--blue-primary);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover .step-icon { background: var(--blue-gradient); color: #fff; transform: scale(1.05) rotate(-3deg); border-radius: 18px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; color: var(--text-dark); letter-spacing: -0.01em; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* =================================================================
   6. BENEFITS
   ================================================================= */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-item {
    background: var(--white); padding: 36px 28px; border-radius: var(--radius-lg); text-align: center;
    box-shadow: var(--shadow-xs); border: 1px solid var(--border-light);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); position: relative; cursor: default;
}
.benefit-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: rgba(10, 102, 255, 0.15); }
.benefit-icon {
    font-size: 2rem; margin: 0 auto 20px; width: 68px; height: 68px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-soft); border-radius: 16px; color: var(--blue-primary);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefit-item:hover .benefit-icon { background: var(--blue-gradient); color: #fff; transform: scale(1.05) rotate(-3deg); border-radius: 18px; }
.benefit-item h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; color: var(--text-dark); letter-spacing: -0.01em; }
.benefit-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* =================================================================
   7. REVIEWS (Home)
   ================================================================= */
.reviews-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
    background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 30px; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; cursor: default;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(10, 102, 255, 0.12); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.reviewer-info { display: flex; gap: 12px; align-items: center; }
.avatar-circle {
    width: 46px; height: 46px; background: var(--blue-soft); color: var(--blue-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--text-dark); display: block; font-size: 0.95rem; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-body { color: #475569; font-size: 0.95rem; line-height: 1.7; flex-grow: 1; }
.verified-badge { display: flex; align-items: center; gap: 4px; color: #166534; font-weight: 600; font-size: 0.8rem; white-space: nowrap; }

/* Services Grid (used in other pages) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--border-light); position: relative; transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.service-card.featured { border: 2px solid var(--blue-primary); }
.badge-featured { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue-primary); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.service-icon { font-size: 3rem; margin-bottom: 20px; }
.service-card ul { text-align: left; margin: 20px 0; }
.service-card ul li { margin-bottom: 8px; padding-left: 20px; position: relative; color: var(--text-muted); }
.service-card ul li::before { content: "✓"; color: var(--blue-primary); position: absolute; left: 0; font-weight: bold; }

/* =================================================================
   8. LOCATION
   ================================================================= */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--text-dark); margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.2; }
.location-info > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.6; }
.location-list li {
    margin-bottom: 16px; font-size: 1rem; display: flex; align-items: center; gap: 14px;
    color: var(--text-body); line-height: 1.5;
}
.location-list li svg { flex-shrink: 0; }
.location-map-wrapper { height: 440px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); background: #eee; }
.location-img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.location-map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* =================================================================
   9. FAQ
   ================================================================= */
.faq-container { max-width: 760px; margin: auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius); margin-bottom: 12px;
    padding: 22px 26px; box-shadow: var(--shadow-xs); border: 1px solid var(--border-light);
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(10, 102, 255, 0.15); box-shadow: var(--shadow-card); }
.faq-item[open] { border-color: rgba(10, 102, 255, 0.2); box-shadow: 0 4px 20px var(--blue-glow); }
.faq-item summary {
    font-weight: 600; cursor: pointer; display: flex; justify-content: space-between;
    color: var(--text-dark); list-style: none; font-size: 1.02rem; line-height: 1.4; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; color: var(--blue-primary); font-size: 1.4rem; font-weight: 500;
    flex-shrink: 0; transition: var(--transition); width: 24px; text-align: center;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item[open] summary { color: var(--blue-primary); }
.faq-item p { margin-top: 14px; color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* =================================================================
   9b. APP SECTION (DIFFERENTIATOR)
   ================================================================= */
.section-app { padding: 100px 0; background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%); }
.app-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.app-image img { max-width: 100%; height: auto; }
.app-info .section-tag { margin-bottom: 12px; }
.app-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--text-dark); margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.2; }
.app-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; font-weight: 400; }
.app-features { display: flex; flex-direction: column; gap: 24px; }
.app-feature-item { display: flex; gap: 16px; align-items: flex-start; }
.app-feature-icon { width: 48px; height: 48px; background: var(--blue-gradient); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-feature-icon svg { width: 24px; height: 24px; }
.app-feature-item strong { display: block; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.app-feature-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.store-buttons { display: flex; gap: 16px; margin-top: 36px; }
.store-btn { display: flex; align-items: center; gap: 12px; padding: 12px 24px; background: #111; color: white; border-radius: 12px; text-decoration: none; transition: var(--transition); }
.store-btn:hover { background: #333; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.store-btn svg { flex-shrink: 0; }
.store-label { font-size: 0.65rem; opacity: 0.8; }
.store-name { font-size: 0.95rem; font-weight: 600; }

@media (max-width: 768px) {
    .app-content { grid-template-columns: 1fr; text-align: center; }
    .app-image { order: -1; }
    .app-feature-item { text-align: left; }
    .store-buttons { justify-content: center; flex-wrap: wrap; }
}

/* =================================================================
   10. CTA FINAL
   ================================================================= */
.app-promo-section, .cta-final-section {
    position: relative; padding: 140px 0;
    background: url('assets/hero.webp') no-repeat center 25%;
    background-size: cover; color: #fff; overflow: hidden; text-align: center;
}
.app-overlay-dark, .cta-overlay-dark {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(10, 30, 80, 0.9) 0%, rgba(10, 50, 150, 0.78) 50%, rgba(0, 20, 60, 0.92) 100%); z-index: 1;
}
.app-promo-container, .cta-content { position: relative; z-index: 2; }

.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); letter-spacing: -0.02em; font-weight: 600; }
.cta-content p { font-size: 1.15rem; margin-bottom: 40px; opacity: 0.9; }

.btn-white-action {
    background: #fff; color: var(--blue-primary); display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 44px; border-radius: 12px; font-weight: 600; font-size: 1.05rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2); border: none; cursor: pointer;
    letter-spacing: 0.02em; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-white-action:hover {
    transform: translateY(-3px); background: #fff;
    box-shadow: 0 14px 40px rgba(0,0,0,0.3); color: var(--blue-dark);
}

/* =================================================================
   11. FOOTER
   ================================================================= */
.footer { background: linear-gradient(180deg, #0B1220 0%, #070D18 100%); color: #94a3b8; padding: 80px 0 36px; font-size: 0.93rem; }
.footer-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-col h3 { color: #fff; font-size: 0.8rem; margin-bottom: 20px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col p { line-height: 1.7; }
.footer-col a { display: block; margin-bottom: 12px; color: #B0BEC5; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-availability {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
    padding: 8px 16px; background: rgba(255,255,255,0.06); border-radius: 50px;
    font-size: 0.85rem; color: #94a3b8;
}
.footer-line { border: 0; border-top: 1px solid rgba(255,255,255,0.06); margin: 30px 0; }
.footer-info { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; font-size: 0.88rem; color: #64748b; }
.footer-info-item { display: inline-flex; align-items: center; gap: 6px; }
.footer-bottom { text-align: center; margin-top: 24px; color: #475569; font-size: 0.85rem; }

/* =================================================================
   12. APP PROMO (from como-funciona)
   ================================================================= */
.app-promo-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; text-align: left; }
.app-promo-text h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 600; color: #fff; }
.text-highlight { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: var(--blue-primary); }
.app-features-list li { color: #fff; margin-bottom: 12px; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.app-buttons { display: flex; gap: 15px; margin-top: 30px; }
.app-buttons img { height: 45px; transition: 0.3s; }
.app-buttons img:hover { transform: scale(1.05); }
.app-promo-image img { max-width: 100%; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

/* =================================================================
   13. PAGE HERO (subpages)
   ================================================================= */
.page-hero {
    position: relative; padding: 150px 0 80px;
    background: url('assets/hero.webp') no-repeat center 17%;
    background-size: cover; color: #fff; text-align: center; overflow: hidden;
}
.page-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(10, 40, 160, 0.82) 0%, rgba(0, 20, 80, 0.65) 50%, rgba(10, 60, 200, 0.75) 100%); z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: auto; }
.page-hero-content h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,0.2); letter-spacing: -0.01em; }
.page-hero-content p { font-size: 1.1rem; opacity: 0.9; line-height: 1.6; }

.badge-service {
    display: inline-block; background: var(--blue-soft); color: var(--blue-primary);
    padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem;
    margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-premium { background: #FFD700; color: #000; }

/* =================================================================
   14. COMO FUNCIONA - Timeline
   ================================================================= */
.dual-timeline-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: stretch; }
.timeline-divider { width: 1px; background: #e5e7eb; height: 100%; margin-top: 20px; }
.timeline-column { display: flex; flex-direction: column; padding: 10px; }
.column-header { text-align: left; margin-bottom: 40px; }
.column-header h2 { font-size: 2rem; margin-bottom: 10px; }

.timeline { position: relative; padding-left: 54px; margin: 0; flex-grow: 1; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--blue-primary) 0%, var(--border-color) 100%); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-number {
    position: absolute; left: -54px; top: 0; width: 40px; height: 40px;
    background: var(--white); border: 2px solid var(--blue-primary); color: var(--blue-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem; z-index: 2; box-shadow: 0 2px 8px var(--blue-glow);
}
.timeline-premium .timeline-number { border-color: var(--blue-dark); color: var(--blue-dark); background: var(--blue-soft); }
.timeline-content h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--text-dark); font-weight: 600; }
.timeline-content p { color: var(--text-muted); line-height: 1.6; }
.timeline-btn-wrapper { margin-top: 44px; width: 100%; }

/* =================================================================
   15. TARIFAS
   ================================================================= */
.comparison-wrapper { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 30px; align-items: center; max-width: 1000px; margin: 0 auto; }
.compare-card { background: #fff; padding: 50px 40px; border-radius: 16px; border: 1px solid #f0f0f0; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: 0.3s; height: 100%; display: flex; flex-direction: column; }
.compare-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--blue-soft); }
.compare-card.featured { border: 2px solid var(--color-vip); background: #FFFBEB; transform: scale(1.02); z-index: 2; }
.price-tag { display: inline-block; padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 0.5px; }
.tag-eco { background: #E6F4EA; color: var(--color-eco); }
.tag-vip { background: #FFF8E1; color: var(--color-vip); }
.compare-list { text-align: left; margin: 0 auto 30px auto; padding: 0; display: inline-block; width: 100%; }
.compare-list li { margin-bottom: 15px; font-size: 1.05rem; color: var(--text-dark); display: flex; align-items: flex-start; gap: 12px; line-height: 1.4; }
.check-icon { font-style: normal; font-weight: bold; min-width: 20px; }
.list-eco .check-icon { color: var(--color-eco); }
.list-vip .check-icon { color: var(--color-vip); }
.compare-vs { width: 50px; height: 50px; background: #fff; border: 1px solid #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.9rem; color: #ccc; box-shadow: 0 4px 10px rgba(0,0,0,0.05); z-index: 3; }

.pricing-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px 30px; text-align: center; position: relative; transition: var(--transition); box-shadow: var(--shadow-xs); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(10, 102, 255, 0.15); }
.pricing-card.featured-pricing { border: 2px solid var(--blue-primary); background: linear-gradient(180deg, #F8FAFF 0%, #EFF6FF 100%); transform: scale(1.02); z-index: 2; }
.pricing-card.featured-pricing:hover { transform: scale(1.02) translateY(-4px); }

.badge-featured-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue-primary); color: var(--white); padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--text-dark); }
.pricing-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.pricing-cost { margin: 25px 0; color: var(--text-dark); }
.pricing-cost .from { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 5px; }
.pricing-cost .amount { font-size: 3.5rem; font-weight: 700; color: var(--blue-primary); line-height: 1; }
.pricing-cost .period { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }
.pricing-features { margin: 30px 0; text-align: left; padding-left: 10px; }
.pricing-features li { margin-bottom: 12px; font-size: 1rem; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }

.pricing-table-wrapper { max-width: 900px; margin: 0 auto; background: #fff; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 40px; overflow: hidden; }
.pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.pricing-table th, .pricing-table td { padding: 15px 20px; text-align: center; border-bottom: 1px solid #f0f0f0; font-size: 1rem; }
.pricing-table th { background-color: var(--bg-light); color: var(--text-dark); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }
.pricing-table th:first-child, .pricing-table td:first-child { text-align: left; font-weight: 600; color: var(--blue-dark); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-note { font-size: 0.9rem; color: var(--text-muted); font-style: italic; }

.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.extra-card { background: var(--white); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border-light); text-align: center; transition: var(--transition); }
.extra-card:hover { border-color: rgba(10, 102, 255, 0.15); transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.extra-icon { font-size: 2.5rem; margin-bottom: 15px; }
.extra-card h3 { font-size: 1.2rem; margin-bottom: 5px; }
.extra-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; }
.extra-price { display: inline-block; background: var(--blue-soft); color: var(--blue-primary); font-weight: 700; padding: 5px 12px; border-radius: 20px; }

.transparency-box { background: var(--white); padding: 50px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-card); max-width: 1000px; margin: 0 auto; border: 1px solid var(--border-light); }
.transparency-icon { font-size: 2.5rem; margin-bottom: 16px; }
.transparency-box h2 { font-size: 1.8rem; letter-spacing: -0.02em; }
.transparency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; text-align: left; }
.transparency-item { padding: 18px 20px; border-left: 3px solid var(--blue-primary); background: var(--bg-warm); border-radius: 0 var(--radius) var(--radius) 0; transition: var(--transition); }
.transparency-item:hover { background: var(--blue-soft); }
.transparency-item strong { display: block; color: var(--text-dark); margin-bottom: 4px; font-size: 0.95rem; }

.pricing-notes-box { background: #F8FAFC; border-left: 5px solid var(--blue-primary); padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); max-width: 900px; margin: 80px auto; }
.pricing-notes-box h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 1.3rem; color: var(--text-dark); margin-top: 0; }
.info-icon { font-size: 1.5rem; }
.notes-list { list-style: none; padding: 0; margin: 0; }
.notes-list li { margin-bottom: 12px; font-size: 0.95rem; color: var(--text-muted); position: relative; padding-left: 20px; line-height: 1.6; }
.notes-list li:last-child { margin-bottom: 0; }
.notes-list li::before { content: "•"; color: var(--blue-primary); font-weight: bold; font-size: 1.5rem; position: absolute; left: 0; top: -4px; }
.notes-list strong { color: var(--text-dark); font-weight: 600; }

.app-mgmt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 30px; }
.feature-small { background: var(--bg-light); padding: 20px; border-radius: 12px; transition: 0.3s; }
.feature-small .icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.app-mgmt-image img { border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* =================================================================
   16. CHECKOUT
   ================================================================= */
.checkout-body { background: #F3F4F6; min-height: 100vh; }
.checkout-body .section-padding { padding-top: 40px; padding-bottom: 80px; }

.checkout-header { background: #fff; border-bottom: 1px solid #e2e8f0; padding: 15px 0; position: sticky; top: 0; z-index: 100; }
.checkout-header-content { display: flex; justify-content: space-between; align-items: center; }
.checkout-logo { height: 35px; }
.back-link { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.back-link:hover { color: var(--blue-primary); }
.secure-badge { background: #DCFCE7; color: #166534; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }

.checkout-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 40px; }
.checkout-title { font-size: 1.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.checkout-subtitle { color: var(--text-muted); margin-bottom: 25px; }

.form-section { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); margin-bottom: 20px; border: 1px solid var(--border-light); transition: var(--transition); }
.form-section:hover { box-shadow: var(--shadow-card); }
.section-heading { font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; padding-bottom: 15px; border-bottom: 1px solid #f1f5f9; }
.section-icon { font-size: 1.2rem; }

.options-grid { display: grid; gap: 15px; }
.options-grid.col-2 { grid-template-columns: 1fr 1fr; }
.options-grid.col-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vehicle-section .form-row-grid { grid-template-columns: 1fr 1fr; }

.option-card { position: relative; cursor: pointer; display: block; }
.option-card input { display: none; }
.card-content { background: #fff; border: 2px solid #e2e8f0; border-radius: 12px; padding: 20px; transition: all 0.2s ease; height: 100%; display: flex; align-items: center; gap: 15px; position: relative; }
.option-card:hover .card-content { border-color: #cbd5e1; background: #f8fafc; }
.option-card input:checked + .card-content { border-color: var(--blue-primary); background: #EFF6FF; box-shadow: 0 4px 12px rgba(10, 102, 255, 0.1); }
.card-content.vertical { flex-direction: column; text-align: center; gap: 10px; padding: 25px 15px; }
.card-content.centered { justify-content: center; flex-direction: column; padding: 15px; text-align: center; gap: 8px; }

.card-icon-wrapper { font-size: 1.8rem; width: 50px; height: 50px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.option-card input:checked + .card-content .card-icon-wrapper { background: var(--blue-primary); color: #fff; }
.card-text strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 3px; }
.card-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

.terminal-icon { font-size: 1.5rem; }
.terminal-name { font-size: 0.95rem; color: var(--text-dark); }
.option-card input:checked + .card-content .terminal-name { color: var(--blue-primary); }

.insurance-header { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 5px; justify-content: center; }
.insurance-price { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin: 5px 0; }
.insurance-price small { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.insurance-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }

.card-check { width: 20px; height: 20px; border: 2px solid #cbd5e1; border-radius: 50%; position: absolute; top: 15px; right: 15px; transition: 0.2s; }
.option-card input:checked + .card-content .card-check { border-color: var(--blue-primary); background: var(--blue-primary); box-shadow: inset 0 0 0 3px #fff; }
.badge-bestseller { position: absolute; top: -10px; right: 15px; background: #F59E0B; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
.recommended-border .card-content { border-color: #F59E0B; }

.input-group { margin-bottom: 0; }
.input-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.input-field { width: 100%; padding: 12px 15px; border: 1.5px solid var(--border-color); border-radius: 10px; font-size: 0.95rem; background: var(--white); transition: var(--transition); outline: none; height: 48px; font-family: inherit; }
.input-field:focus { border-color: var(--blue-primary); box-shadow: 0 0 0 3px var(--blue-glow); }
.input-field.uppercase { text-transform: uppercase; }
.select-field { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }

.payment-options-container { display: flex; flex-direction: column; gap: 15px; }
.payment-option { display: flex; align-items: center; justify-content: space-between; padding: 18px; border: 1px solid #e2e8f0; border-radius: 12px; cursor: pointer; transition: 0.2s; background: #fff; position: relative; }
.payment-option input { display: none; }
.payment-content { display: flex; align-items: center; gap: 15px; font-weight: 500; color: var(--text-dark); }
.radio-circle { width: 20px; height: 20px; border: 2px solid #cbd5e1; border-radius: 50%; position: relative; }
.payment-option input:checked ~ .payment-content .radio-circle { border-color: var(--blue-primary); }
.payment-option input:checked ~ .payment-content .radio-circle::after { content: ''; width: 10px; height: 10px; background: var(--blue-primary); border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.payment-option.active-option { border-color: var(--blue-primary); background: #EFF6FF; }
.disabled-option { opacity: 0.6; cursor: not-allowed; background: #f8fafc; border-style: dashed; }
.badge-disabled { background: #e2e8f0; color: #64748b; font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; font-weight: 600; }
.badge-secure { background: #DCFCE7; color: #166534; font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; font-weight: 600; }
.security-note { font-size: 0.85rem; color: #166534; display: flex; align-items: center; gap: 6px; margin-top: 15px; font-weight: 500; }

.checkout-summary-col { position: -webkit-sticky; position: sticky; top: 110px; align-self: start; height: fit-content; z-index: 10; }
.sticky-card { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); border: 1px solid #e2e8f0; width: 100%; }
.summary-title { font-size: 1.2rem; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
.summary-dates { display: flex; justify-content: space-between; align-items: center; background: #f8fafc; padding: 15px; border-radius: 8px; margin-bottom: 20px; text-align: center; }
.date-label { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 4px; }
.date-value { display: block; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.time-value { font-size: 0.85rem; color: var(--text-muted); }
.arrow-divider { color: var(--blue-primary); font-size: 1.2rem; }
.summary-details-list { margin-bottom: 25px; }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; border-bottom: 1px dashed #f1f5f9; padding-bottom: 8px; }
.summary-item:last-child { border-bottom: none; }
.summary-item span { color: var(--text-muted); }
.summary-item strong { color: var(--text-dark); }
.summary-total-block { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 20px; border-top: 2px solid #e2e8f0; margin-bottom: 25px; }
.total-label { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.total-amount { font-size: 1.8rem; font-weight: 700; color: var(--blue-primary); }
.trust-features { margin-top: 20px; text-align: center; }
.trust-features li { display: block; margin-bottom: 8px; font-size: 0.85rem; color: #166534; font-weight: 500; }
.mobile-cta-container { display: none; }

/* =================================================================
   17. API / DEVELOPERS
   ================================================================= */
.api-container { max-width: 1000px; margin: 0 auto; }
.code-block { background: #1e293b; color: #e2e8f0; padding: 20px; border-radius: 8px; font-family: 'Fira Code', monospace; font-size: 0.9rem; overflow-x: auto; margin: 15px 0 25px; border: 1px solid #334155; position: relative; }
.code-block::before { content: "JSON"; position: absolute; top: 0; right: 0; background: #334155; color: #94a3b8; font-size: 0.7rem; padding: 2px 8px; border-bottom-left-radius: 8px; font-weight: 700; }
.method-badge { display: inline-block; padding: 4px 10px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.method-badge.get { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.method-badge.post { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.endpoint-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.endpoint-url { font-family: 'Fira Code', monospace; font-weight: 600; color: var(--text-dark); }
.param-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 0.9rem; }
.param-table th { text-align: left; background: #f8fafc; padding: 10px; border-bottom: 2px solid #e2e8f0; }
.param-table td { padding: 10px; border-bottom: 1px solid #e2e8f0; vertical-align: top; }
.mono { font-family: 'Fira Code', monospace; color: #d63384; background: #fdf2f8; padding: 2px 5px; border-radius: 4px; }
.toc { background: #f8fafc; padding: 20px; border-radius: 8px; border: 1px solid #e2e8f0; margin-bottom: 40px; }
.toc ul { list-style: none; padding: 0; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--blue-primary); font-weight: 500; text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* =================================================================
   18. LEGAL PAGES
   ================================================================= */
.legal-container { max-width: 900px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; margin-bottom: 20px; font-size: 1.5rem; color: var(--text-dark); border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
.legal-content h3 { margin-top: 25px; margin-bottom: 10px; font-size: 1.1rem; color: var(--blue-dark); }
.legal-content p, .legal-content li { font-size: 1rem; line-height: 1.7; color: #475569; margin-bottom: 15px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 20px; }
.toc-box { background: #f8fafc; padding: 25px; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 40px; }
.toc-box h4 { margin-top: 0; margin-bottom: 15px; color: var(--text-dark); }
.toc-box ul { list-style: none; padding: 0; margin: 0; }
.toc-box li { margin-bottom: 8px; }
.toc-box a { color: var(--blue-primary); text-decoration: none; font-weight: 500; }
.toc-box a:hover { text-decoration: underline; }

.table-responsive { display: block; width: 100%; overflow-x: auto; margin-bottom: 30px; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 700px; background: #fff; }
.legal-table th { background-color: #f8fafc; color: var(--text-dark); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; padding: 18px 20px; text-align: left; border-bottom: 2px solid #e2e8f0; }
.legal-table td { padding: 16px 20px; border-bottom: 1px solid #f1f5f9; color: #475569; line-height: 1.5; vertical-align: top; }
.legal-table tr:hover td { background-color: #fcfcfc; }
.legal-table tr:last-child td { border-bottom: none; }
.cookie-badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.cookie-badge.tec { background: #e2e8f0; color: #475569; }
.cookie-badge.ana { background: #dbeafe; color: #1e40af; }
.cookie-badge.mkt { background: #fef3c7; color: #92400e; }

/* =================================================================
   19. OPINIONES PAGE
   ================================================================= */
.reviews-summary-box { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px; box-shadow: var(--shadow-card); display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.total-score { text-align: center; min-width: 150px; }
.big-score { font-size: 4rem; font-weight: 700; color: var(--text-dark); line-height: 1; display: block; }
.total-stars { color: #F59E0B; font-size: 1.5rem; margin: 10px 0; display: block; }
.score-breakdown { flex-grow: 1; max-width: 500px; min-width: 300px; }
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.bar-container { flex-grow: 1; height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: #F59E0B; border-radius: 4px; }

.reviews-toolbar { background: var(--bg-light); padding: 20px; border-radius: 12px; display: flex; flex-wrap: wrap; gap: 15px; align-items: center; justify-content: space-between; margin-bottom: 30px; border: 1px solid #e2e8f0; }
.filter-group { display: flex; gap: 10px; flex-wrap: wrap; }
.search-reviews { flex-grow: 1; max-width: 300px; }

.reviews-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.review-meta { border-top: 1px solid #f1f5f9; padding-top: 15px; margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.service-tag { padding: 4px 10px; border-radius: 20px; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; }
.tag-valet { background: #dbeafe; color: #1e40af; }
.tag-parking { background: #dcfce7; color: #166534; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; margin: 40px 0; }
.stat-box { background: #fff; padding: 20px; border-radius: 12px; border: 1px solid #eee; }
.stat-percent { font-size: 2.5rem; font-weight: 700; color: var(--blue-primary); display: block; margin-bottom: 5px; }

.rating-input { display: flex; flex-direction: row-reverse; justify-content: center; gap: 5px; margin-bottom: 15px; }
.rating-input input { display: none; }
.rating-input label { font-size: 2.5rem; color: #e2e8f0; cursor: pointer; transition: 0.2s; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: #F59E0B; }

#review-form .btn-submit { width: 100%; max-width: 300px; margin: 0 auto; display: block; }
#review-form .btn-submit:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }

/* =================================================================
   20. UTILITIES (other pages)
   ================================================================= */
.valet-desc { font-size: 1.05rem; color: var(--text-muted); text-align: justify; line-height: 1.7; }
.benefits-grid-responsive { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.timeline-centered { max-width: 800px; margin: 0 auto; }
.pricing-stack { display: flex; flex-direction: column; gap: 30px; }
.no-transform { transform: none; }

/* =================================================================
   21. ANIMATIONS
   ================================================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered animations */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1; transform: translateY(0);
}
/* Hero elements are always visible - no flash of invisible content */
.hero .fade-up {
    opacity: 1; transform: translateY(0);
}

/* Staggered children */
.steps-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.steps-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

.benefits-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.benefits-grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.benefits-grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.benefits-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.benefits-grid .fade-up:nth-child(5) { transition-delay: 0.32s; }
.benefits-grid .fade-up:nth-child(6) { transition-delay: 0.4s; }

.reviews-grid-home .fade-up:nth-child(1) { transition-delay: 0s; }
.reviews-grid-home .fade-up:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid-home .fade-up:nth-child(3) { transition-delay: 0.2s; }

.stats-strip-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.stats-strip-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stats-strip-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stats-strip-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }

.trust-badges .badge-item:nth-child(1) { transition-delay: 0.1s; }
.trust-badges .badge-item:nth-child(2) { transition-delay: 0.2s; }
.trust-badges .badge-item:nth-child(3) { transition-delay: 0.3s; }
.trust-badges .badge-item:nth-child(4) { transition-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    .hero-bg { animation: none; }
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Selection color */
::selection { background: var(--blue-soft); color: var(--blue-dark); }

/* Focus styles */
:focus-visible { outline: 2px solid var(--blue-primary); outline-offset: 2px; border-radius: 4px; }

/* Smooth image load */
img { transition: opacity 0.3s ease; }

/* Link hover */
.legal-content a, .footer-col a { transition: all 0.2s ease; }

/* =================================================================
   22. RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
    .nav-desktop { gap: 15px; font-size: 0.9rem; }
    .logo { height: 35px; }
}

@media (max-width: 1024px) {
    .nav-desktop, .header-buttons-desktop { display: none; }
    .hamburger { display: flex; }
    .header-content { justify-content: space-between; }
    .hero-form-grid { grid-template-columns: 1fr 1fr; }
    .btn-group { grid-column: span 2; }
    .benefits-grid, .reviews-grid-home, .services-grid, .footer-cols, .steps-grid { grid-template-columns: 1fr 1fr; }
    .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-strip-item:nth-child(2)::after { display: none; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary-col { position: static; top: auto; align-self: auto; height: auto; order: -1; margin-bottom: 30px; }
    .cta-sticky-mobile { display: block; }
    main { padding-bottom: 70px; }
}

@media (max-width: 768px) {
    .header { padding: 0 15px; }
    .logo { height: 40px; }
    .section-padding { padding: 80px 0; }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 50px; height: auto; }
    .hero-content h1 { font-size: 2rem; letter-spacing: -0.02em; }
    .hero-booking-wrapper { padding: 20px; border-radius: var(--radius); }
    .section-header h2 { font-size: 1.8rem; }
    .cta-content h2 { font-size: 2rem; }
    .page-hero-content h1 { font-size: 2rem; }
    .section-header { margin-bottom: 50px; }

    .hero-form-grid, .benefits-grid, .reviews-grid-home, .services-grid, .footer-cols, .location-grid, .app-promo-container, .dual-timeline-grid, .app-mgmt-grid, .app-features-grid, .pricing-cards-grid, .comparison-wrapper, .transparency-grid, .checkout-grid, .options-grid.col-2, .options-grid.col-3, .form-row-grid, .dates-grid, .steps-grid, .stats-strip-grid {
        display: flex; flex-direction: column; gap: 25px;
    }

    .stat-strip-item::after { display: none; }

    .btn-group, .input-group, .input-wrapper { width: 100%; }
    .date-row { flex-direction: row; gap: 10px; }
    @media (max-width: 400px) { .date-row { flex-direction: column; } }

    .footer-col a { display: block; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); margin: 0; }
    .app-promo-image { order: -1; margin-bottom: 30px; }
    .app-mgmt-image { order: -1; }
    .timeline { padding-left: 0; margin-left: 15px; border-left: 2px solid #e2e8f0; }
    .timeline::before { display: none; }
    .timeline-item { padding-left: 35px; margin-bottom: 40px; }

    .desktop-cta { display: none; }
    .mobile-cta-container { display: block; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; padding: 15px 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 999; }
    .checkout-body { padding-bottom: 80px; }
    .checkout-summary-col { order: initial; margin-bottom: 0; margin-top: 30px; }
    .terminal-grid { display: grid; grid-template-columns: repeat(3, 1fr) !important; gap: 8px; }

    .reviews-summary-box { flex-direction: column; text-align: center; gap: 20px; }
    .score-breakdown { width: 100%; }
    .reviews-toolbar { flex-direction: column; align-items: stretch; }
    .search-reviews { max-width: 100%; }

    .footer-info { flex-direction: column; align-items: center; gap: 12px; }
    .payment-methods { padding: 16px; }
    .payment-icons { gap: 12px; }
    .payment-icon { height: 28px; }
}

/* =================================================================
   23. GALLERY
   ================================================================= */
.section-gallery { padding: 48px 0; background: #f8fafc; }
.gallery-row {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-info { flex: 0 0 240px; }
.gallery-info h3 { font-size: 1.25rem; margin: 10px 0 8px; line-height: 1.4; }
.gallery-info p { font-size: 0.875rem; color: #666; line-height: 1.6; }
.gallery-strip {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-thumb:hover .gallery-zoom-icon { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-row { flex-direction: column; gap: 20px; text-align: center; }
    .gallery-info { flex: none; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

/* =================================================================
   24. PAYMENT METHODS
   ================================================================= */
.payment-methods { text-align: center; padding: 24px; margin-top: 32px; }
.payment-label { font-size: 0.875rem; color: #666; margin-bottom: 12px; display: block; }
.payment-icons { display: flex; justify-content: center; gap: 20px; align-items: center; flex-wrap: wrap; }
.payment-icon { height: 32px; width: auto; opacity: 0.7; transition: opacity 0.2s ease; }
.payment-icon:hover { opacity: 1; }

.footer-payment-strip { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 0; margin-top: 8px; }
.footer-payment-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-payment-icon { height: 20px; width: auto; opacity: 0.5; transition: opacity 0.2s ease; }
.footer-payment-icon:hover { opacity: 0.8; }
