/* ═══════════════════════════════════════════════════════════════
   iPhone Córdoba — Styles
   Filosofía: minimalismo Apple + identidad IP CBA.
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  /* Identidad IP CBA */
  --celeste:    #4a90f4;
  --celeste-dark: #2f78df;
  --azul-deep: #181f66;
  --negro:     #171716;
  --grafito:   #1a1a1c;

  /* Base neutra (Apple-like) */
  --blanco:    #ffffff;
  --off-white: #fbfbfd;
  --gris-1:    #f5f5f7;
  --gris-2:    #e8e8ed;
  --gris-3:    #d2d2d7;
  --gris-4:    #86868b;
  --gris-texto: #424245;

  /* Semánticos */
  --bg:        var(--blanco);
  --text:      var(--negro);
  --text-mute: var(--gris-texto);
  --accent:    var(--celeste);
  --accent-2:  var(--azul-deep);

  /* Tipografía */
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Escala — inspirada en apple.com */
  --fs-hero:   clamp(44px, 7vw, 88px);
  --fs-h1:     clamp(36px, 5vw, 64px);
  --fs-h2:     clamp(28px, 3.5vw, 48px);
  --fs-h3:     clamp(22px, 2.2vw, 32px);
  --fs-lead:   clamp(18px, 1.6vw, 24px);
  --fs-body:   17px;
  --fs-small:  14px;
  --fs-xs:     12px;

  /* Radii (Apple usa bordes suaves pero definidos) */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows (ultra sutiles) */
  --shadow-1: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-2: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-3: 0 16px 48px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);

  /* Easing */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Anchos */
  --max-w: 1120px;
  --max-w-narrow: 860px;

  /* Nav */
  --nav-h: 56px;
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv01";
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* ─── Utilities ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.h1 { font-size: var(--fs-h1); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
.h2 { font-size: var(--fs-h2); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.lead { font-size: var(--fs-lead); font-weight: 400; color: var(--text-mute); line-height: 1.4; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--celeste);
  color: white;
}
.btn-primary:hover { background: var(--celeste-dark); }
.btn-dark {
  background: var(--negro);
  color: white;
}
.btn-dark:hover { background: #000; }
.btn-ghost {
  background: rgba(0,0,0,0.04);
  color: var(--negro);
}
.btn-ghost:hover { background: rgba(0,0,0,0.08); }
.btn-ghost-dark {
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(20px);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.16); }
.btn-sm { height: 40px; padding: 0 20px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 17px; }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #20b858; }
.btn-link {
  color: var(--celeste);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-link:hover { text-decoration: underline; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background .3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 32px;
}
.nav-logo img { height: 22px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.nav-links a {
  color: var(--text);
  opacity: .85;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburguesa (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: background .2s var(--ease);
}
.nav-toggle:hover { background: rgba(0,0,0,0.04); }
.nav-toggle-bar {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle-bar:nth-child(1) { top: 13px; }
.nav-toggle-bar:nth-child(2) { top: 19px; }
.nav-toggle-bar:nth-child(3) { top: 25px; }
.nav-toggle.open .nav-toggle-bar:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Drawer mobile */
.nav-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease);
  pointer-events: none;
}
.nav-drawer.open {
  max-height: 400px;
  pointer-events: auto;
}
.nav-drawer a {
  display: block;
  padding: 16px 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background .15s var(--ease);
}
.nav-drawer a:last-child { border-bottom: 0; }
.nav-drawer a:hover,
.nav-drawer a:active { background: rgba(0,0,0,0.03); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .nav-cta-btn { display: none; }
  .nav-toggle { display: block; }
}

@media (min-width: 761px) {
  .nav-drawer { display: none !important; }
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 0 80px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(74, 144, 244, 0.08), transparent 70%),
    var(--blanco);
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--celeste) 0%, var(--azul-deep) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Hero paths (dos tarjetas: cambiar / reparar) ─────────── */
.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.hero-path {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  background: #ffffff;
  border: 1px solid var(--gris-2);
  border-radius: 22px;
  color: var(--text);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  overflow: hidden;
}
.hero-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,144,244,0.06), transparent 60%);
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.hero-path:hover {
  transform: translateY(-3px);
  border-color: rgba(74,144,244,0.35);
  box-shadow: 0 18px 40px -18px rgba(10,30,80,0.18);
}
.hero-path:hover::before { opacity: 1; }
.hero-path-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--celeste), var(--azul-deep));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.hero-path-icon svg { width: 24px; height: 24px; }
.hero-path-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.hero-path-sub {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.45;
  margin-bottom: 22px;
}
.hero-path-arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gris-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.hero-path-arrow svg { width: 16px; height: 16px; }
.hero-path:hover .hero-path-arrow {
  background: var(--text);
  color: #fff;
  transform: translateX(3px);
}

