/* ============================ INDEX CSS ============================ */

/* ═══════════════════════════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cab-orange:   #FF6B00;
  --cab-yellow:   #FFD000;
  --cab-lime:     #B8F400;
  --cab-sky:      #00C8FF;
  --cab-pink:     #FF3CAC;
  --cab-dark:     #1A1200;
  --cab-white:    #FFFDF5;
  --cab-cream:    #FFF8E7;
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;

  --font-display: 'Fredoka', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --shadow-pop: 0 8px 0 rgba(0,0,0,0.18);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cab-white);
  color: var(--cab-dark);
  overflow-x: hidden;
  cursor: default;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255,253,245,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--cab-yellow);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(255,107,0,.15); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cab-orange);
  letter-spacing: -.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-logo span { color: var(--cab-dark); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: .95rem;
  color: var(--cab-dark);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cab-orange); }

.nav-cta {
  background: var(--wa-green);
  color: #fff !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-weight: 800 !important;
  box-shadow: 0 4px 0 var(--wa-dark);
  transition: transform .15s, box-shadow .15s !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 var(--wa-dark) !important;
  color: #fff !important;
}

/* ── Separador visual entre grupos del nav ─────────────────────── */
.nav-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--cab-yellow), transparent);
  opacity: .55;
  flex-shrink: 0;
}

/* ── Grupo de pills nuevo ───────────────────────────────────────── */
.nav-group {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .46rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: .84rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  line-height: 1;
}
.nav-pill:hover { transform: translateY(-2px); }

.nav-pill-cliente {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 0 var(--wa-dark);
}
.nav-pill-cliente:hover { box-shadow: 0 6px 0 var(--wa-dark); color: #fff; }

.nav-pill-conductor {
  background: var(--cab-orange);
  color: #fff;
  box-shadow: 0 4px 0 #c24d00;
}
.nav-pill-conductor:hover { box-shadow: 0 6px 0 #c24d00; color: #fff; }

.nav-pill-calc {
  background: var(--cab-dark);
  color: var(--cab-yellow);
  box-shadow: 0 4px 0 #000;
  border: 1.5px solid var(--cab-yellow);
}
.nav-pill-calc:hover { box-shadow: 0 6px 0 #000; color: var(--cab-yellow); }

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cab-dark);
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cab-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--cab-yellow);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-link {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cab-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}
.mobile-pill-calc {
  background: var(--cab-dark);
  color: var(--cab-yellow);
  border: 1.5px solid var(--cab-yellow);
}
.mobile-pill-conductor {
  background: var(--cab-orange);
  color: #fff;
}

@media (max-width: 900px) {
  .nav-divider, .nav-group, .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — PARALLAX
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
  background: linear-gradient(160deg, #FFF8E7 0%, #FFFAEE 40%, #E8F9FF 100%);
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
  pointer-events: none;
  will-change: transform;
}
.blob-1 { width: 600px; height: 600px; background: var(--cab-yellow); top: -150px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: var(--cab-orange); opacity: .25; top: 10%; right: -100px; }
.blob-3 { width: 400px; height: 400px; background: var(--cab-sky);    opacity: .35; bottom: 0; left: 30%; }
.blob-4 { width: 300px; height: 300px; background: var(--cab-lime);   opacity: .4;  bottom: 5%; right: 5%; }

/* Parallax layers */
.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Stars / dots */
.dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,0,.18) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: var(--cab-yellow);
  color: var(--cab-dark);
  font-weight: 800;
  font-size: .85rem;
  padding: .35rem 1.2rem;
  border-radius: 50px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 0 rgba(0,0,0,.15);
  animation: bounceIn .7s cubic-bezier(.36,.07,.19,.97) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--cab-dark);
  margin-bottom: .6rem;
  animation: slideUp .8s cubic-bezier(.22,1,.36,1) .1s both;
}
.hero-title .accent { color: var(--cab-orange); }
.hero-title .accent2 { color: var(--cab-sky); }

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: #555;
  margin-bottom: 2.5rem;
  animation: slideUp .8s cubic-bezier(.22,1,.36,1) .25s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp .8s cubic-bezier(.22,1,.36,1) .4s both;
}