.hero-secondary {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.hero-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-mute);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.hero-catalog-link svg { width: 14px; height: 14px; }
.hero-catalog-link:hover {
  color: var(--celeste);
  gap: 10px;
}
.hero-steve {
  position: absolute;
  pointer-events: none;
  opacity: .09;
  right: -60px;
  top: 10%;
  width: 320px;
  transform: rotate(8deg);
}
.hero-steve.left {
  right: auto;
  left: -80px;
  top: auto;
  bottom: 0;
  transform: rotate(-12deg);
  width: 280px;
}

@media (max-width: 760px) {
  .hero { padding: 36px 0 40px; }
  .hero-steve { display: none; }
  .hero h1 { font-size: 38px; margin-bottom: 12px; }
  .hero .eyebrow { margin-bottom: 12px !important; font-size: 11px; }
  .hero p.lead { font-size: 15.5px; margin-bottom: 24px; max-width: 340px; }

  /* Cards horizontales en mobile para que las dos entren en pantalla */
  .hero-paths { grid-template-columns: 1fr; gap: 10px; }
  .hero-path {
    flex-direction: row;
    align-items: center;
    padding: 16px 18px;
    gap: 14px;
  }
  .hero-path-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .hero-path-icon svg { width: 22px; height: 22px; }
  .hero-path-body { flex: 1; min-width: 0; }
  .hero-path-title { font-size: 17px; margin-bottom: 3px; }
  .hero-path-sub {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.35;
  }
  .hero-path-arrow {
    margin-top: 0;
    align-self: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .hero-path-arrow svg { width: 14px; height: 14px; }
  .hero-secondary { margin-top: 20px; }
}

/* ─── Strip valores ────────────────────────────────────────── */
.value-strip {
  border-top: 1px solid var(--gris-2);
  border-bottom: 1px solid var(--gris-2);
  padding: 28px 0;
  background: var(--off-white);
}
.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.value-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.value-item-title {
  font-size: 15px;
  font-weight: 600;
}
.value-item-sub {
  font-size: 13px;
  color: var(--text-mute);
}
.value-item-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  color: var(--celeste);
}
@media (max-width: 760px) {
  .value-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ─── Sections ─────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--negro);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-dark .eyebrow { color: var(--celeste); }
.section-dark .lead { color: rgba(255,255,255,0.7); }
.section-gris { background: var(--gris-1); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.section-head h2 { margin-bottom: 16px; }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   COTIZADOR
   ═══════════════════════════════════════════════════════════════ */
.cotizador {
  background: var(--blanco);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--gris-2);
}
@media (max-width: 760px) {
  .cotizador { padding: 28px 20px; border-radius: var(--r-lg); }
}

.steps-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  justify-content: center;
}
.step-dot {
  height: 4px;
  width: 40px;
  background: var(--gris-2);
  border-radius: 2px;
  transition: background .4s var(--ease);
}
.step-dot.active { background: var(--celeste); }
.step-dot.done { background: var(--negro); }

.cot-step { display: none; animation: fadeIn .4s var(--ease-out); }
.cot-step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cot-step-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-align: center;
}
.cot-step-sub {
  color: var(--text-mute);
  text-align: center;
  margin-bottom: 28px;
  font-size: 15px;
}

/* Grid de opciones */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.option-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 20px;
  background: var(--gris-1);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  text-align: left;
  transition: all .2s var(--ease);
  position: relative;
  min-height: 72px;
  justify-content: center;
}
.option-btn:hover {
  background: var(--blanco);
  border-color: var(--gris-3);
  transform: translateY(-1px);
}
.option-btn.selected {
  background: var(--blanco);
  border-color: var(--celeste);
  box-shadow: 0 0 0 4px rgba(74,144,244,.12);
}
.option-btn.disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}
.option-btn-title { font-weight: 500; font-size: 15px; }
.option-btn-sub { font-size: 13px; color: var(--text-mute); }