/* ═══════════════════════════════════════════════════════════════
   CAR ILLUSTRATION — SVG caricature
═══════════════════════════════════════════════════════════════ */
.car-wrap {
  position: relative;
  z-index: 2;
  margin: 2.5rem auto 0;
  max-width: 560px;
  animation: carFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(255,107,0,.25));
}

@keyframes carFloat {
  0%, 100% { transform: translateY(0) rotate(-.5deg); }
  50%       { transform: translateY(-18px) rotate(.5deg); }
}

/* Road under car */
.road {
  position: relative;
  z-index: 1;
  margin-top: -30px;
  height: 22px;
  background: linear-gradient(90deg, transparent 0%, var(--cab-dark) 10%, var(--cab-dark) 90%, transparent 100%);
  border-radius: 50px;
  opacity: .12;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-3px); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 6px 0 var(--wa-dark), var(--shadow-card);
}
.btn-wa:hover { box-shadow: 0 9px 0 var(--wa-dark), var(--shadow-card); }

.btn-outline {
  background: transparent;
  color: var(--cab-dark);
  border: 3px solid var(--cab-dark);
  box-shadow: var(--shadow-pop);
}
.btn-outline:hover {
  background: var(--cab-dark);
  color: var(--cab-white);
  box-shadow: 0 11px 0 rgba(0,0,0,.25);
}

.btn-orange {
  background: var(--cab-orange);
  color: #fff;
  box-shadow: 0 6px 0 #c24d00, var(--shadow-card);
}
.btn-orange:hover { box-shadow: 0 9px 0 #c24d00, var(--shadow-card); }

.btn-dark {
  background: var(--cab-dark);
  color: var(--cab-yellow);
  box-shadow: 0 6px 0 #000, var(--shadow-card);
}
.btn-dark:hover { box-shadow: 0 9px 0 #000, var(--shadow-card); }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.section { padding: 6rem 2rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cab-orange);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
  max-width: 600px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--cab-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-pop), 0 2px 0 var(--cab-yellow);
  border: 2.5px solid var(--cab-yellow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cab-orange), var(--cab-yellow));
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 0 rgba(0,0,0,.12), 0 2px 0 var(--cab-yellow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cab-yellow);
  -webkit-text-stroke: 2px var(--cab-orange);
  line-height: 1;
  margin-bottom: .5rem;
}

.step-icon { font-size: 2rem; margin-bottom: .8rem; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.step-desc { font-size: .95rem; color: #555; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES BAND
═══════════════════════════════════════════════════════════════ */
.features-band {
  background: var(--cab-dark);
  color: var(--cab-white);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.features-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,208,0,.08) 1.5px, transparent 1.5px);
  background-size: 35px 35px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 1;
}

.feature-item {
  padding: 1.8rem;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,208,0,.2);
  border-radius: var(--radius-lg);
  transition: background .2s, border-color .2s;
}
.feature-item:hover {
  background: rgba(255,208,0,.08);
  border-color: var(--cab-yellow);
}

.feature-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cab-yellow);
  margin-bottom: .5rem;
}
.feature-desc { font-size: .93rem; color: rgba(255,253,245,.7); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   CALIBRADOR SECTION
═══════════════════════════════════════════════════════════════ */
.calibrador-section {
  background: linear-gradient(135deg, #FFF8E7 0%, #EDF9FF 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.calibrador-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--cab-lime);
  border-radius: 50%;
  opacity: .15;
  filter: blur(50px);
}
.calibrador-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: var(--cab-sky);
  border-radius: 50%;
  opacity: .2;
  filter: blur(50px);
}

.calibrador-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.calibrador-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.calibrador-badge-wrap { flex-shrink: 0; }

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cab-dark);
  color: var(--cab-yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: .7rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 0 rgba(0,0,0,.3);
}

.calibrador-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.calib-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2.5px solid transparent;
  box-shadow: var(--shadow-card);
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.calib-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.calib-card.orange::after { background: var(--cab-orange); }
.calib-card.sky::after    { background: var(--cab-sky); }
.calib-card.lime::after   { background: var(--cab-lime); }
.calib-card.pink::after   { background: var(--cab-pink); }

.calib-card:hover {
  border-color: var(--cab-yellow);
  transform: translateY(-4px);
}