/* Opciones de defecto (checkbox style) */
.defect-grid {
  display: grid;
  gap: 10px;
}
.defect-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gris-1);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  transition: all .2s var(--ease);
  text-align: left;
  width: 100%;
}
.defect-btn:hover {
  background: var(--blanco);
  border-color: var(--gris-3);
}
.defect-btn.selected {
  background: #fff5f5;
  border-color: #ef4444;
}
.defect-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gris-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
  transition: all .2s;
}
.defect-btn.selected .defect-check {
  background: #ef4444;
  border-color: #ef4444;
}
.defect-btn.selected .defect-check::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}
.defect-info { flex: 1; }
.defect-title { font-weight: 500; font-size: 15px; margin-bottom: 2px; }
.defect-sub { font-size: 13px; color: var(--text-mute); }
.defect-penalty {
  font-size: 13px;
  font-weight: 600;
  color: #ef4444;
  opacity: 0;
  transition: opacity .2s;
}
.defect-btn.selected .defect-penalty { opacity: 1; }

/* Botón "Está impecable" — atajo principal, verde confianza */
.impecable-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: linear-gradient(180deg, #f0fdf4, #e6fbea);
  border: 2px solid #bbf0c8;
  border-radius: var(--r-md);
  text-align: left;
  transition: all .2s var(--ease);
  cursor: pointer;
  margin-bottom: 20px;
}
.impecable-btn:hover {
  background: linear-gradient(180deg, #e6fbea, #d3f5dc);
  border-color: #6fd68a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(34,197,94,0.25);
}
.impecable-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.impecable-check svg { width: 18px; height: 18px; }
.impecable-info { flex: 1; }
.impecable-title { font-weight: 600; font-size: 15px; color: #0f5132; margin-bottom: 2px; }
.impecable-sub { font-size: 13px; color: #166534; opacity: .8; }
.impecable-arrow { font-size: 20px; color: #16a34a; font-weight: 600; }

/* Separador "o marcá las fallas" */
.defect-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--text-mute);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.defect-divider::before,
.defect-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gris-3);
}

/* Botón "Otra falla" con textarea */
.defect-btn-other { border-style: dashed; border-color: var(--gris-3); }
.defect-btn-other.selected {
  background: #eff6ff;
  border-color: var(--celeste);
  border-style: solid;
}
.defect-btn-other.selected .defect-check {
  background: var(--celeste);
  border-color: var(--celeste);
}
.defect-btn-other.selected .defect-penalty { display: none; }

.defect-other-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s var(--ease), opacity .2s var(--ease), margin .3s var(--ease);
  padding: 0 4px;
}
.defect-other-wrap.visible {
  max-height: 260px;
  opacity: 1;
  margin-top: 4px;
}
.defect-other-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  margin: 8px 0 6px;
}
.defect-other-text {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  border: 1.5px solid var(--gris-3);
  border-radius: var(--r-md);
  font: inherit;
  font-size: 14px;
  color: var(--text-main);
  background: var(--blanco);
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.defect-other-text:focus {
  outline: none;
  border-color: var(--celeste);
  box-shadow: 0 0 0 3px rgba(74,144,244,0.12);
}
.defect-other-text.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}
.defect-other-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-mute);
}

/* Tarjeta de "Cotización preliminar" (cuando hay otra falla) */
.result-pending {
  background: linear-gradient(180deg, #fff8e8, #fff1d3);
  border: 1px solid #f1d58a;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
}
.result-pending-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f59e0b;
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.result-pending-title { font-size: 22px; font-weight: 600; margin-bottom: 6px; color: #78350f; }
.result-pending-model { font-size: 15px; color: #92400e; margin-bottom: 18px; }
.result-pending-range { font-size: 28px; font-weight: 600; color: #78350f; margin-bottom: 4px; letter-spacing: -0.01em; }
.result-pending-range-label { font-size: 13px; color: #92400e; opacity: .8; margin-bottom: 20px; }
.result-pending-note {
  background: rgba(255,255,255,0.6);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin: 0 auto 20px;
  max-width: 440px;
  text-align: left;
  font-size: 13px;
  color: #78350f;
  line-height: 1.5;
}
.result-pending-note strong { display: block; margin-bottom: 4px; color: #451a03; }

/* Navegación entre pasos */
.step-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: space-between;
  align-items: center;
}
.step-nav .back-btn {
  color: var(--text-mute);
  font-size: 14px;
  padding: 8px 0;
}
.step-nav .back-btn:hover { color: var(--text); }

/* Resultado */
.result-card {
  text-align: center;
  padding: 20px 0;
}
.result-model {
  font-size: 15px;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.result-price-main {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--celeste) 0%, var(--azul-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0 4px;
}
.result-price-ars {
  font-size: 18px;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.result-breakdown {
  background: var(--gris-1);
  border-radius: var(--r-md);
  padding: 20px 24px;
  text-align: left;
  margin: 24px 0;
  font-size: 14px;
}
.result-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.result-breakdown-row.total {
  border-top: 1px solid var(--gris-3);
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 600;
  font-size: 16px;
}
.result-breakdown-row .neg { color: #ef4444; }

.result-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.result-reject {
  background: #fff9ec;
  border: 1px solid #f4d58d;
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
}
.result-reject-title { font-weight: 600; margin-bottom: 8px; }
.result-reject p { color: var(--text-mute); font-size: 14px; margin-bottom: 16px; }

/* Upgrade section */
.upgrade-section {
  background: var(--gris-1);
  padding: 32px;
  border-radius: var(--r-lg);
  margin-top: 32px;
}
.upgrade-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.upgrade-sub { color: var(--text-mute); font-size: 14px; margin-bottom: 20px; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.target-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 18px;
  background: white;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  transition: all .2s var(--ease);
  text-align: left;
  gap: 4px;
}
.target-btn:hover {
  border-color: var(--gris-3);
  transform: translateY(-1px);
}
.target-btn.selected {
  border-color: var(--celeste);
  box-shadow: 0 0 0 4px rgba(74,144,244,.12);
}
.target-name { font-weight: 500; font-size: 14px; }
.target-gb { font-size: 12px; color: var(--text-mute); }
.target-price { font-size: 14px; font-weight: 600; color: var(--celeste); margin-top: 4px; }
.target-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  background: var(--gris-1);
  border-radius: 4px;
  color: var(--text-mute);
  align-self: flex-start;
}
.target-tag.nuevo { background: #e6f9ed; color: #15803d; }
.target-tag.usado { background: #e6f1fb; color: #1d4ed8; }

.upgrade-result {
  background: white;
  border-radius: var(--r-md);
  padding: 26px 28px;
  margin-top: 24px;
  border: 1px solid var(--gris-2);
  text-align: center;
  box-shadow: 0 20px 50px -30px rgba(24,31,102,0.25);
}
.upgrade-result-label {
  font-size: 12px;
  color: var(--text-mute);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}
.upgrade-result-value {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--negro);
  line-height: 1.05;
}
.upgrade-result-ars { font-size: 15px; color: var(--text-mute); margin-top: 2px; }
.upgrade-result.favor .upgrade-result-value { color: #16a34a; }
.upgrade-result-hint {
  margin: 14px auto 0;
  max-width: 420px;
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.5;
}

/* Header "Tu iPhone actual" */
.trade-head {
  background: white;
  border: 1px solid var(--gris-2);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin-bottom: 16px;
  text-align: center;
}
.trade-head-label {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
  margin-bottom: 4px;
}
.trade-head-model {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--negro);
  margin-bottom: 6px;
}
.trade-head-defectos { font-size: 13px; color: #ef4444; }
.trade-head-defectos.trade-head-impecable { color: #16a34a; }

.result-footer-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Filtro tabs del cotizador de almacenamiento */
.tab-filter {
  display: inline-flex;
  padding: 4px;
  background: var(--gris-1);
  border-radius: var(--r-pill);
  margin: 0 auto 24px;
}
.tab-filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  transition: all .2s;
}
.tab-filter-btn.active {
  background: white;
  color: var(--negro);
  box-shadow: var(--shadow-1);
}

/* ═══════════════════════════════════════════════════════════════
   CATÁLOGO
   ═══════════════════════════════════════════════════════════════ */
.catalog-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.catalog-tabs .tab-filter-btn { padding: 10px 24px; font-size: 14px; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.catalog-pane { display: none; }
.catalog-pane.active { display: block; }

.phone-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--gris-2);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.phone-card::before {
  content: "";
  position: absolute;
  top: -100%;
  right: -40%;
  width: 60%;
  height: 220%;
  background: radial-gradient(ellipse, rgba(74,144,244,0.08), transparent 70%);
  transition: top .4s var(--ease);
}
.phone-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: rgba(74,144,244,0.3);
}
.phone-card:hover::before { top: -60%; }
.phone-card > * { position: relative; }

.phone-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  align-self: flex-start;
}
.phone-card-tag.nuevo { background: #e6f9ed; color: #15803d; }
.phone-card-tag.usado { background: #e6f1fb; color: #1d4ed8; }

.phone-card-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.phone-card-gb {
  font-size: 14px;
  color: var(--text-mute);
}
.phone-card-price-box {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gris-2);
}
.phone-card-price {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--negro);
}
.phone-card-price-ars {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 2px;
}
.phone-card-actions {
  display: flex;
  gap: 8px;
}
.phone-card-actions .btn { flex: 1; }

/* Search + sort controls */
.catalog-tools {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 200px;
  height: 44px;
  padding: 0 18px;
  background: white;
  border: 1px solid var(--gris-2);
  border-radius: var(--r-pill);
  outline: none;
  font-size: 14px;
  transition: border .2s, box-shadow .2s;
}
.search-input:focus {
  border-color: var(--celeste);
  box-shadow: 0 0 0 4px rgba(74,144,244,.12);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICIO TÉCNICO — cotizador de reparaciones
   ═══════════════════════════════════════════════════════════════ */

/* Grilla de fallas — tarjetas con icono + texto */
.rep-falla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.rep-falla-btn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  background: white;
  border: 1.5px solid var(--gris-2);
  border-radius: var(--r-md);
  text-align: left;
  cursor: pointer;
  transition: all .18s var(--ease);
  font: inherit;
  color: var(--text);
}
.rep-falla-btn:hover {
  border-color: var(--celeste);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.rep-falla-btn.selected {
  border-color: var(--negro);
  background: var(--gris-1);
  box-shadow: inset 0 0 0 1px var(--negro);
}
.rep-falla-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--celeste) 0%, var(--azul-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.rep-falla-icon svg { width: 22px; height: 22px; }
.rep-falla-body { min-width: 0; flex: 1; }
.rep-falla-title { font-size: 15.5px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.rep-falla-sub { font-size: 13px; color: var(--text-mute); line-height: 1.45; }

/* ─── Card de resultado ─────────────────────────────────────── */
.rep-result {
  background: white;
  border: 1px solid var(--gris-2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  max-width: 640px;
  margin: 0 auto;
}
.rep-result-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gris-2);
}
.rep-result-head .rep-result-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--celeste) 0%, var(--azul-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.rep-result-head .rep-result-icon svg { width: 28px; height: 28px; }
.rep-result-model-label { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .04em; font-weight: 500; margin-bottom: 2px; }
.rep-result-model { font-size: 22px; font-weight: 600; color: var(--text); line-height: 1.2; }

.rep-result-falla {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.rep-result-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.rep-price-box,
.rep-time-box {
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--gris-1);
  border: 1px solid var(--gris-2);
}
.rep-price-label,
.rep-time-label {
  font-size: 11.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: 8px;
}
.rep-price-value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.rep-price-ars {
  font-size: 13px;
  color: var(--text-mute);
}
.rep-time-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}
.rep-time-detail {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.4;
}
.rep-time-box.time-fast .rep-time-value { color: #0a7d33; }
.rep-time-box.time-fast { background: rgba(10,125,51,.06); border-color: rgba(10,125,51,.22); }
.rep-time-box.time-med .rep-time-value { color: #8a6d00; }
.rep-time-box.time-med { background: rgba(245,194,66,.12); border-color: rgba(245,194,66,.35); }
.rep-time-box.time-slow .rep-time-value { color: #5a4e3a; }
.rep-time-box.time-slow { background: rgba(120,99,67,.08); border-color: rgba(120,99,67,.28); }

/* Disclaimer — protección contra mal diagnóstico del cliente */
.rep-disclaimer {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(245,194,66,.10);
  border: 1px solid rgba(245,194,66,.32);
  border-radius: var(--r-md);
  margin-bottom: 22px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #5a4400;
}
.rep-disclaimer svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #c08a00;
}
.rep-disclaimer strong { color: #3d2d00; font-weight: 600; }

.rep-result-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.rep-result-ctas .btn { flex: 1; min-width: 180px; }

/* Variante "solo asesor" — placa, mojado, etc. */
.rep-result-asesor { text-align: center; }
.rep-result-asesor .rep-result-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--celeste) 0%, var(--azul-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.rep-result-asesor .rep-result-icon svg { width: 32px; height: 32px; }
.rep-result-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #8a6d00;
  background: rgba(245,194,66,.18);
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.rep-result-asesor .rep-result-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.rep-result-asesor .rep-result-model {
  font-size: 15px;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.rep-result-note {
  font-size: 15px;
  color: var(--text-mute);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

.link-ghost {
  display: inline-block;
  margin-top: 12px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-mute);
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,.2);
  text-underline-offset: 3px;
}
.link-ghost:hover { color: var(--text); text-decoration-color: currentColor; }

@media (max-width: 680px) {
  .rep-result { padding: 28px 20px; }
  .rep-result-main { grid-template-columns: 1fr; }
  .rep-result-head { flex-direction: column; align-items: flex-start; text-align: left; }
  .rep-result-head .rep-result-icon { width: 48px; height: 48px; }
  .rep-result-model { font-size: 20px; }
  .rep-price-value { font-size: 26px; }
  .rep-result-ctas .btn { min-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  counter-increment: step;
  position: relative;
  padding: 24px 0;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--celeste);
  opacity: .4;
  margin-bottom: 12px;
  display: block;
}
.step-card h3 { font-size: 18px; margin-bottom: 6px; font-weight: 600; }
.step-card p { font-size: 14px; color: var(--text-mute); line-height: 1.5; }

@media (max-width: 760px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   TURNOS
   ═══════════════════════════════════════════════════════════════ */
.turnos-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.turnos-form {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--gris-2);
  box-shadow: var(--shadow-1);
}
.turnos-info {
  padding: 24px 0;
}
.turnos-info h3 { margin-bottom: 16px; }
.info-list { display: grid; gap: 20px; margin-top: 24px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gris-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--celeste);
  flex-shrink: 0;
}
.info-item-title { font-weight: 500; margin-bottom: 2px; font-size: 15px; }
.info-item-detail { color: var(--text-mute); font-size: 14px; line-height: 1.4; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: var(--gris-1);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  outline: none;
  font-size: 15px;
  transition: all .2s;
  color: var(--text);
}
.form-textarea {
  height: auto;
  min-height: 80px;
  padding: 12px 16px;
  resize: vertical;
  font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: white;
  border-color: var(--celeste);
  box-shadow: 0 0 0 4px rgba(74,144,244,.12);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2386868b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Slots horarios */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.time-slot {
  padding: 10px;
  background: var(--gris-1);
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all .2s;
}
.time-slot:hover { background: white; border-color: var(--gris-3); }
.time-slot.selected {
  background: var(--celeste);
  color: white;
  border-color: var(--celeste);
}
.time-slot.disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

@media (max-width: 860px) {
  .turnos-wrap { grid-template-columns: 1fr; gap: 20px; }
  .turnos-form { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.faq-item {
  background: white;
  border: 1px solid var(--gris-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-1); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--celeste); }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--text-mute);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--text-mute); font-size: 15px; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════════════ */
.location-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gris-2);
  box-shadow: var(--shadow-1);
}
.location-map {
  min-height: 360px;
  background: linear-gradient(135deg, #f0f4fa, #e5ecf6);
  position: relative;
  background-image:
    linear-gradient(rgba(74,144,244,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,144,244,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  background: var(--celeste);
  transform-origin: bottom;
  animation: pin-bounce 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  transform: translate(-50%, -100%) rotate(-45deg);
}
.map-pin > span { transform: rotate(45deg); font-size: 18px; }
@keyframes pin-bounce {
  0%, 100% { transform: translate(-50%, -100%) rotate(-45deg); }
  50% { transform: translate(-50%, -110%) rotate(-45deg); }
}
.location-info { padding: 40px; }
.location-info h3 { margin-bottom: 8px; }
.location-info p.lead { margin-bottom: 24px; font-size: 17px; }

@media (max-width: 860px) {
  .location-card { grid-template-columns: 1fr; }
  .location-info { padding: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--negro);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand { max-width: 280px; }
.footer-brand img { height: 24px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.55; }
.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}

/* Cotización del dólar en el footer */
.cotiz-dolar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.cotiz-dolar .cotiz-label { text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,0.45); }
.cotiz-dolar .cotiz-value { color: white; font-weight: 600; }
.cotiz-dolar .cotiz-date { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35), 0 2px 8px rgba(0,0,0,.1);
  z-index: 50;
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   TOAST / MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  animation: modalIn .3s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal h3 { margin-bottom: 8px; font-size: 22px; }
.modal p { color: var(--text-mute); margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════════
   Animación entrada (scroll-triggered)
   ═══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