.calib-card-icon { font-size: 2rem; margin-bottom: .8rem; }
.calib-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.calib-card-desc { font-size: .95rem; color: #555; line-height: 1.65; }

/* Parameter pill list */
.param-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.param-pill {
  background: var(--cab-cream);
  border: 1.5px solid var(--cab-yellow);
  color: var(--cab-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: .3rem .85rem;
  border-radius: 50px;
}

/* Tech spec box */
.tech-box {
  background: var(--cab-dark);
  color: var(--cab-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 640px) { .tech-box { grid-template-columns: 1fr; } }

.tech-box-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cab-yellow);
  margin-bottom: 1rem;
  grid-column: 1/-1;
}

.tech-list { list-style: none; }
.tech-list li {
  display: flex;
  gap: .7rem;
  padding: .45rem 0;
  font-size: .95rem;
  color: rgba(255,253,245,.85);
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: flex-start;
}
.tech-list li:last-child { border-bottom: none; }
.tech-bullet {
  width: 20px;
  height: 20px;
  background: var(--cab-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: #fff;
  font-weight: 900;
}

/* Download CTA */
.download-cta {
  background: linear-gradient(135deg, var(--cab-orange), var(--cab-yellow));
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(255,107,0,.3);
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: '⬇';
  position: absolute;
  font-size: 18rem;
  opacity: .06;
  right: -2rem;
  top: -4rem;
  line-height: 1;
}
.download-cta h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cab-dark);
  margin-bottom: .6rem;
}
.download-cta p {
  font-size: 1.05rem;
  color: rgba(26,18,0,.75);
  margin-bottom: 1.8rem;
}
.download-cta .requirements {
  font-size: .85rem;
  color: rgba(26,18,0,.6);
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIAL / NUMBERS
═══════════════════════════════════════════════════════════════ */
.numbers-section {
  background: var(--cab-cream);
  padding: 5rem 2rem;
  border-top: 3px solid var(--cab-yellow);
  border-bottom: 3px solid var(--cab-yellow);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
  text-align: center;
}


.number-big {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--cab-orange);
  -webkit-text-stroke: 1.5px var(--cab-dark);
  line-height: 1;
}
.number-label {
  font-weight: 700;
  font-size: 1rem;
  color: #555;
  margin-top: .3rem;
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════ */
.cta-final {
  background: var(--cab-dark);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '🚗';
  position: absolute;
  font-size: 22rem;
  opacity: .04;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--cab-white);
  margin-bottom: .8rem;
  position: relative;
  z-index: 1;
}
.cta-final h2 em {
  color: var(--cab-yellow);
  font-style: normal;
}
.cta-final p {
  font-size: 1.15rem;
  color: rgba(255,253,245,.65);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.cta-final .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: #0F0B00;
  color: rgba(255,253,245,.45);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: .88rem;
}
footer a { color: var(--cab-yellow); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cab-orange);
  display: block;
  margin-bottom: .8rem;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes bounceIn {
  0%   { transform: scale(.5); opacity: 0; }
  70%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes wiggle {
  0%,100% { transform: rotate(-2deg); }
  50%     { transform: rotate(2deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

/* ============================ LOGIN SPECIFIC CSS ============================ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #FFF8E7 0%, #FFFAEE 40%, #E8F9FF 100%);
  position: relative;
  overflow: hidden;
}
.login-page::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--cab-yellow);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
}
.login-page::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--cab-sky);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(80px);
}
.login-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 450px;
  animation: slideUp .6s cubic-bezier(.22,1,.36,1) both;
}
.login-card {
  background: var(--cab-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 2px var(--cab-yellow);
}
.login-header {
  text-align: center;
  margin-bottom: 2rem;
}
.login-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.2rem;
}
.login-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cab-dark);
  margin-bottom: 0.5rem;
}
.login-header p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
.login-tabs {
  display: flex;
  background: var(--cab-cream);
  border-radius: 12px;
  padding: 0.4rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,208,0,.3);
}
.login-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: #777;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.login-tab:hover {
  color: var(--cab-dark);
}
.login-tab.active {
  background: var(--cab-white);
  color: var(--cab-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.login-form {
  display: none;
  animation: fadeSlide .4s ease both;
}
.login-form.active {
  display: block;
}
.login-forgot {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.login-forgot a {
  color: #666;
  text-decoration: underline;
  font-weight: 600;
}
.login-forgot a:hover {
  color: var(--cab-orange);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Floating emoji decorations */
.deco {
  position: absolute;
  font-size: 2.5rem;
  animation: carFloat 4s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: var(--wa-green);
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 34px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%     { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ═══════════════════════════════════════════════════════════════
   BETA NOTICE
═══════════════════════════════════════════════════════════════ */
.beta-notice {
  position: fixed;
  bottom: 2rem;
  right: 7rem;
  z-index: 200;
  background: var(--cab-dark);
  color: var(--cab-white);
  padding: .85rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--cab-yellow);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 4px 0 var(--cab-yellow);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 250px;
  pointer-events: none; /* Make it unclickable and uncloseable */
  animation: slideUp .6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.beta-notice span {
  display: block;
  color: var(--cab-yellow);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .beta-notice {
    bottom: 7rem;
    right: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .tech-box { grid-template-columns: 1fr; }
}

/* ============================ CALC SPECIFIC CSS ============================ */
/* PAGE HERO STRIP
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.page-hero {
  margin-top: 73px;
  background: linear-gradient(135deg, var(--cab-dark) 0%, #2D1E00 100%);
  padding: 3rem 2rem 2.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,208,0,.07) 1.5px, transparent 1.5px);
  background-size: 35px 35px;
  pointer-events: none;
}
.page-hero::after {
  content: 'CAB';
  position: absolute;
  font-size: 20rem; opacity: .04;
  right: -1rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; line-height: 1;
}
.page-hero-badge {
  display: inline-block;
  background: var(--cab-yellow);
  color: var(--cab-dark);
  font-weight: 800; font-size: .78rem;
  padding: .3rem 1rem; border-radius: 50px;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 3px 0 rgba(0,0,0,.2);
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 700; color: var(--cab-white);
  line-height: 1.1; margin-bottom: .6rem;
  position: relative; z-index: 1;
}
.page-hero h1 .accent { color: var(--cab-yellow); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,253,245,.6);
  position: relative; z-index: 1;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   LAYOUT PRINCIPAL: panel izquierdo + mapa derecho
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.calc-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 430px 1fr;
}

@media (max-width: 900px) {
  .calc-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(380px, 50vh);
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PANEL LATERAL
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.side-panel {
  background: var(--cab-cream);
  border-right: 2.5px solid var(--cab-yellow);
  padding: 2rem 1.8rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.input-group { display: flex; flex-direction: column; gap: .45rem; }
.input-group > label {
  font-weight: 800; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--cab-orange);
}
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .input-icon {
  position: absolute; left: 1rem;
  font-size: 1.1rem; pointer-events: none; z-index: 1;
}
.input-wrap input {
  width: 100%;
  padding: .88rem 1rem .88rem 2.9rem;
  border: 2.5px solid #e8e0c8;
  border-radius: 1rem;
  font-family: var(--font-body);
  font-size: .97rem; font-weight: 600;
  color: var(--cab-dark); background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.input-wrap input:focus {
  border-color: var(--cab-orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}
.input-wrap input::placeholder { color: #bbb; font-weight: 500; }

.swap-row {
  display: flex; justify-content: center;
  margin: -.35rem 0; position: relative; z-index: 2;
}
.swap-row button {
  background: var(--cab-dark); color: var(--cab-yellow);
  border: 2px solid var(--cab-yellow); border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 3px 0 rgba(0,0,0,.3);
}
.swap-row button:hover { transform: rotate(180deg); background: var(--cab-yellow); color: var(--cab-dark); }

.option-label {
  font-weight: 800; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--cab-orange); display: block; margin-bottom: .55rem;
}
.chips-row { display: flex; gap: .7rem; }
.chip {
  flex: 1; background: #fff; border: 2px solid #e8e0c8;
  border-radius: .9rem; padding: .65rem .7rem;
  cursor: pointer; transition: border-color .2s, background .2s;
  text-align: center; user-select: none;
}
.chip:hover { border-color: var(--cab-orange); }
.chip.active { border-color: var(--cab-orange); background: var(--cab-orange); color: #fff; }
.chip .chip-icon  { font-size: 1.25rem; display: block; margin-bottom: .18rem; }
.chip .chip-name  { font-weight: 800; font-size: .8rem; display: block; }
.chip .chip-sub   { font-size: .7rem; opacity: .72; display: block; margin-top: .08rem; }
.chip.active .chip-name, .chip.active .chip-sub { color: #fff; }

.tariff-strip {
  background: var(--cab-dark); border-radius: 1rem;
  padding: .95rem 1.2rem; font-size: .83rem;
  color: rgba(255,253,245,.72); line-height: 1.65;
}
.tariff-strip strong { color: var(--cab-yellow); }
.tariff-strip .tariff-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--cab-yellow); display: block; margin-bottom: .3rem;
}

.calc-btn {
  background: var(--cab-orange); color: #fff; border: none;
  border-radius: 1rem; padding: 1rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1.05rem;
  cursor: pointer; box-shadow: 0 6px 0 #c24d00, var(--shadow-card);
  transition: transform .15s, box-shadow .15s;
  display: flex; align-items: center; justify-content: center; gap: .6rem; width: 100%;
}
.calc-btn:hover  { transform: translateY(-3px); box-shadow: 0 9px 0 #c24d00, var(--shadow-card); }
.calc-btn:active { transform: translateY(1px);  box-shadow: 0 3px 0 #c24d00; }
.calc-btn:disabled { background: #ccc; box-shadow: 0 4px 0 #aaa; cursor: not-allowed; transform: none; }

.status-msg {
  text-align: center; padding: 1rem 1.2rem;
  border-radius: 1rem; font-weight: 700; font-size: .93rem; display: none;
}
.status-msg.visible { display: flex; align-items: center; justify-content: center; gap: .5rem; }
.status-msg.loading { background: var(--cab-cream); color: var(--cab-orange); border: 2px dashed var(--cab-yellow); }
.status-msg.error   { background: #fff0f0; color: #c00; border: 2px solid #f99; }

@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 18px; height: 18px;
  border: 3px solid rgba(255,107,0,.2); border-top-color: var(--cab-orange);
  border-radius: 50%; animation: spin .7s linear infinite; flex-shrink: 0;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   RESULTADO
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.result-card {
  background: #fff; border: 2.5px solid var(--cab-yellow);
  border-radius: var(--radius-lg); padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-pop); display: none;
}
.result-card.visible { display: block; animation: fadeSlide .4s ease both; }

.result-eyebrow {
  font-weight: 800; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .12em; color: #aaa; margin-bottom: .25rem;
}
.result-price-row { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .9rem; }
.result-currency  { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--cab-orange); }
.result-amount    { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--cab-dark); line-height: 1; }

.breakdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .9rem; }
.bd-item { background: var(--cab-cream); border-radius: .65rem; padding: .6rem .75rem; }
.bd-item .bd-lbl { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #999; }
.bd-item .bd-val { font-size: 1rem; font-weight: 800; color: var(--cab-dark); margin-top: .1rem; }

.recargo-item {
  background: #fff3e0; border-left: 3px solid var(--cab-orange);
  border-radius: .65rem; padding: .6rem .75rem;
  margin-bottom: .9rem; display: none;
}
.recargo-item.visible { display: block; }
.recargo-item .bd-lbl { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #e06000; }
.recargo-item .bd-val { font-size: 1rem; font-weight: 800; color: var(--cab-dark); }

.result-divider { height: 1px; background: #f0e8d4; margin: .9rem 0; }
.result-note { font-size: .8rem; color: #bbb; text-align: center; line-height: 1.55; }
.result-note strong { color: var(--cab-orange); }

.result-wa {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--wa-green); color: #fff; font-weight: 800; font-size: .95rem;
  padding: .85rem 1rem; border-radius: .9rem; text-decoration: none;
  box-shadow: 0 5px 0 var(--wa-dark); transition: transform .15s, box-shadow .15s; margin-top: 1rem;
}
.result-wa:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--wa-dark); color: #fff; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   MAPA
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
#map { width: 100%; height: 100%; min-height: 400px; }

.map-empty {
  width: 100%; height: 100%; min-height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f8f3e4 0%, #edf9ff 100%);
  color: #ccc; gap: .8rem; text-align: center; padding: 2rem;
}
.map-empty-icon { font-size: 4.5rem; opacity: .3; }
.map-empty p   { font-weight: 700; font-size: 1rem; }
.map-empty small { font-size: .85rem; opacity: .7; }

.pac-container { z-index: 9999 !important; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   RESPONSIVE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 900px) {
  .nav-divider, .nav-group { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .breakdown-grid { grid-template-columns: 1fr; }
}
