:root{
    --bg:#0b1220;
    --surface:rgba(255,255,255,.06);
    --surface2:rgba(255,255,255,.10);
    --text:#eaf0ff;
    --muted:rgba(234,240,255,.78);
    --muted2:rgba(234,240,255,.60);
    --line:rgba(255,255,255,.12);
    --accent:#7dd3fc;
    --shadow: 0 12px 30px rgba(0,0,0,.35);
    --radius: 18px;
    --max: 1100px;
  }
  
  *{ box-sizing:border-box }
  html,body{ height:100% }
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color:var(--text);
    background:
      radial-gradient(1100px 480px at 20% -10%, rgba(125,211,252,.18), transparent 60%),
      radial-gradient(900px 520px at 80% 0%, rgba(125,211,252,.10), transparent 55%),
      var(--bg);
    line-height:1.5;
  }
  
  a{ color:inherit; text-decoration:none }
  .container{ max-width:var(--max); margin:0 auto; padding: 0 18px; }
  
  .header{
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(11,18,32,.78);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .header__inner{
    display:flex; align-items:center; justify-content:space-between;
    padding: 14px 0;
    gap: 12px;
  }
  
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand__mark{
    width:38px; height:38px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(125,211,252,.95), rgba(125,211,252,.35));
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
  }
  .brand__text strong{ display:block; letter-spacing:.2px; }
  .brand__text span{ display:block; color:var(--muted2); font-size:13px; margin-top:2px; }
  
  .chip{
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    font-weight: 650;
  }
  .chip:hover{ background: rgba(255,255,255,.06); }
  
  .card{
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }
  
  main{ padding: 18px 0 56px; }
  
  .hero{
    display:grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    padding: 22px;
    margin-top: 18px;
  }
  @media (max-width: 900px){
    .hero{ grid-template-columns: 1fr; }
  }
  
  .kicker{
    display:inline-block;
    font-size: 13px;
    color: var(--muted2);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    padding: 6px 10px;
    border-radius: 999px;
  }
  
  h1{ margin: 12px 0 10px; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; }
  h2{ margin: 0 0 10px; font-size: 20px; letter-spacing: -.2px; }
  h3{ margin: 0; font-size: 16px; }
  
  .lead{ margin: 0 0 14px; color: var(--muted); max-width: 70ch; }
  .muted{ color: var(--muted); margin: 0 0 10px; }
  
  .ctaRow{ display:flex; gap: 12px; flex-wrap: wrap; margin: 12px 0 8px; }
  
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    font-weight: 650;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
  }
  .btn:active{ transform: translateY(1px); }
  .btn--primary{
    background: rgba(125,211,252,.92);
    color: #07101f;
    border-color: rgba(255,255,255,.18);
  }
  .btn--primary:hover{ filter: brightness(1.03); }
  .btn--ghost{
    background: rgba(255,255,255,.03);
    color: var(--text);
  }
  .btn--ghost:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
  .btn--small{ padding: 8px 10px; min-height: 36px; border-radius: 12px; font-weight: 650; }
  
  .meta{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
  .meta__item{
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    color: var(--muted2);
    font-size: 13px;
  }
  
  .hero__side{ display:flex; flex-direction:column; gap: 12px; }
  .panel{
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    border-radius: 16px;
    padding: 14px;
  }
  .panel__title{ margin: 0 0 8px; }
  
  .list{ margin: 0; padding-left: 18px; color: var(--muted); }
  .list li{ margin: 6px 0; }
  
  .section{ padding: 22px; margin-top: 14px; }
  
  .booking{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 12px;
  }
  @media (max-width: 900px){
    .booking{ grid-template-columns: 1fr; }
  }
  
  .label{ display:block; font-size: 13px; color: var(--muted2); margin: 10px 0 6px; }
  .input{
    width:100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(10,16,30,.35);
    color: var(--text);
    outline:none;
  }
  .input:focus{ border-color: rgba(125,211,252,.45); box-shadow: 0 0 0 4px rgba(125,211,252,.10); }
  .textarea{ min-height: 92px; resize: vertical; }
  
  .note{ color: var(--muted2); font-size: 12.5px; margin-top: 10px; }
  
  .slotsHeader{
    display:flex; align-items:center; justify-content:space-between;
    gap: 10px; margin-top: 10px;
  }
  .slots{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin-top: 10px;
  }
  @media (max-width: 520px){
    .slots{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  
  .slot{
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    color: var(--text);
    text-align:center;
    cursor:pointer;
  }
  .slot:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
  .slot[aria-pressed="true"]{
    outline: 2px solid rgba(125,211,252,.55);
    background: rgba(125,211,252,.10);
  }
  
  .actions{ margin-top: 12px; }
  
  .form{ display:grid; gap: 10px; margin-top: 12px; }
  
  .footer{
    margin-top: 14px;
    padding: 18px 0 0;
    color: var(--muted2);
    font-size: 12.5px;
    display:flex;
    gap: 10px;
    align-items:center;
    flex-wrap:wrap;
    opacity:.95;
  }
  .footer__sep{ opacity:.5; }
  .footer__link{ text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }
  
  /* =========================================================
   PSICOLOGAMDQ — Diseño clínico moderno (pack completo)
   Pegarlo al FINAL de styles.css
========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  /* Colores (oscuro clínico premium) */
  --bg: #0b1220;
  --bg2:#0a1326;
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.56);

  /* Acentos clínicos */
  --primary: #38bdf8;   /* celeste clínico */
  --primary2:#0284c7;
  --ok: #34d399;        /* verde suave */
  --warn:#fbbf24;

  /* Tipografía / ritmo */
  --radius: 18px;
  --radius2: 14px;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --shadow2: 0 10px 24px rgba(0,0,0,.25);

  --maxw: 1080px;
}

html, body{
  background: radial-gradient(1200px 800px at 20% 5%, rgba(56,189,248,.12), transparent 55%),
              radial-gradient(1000px 700px at 75% 10%, rgba(52,211,153,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  letter-spacing: 0;
}

/* ---------- Layout helpers ---------- */
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

.section{
  margin-top: 22px;
}

/* ---------- Header / Brand ---------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 12, 24, .55);
  border-bottom: 1px solid var(--stroke);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(56,189,248,.22), rgba(56,189,248,.08));
  border: 1px solid rgba(56,189,248,.25);
  box-shadow: 0 14px 30px rgba(56,189,248,.10);
}

.brand__text strong{
  display:block;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__text span{
  display:block;
  color: var(--muted2);
  font-size: 13px;
  margin-top: 2px;
}

/* ---------- Buttons / Chips ---------- */
.btn, .chip, button{
  font-family: inherit;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration:none;
  transition: transform .08s ease, border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.35);
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
  background: rgba(255,255,255,.06);
}

.btn-primary{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(56,189,248,.38);
  background: linear-gradient(180deg, rgba(56,189,248,.95), rgba(2,132,199,.82));
  color: #06111f;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 18px 40px rgba(56,189,248,.18);
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
}

.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 22px 52px rgba(56,189,248,.20);
}

.btn-ghost{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
  transition: transform .08s ease, border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.30);
  box-shadow: 0 14px 30px rgba(0,0,0,.26);
  background: rgba(255,255,255,.06);
}

/* ---------- Cards ---------- */
.card{
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px;
}

/* ---------- Hero ---------- */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

.hero h1{
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.hero p{
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 62ch;
  font-size: 16.5px;
  line-height: 1.55;
}

.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.badge::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(56,189,248,.9);
  box-shadow: 0 0 20px rgba(56,189,248,.22);
}

/* ---------- Turnera premium ---------- */
.turnos{
  padding: 16px;
}

.turnos h2{
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.muted{ color: var(--muted2); }
.note{ color: var(--muted2); font-size: 13px; }

.controls{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}

.input:focus{
  border-color: rgba(56,189,248,.45);
  box-shadow: 0 0 0 4px rgba(56,189,248,.12);
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px){
  .grid2{ grid-template-columns: 1fr; }
}

/* Slots grid */
.slots{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 900px){
  .slots{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .slots{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.slot{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 12px 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  cursor: pointer;
}

.slot:hover{
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.35);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.06);
}

/* Selected */
.slot[aria-pressed="true"]{
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 16px 34px rgba(56,189,248,.18);
  background: linear-gradient(180deg, rgba(56,189,248,.22), rgba(255,255,255,.04));
}

/* Disabled (si en el futuro marcás ocupados) */
.slot.is-disabled,
.slot:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- Secciones / Listas ---------- */
.h2{
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px){
  .grid3{ grid-template-columns: 1fr; }
}

/* Chips de áreas */
.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chipTag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}

.chipTag svg{
  width: 16px;
  height: 16px;
  opacity: .9;
}

/* ---------- Footer pro ---------- */
.footer{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0 40px;
  color: var(--muted2);
  border-top: 1px solid var(--stroke);
  margin-top: 26px;
}

.footer a{
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.22);
}
.footer a:hover{
  color: var(--text);
  border-bottom-color: rgba(56,189,248,.55);
}

/* ---------- Micro-animaciones suaves ---------- */
@media (prefers-reduced-motion: no-preference){
  .card, .panel, .slot, .btn-primary, .btn-ghost, .chip{
    will-change: transform;
  }
  .fade-in{
    animation: fadeIn .28s ease-out both;
  }
  @keyframes fadeIn{
    from{ opacity: 0; transform: translateY(4px); }
    to{ opacity: 1; transform: translateY(0); }
  }
}
.booking{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
@media (max-width: 900px){
  .booking{ grid-template-columns: 1fr; }
}
.kicker{
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* =========================================================
   OVERRIDE — Modo CLÍNICO CLARO (pisar el tema oscuro)
   Pegalo al FINAL de styles.css
========================================================= */

:root{
  --bg: #f6f8fb;
  --bg2:#eef2f7;

  --surface: rgba(255,255,255,.92);
  --surface2: rgba(255,255,255,.70);

  --stroke: rgba(15,23,42,.10);
  --stroke2: rgba(15,23,42,.14);

  --text: rgba(15,23,42,.92);
  --muted: rgba(15,23,42,.70);
  --muted2: rgba(15,23,42,.55);

  --primary: #0ea5e9;
  --primary2:#0284c7;
  --ok: #10b981;
}

html, body{
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(14,165,233,.14), transparent 55%),
    radial-gradient(900px 600px at 80% 0%, rgba(16,185,129,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

.header{
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--stroke);
}

.brand__mark{
  background: linear-gradient(180deg, rgba(14,165,233,.20), rgba(14,165,233,.06));
  border: 1px solid rgba(14,165,233,.25);
  box-shadow: 0 12px 26px rgba(14,165,233,.14);
}

.card{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(2, 6, 23, .08);
}

.panel{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--stroke);
}

.muted, .note{
  color: var(--muted2);
}

.kicker{
  color: rgba(15,23,42,.58);
}

/* Inputs */
.input{
  background: rgba(255,255,255,.95);
  color: var(--text);
  border: 1px solid rgba(15,23,42,.14);
}
.input:focus{
  border-color: rgba(14,165,233,.45);
  box-shadow: 0 0 0 4px rgba(14,165,233,.14);
}

/* Buttons */
.btn-primary{
  color: white;
  background: linear-gradient(180deg, rgba(14,165,233,.95), rgba(2,132,199,.85));
  border: 1px solid rgba(14,165,233,.35);
  box-shadow: 0 16px 36px rgba(14,165,233,.18);
}
.btn-ghost, .chip{
  background: rgba(255,255,255,.75);
  color: var(--text);
  border: 1px solid rgba(15,23,42,.12);
}

.btn-ghost:hover, .chip:hover{
  border-color: rgba(14,165,233,.30);
  box-shadow: 0 14px 26px rgba(2, 6, 23, .10);
}

/* Badges */
.badge{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.70);
}
.badge::before{
  background: rgba(14,165,233,.85);
  box-shadow: 0 0 18px rgba(14,165,233,.20);
}

/* Slots */
.slot{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.12);
  color: rgba(15,23,42,.86);
}
.slot:hover{
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 16px 32px rgba(2, 6, 23, .10);
}
.slot[aria-pressed="true"]{
  background: linear-gradient(180deg, rgba(14,165,233,.16), rgba(255,255,255,.92));
  border-color: rgba(14,165,233,.55);
  box-shadow: 0 18px 38px rgba(14,165,233,.16);
}

/* Chips de áreas */
.chipTag{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.72);
}

/* Footer */
.footer{
  border-top: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.55);
}
.footer a{
  color: rgba(15,23,42,.72);
  border-bottom-color: rgba(15,23,42,.18);
}
.footer a:hover{
  color: rgba(2,132,199,.95);
  border-bottom-color: rgba(2,132,199,.45);
}
/* --- HERO layout prolijo --- */
.hero{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero__content{ padding: 6px 2px; }
.hero__side{ display: grid; gap: 12px; }

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

/* --- Ornamento SVG (suave, no tech) --- */
.heroOrnament{
  position: absolute;
  right: -160px;
  bottom: -110px;
  width: 760px;
  height: auto;
  color: rgba(2,132,199,.10);
  pointer-events: none;
}

@media (max-width: 900px){
  .heroOrnament{
    right: -220px;
    bottom: -130px;
    width: 760px;
    opacity: .9;
  }
}

/* --- Iconos en badges --- */
.badges{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.badge{ display:inline-flex; align-items:center; gap: 10px; }
.badge .ico{
  width: 16px;
  height: 16px;
  opacity: .75;
  color: rgba(2,132,199,.95);
}

/* --- CTA spacing --- */
.ctaRow{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

/* Panel titles un poco más finos */
.panel__title{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.faqGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 900px){
  .faqGrid{ grid-template-columns: 1fr; }
}

.faqItem{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  border-radius: 16px;
  padding: 14px;
}

.faqQ{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.faqA{
  margin: 0;
  color: rgba(15,23,42,.70);
  line-height: 1.55;
}

.hr{
  height: 1px;
  background: rgba(15,23,42,.10);
}
@media (max-width: 900px){
  .seoTwo{ grid-template-columns: 1fr !important; }
}
/* ===== Carrusel de reseñas ===== */
.testiHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.testiControls{
  display:flex;
  gap: 10px;
}

.testiViewport{
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
}

.testiTrack{
  display: flex;
  gap: 12px;
  transition: transform .35s ease;
  will-change: transform;
}

/* Cada slide ocupa el ancho del viewport */
.testiCard{
  flex: 0 0 100%;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 14px;
}

/* En desktop, mostramos 2 por pantalla */
@media (min-width: 900px){
  .testiCard{ flex-basis: calc(50% - 6px); }
}

.testiTop{
  display:flex;
  gap: 12px;
  align-items:center;
}

.avatar{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  flex: 0 0 auto;
}
.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.testiMeta{ min-width: 0; }
.testiNameRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.testiName{
  font-size: 15px;
  letter-spacing: -0.01em;
}
.testiStars{
  color: rgba(2,132,199,.92);
  letter-spacing: 0.08em;
  font-size: 13px;
}

.testiSub{
  margin-top: 2px;
  color: rgba(15,23,42,.62);
  font-size: 13px;
}

.testiText{
  margin: 12px 0 0;
  color: rgba(15,23,42,.76);
  line-height: 1.55;
  font-size: 15px;
}

/* Dots */
.testiDots{
  display:flex;
  gap: 8px;
  justify-content:center;
  margin-top: 12px;
}

.testiDot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 1px solid rgba(15,23,42,.18);
  background: rgba(255,255,255,.8);
  cursor: pointer;
  transition: transform .08s ease, background .12s ease, border-color .12s ease;
}
.testiDot:hover{ transform: translateY(-1px); }
.testiDot.is-active{
  background: rgba(2,132,199,.9);
  border-color: rgba(2,132,199,.9);
}
/* Centramos todo el contenido principal */
.card.section, .card.hero{
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

footer.footer{
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
/* ===== FAQ dinámica (acordeón + buscador) ===== */
.faqTools{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.faqSearch{ flex: 1; min-width: 240px; }
.faqHint{ white-space: nowrap; }

.faqAcc{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 900px){
  .faqAcc{ grid-template-columns: 1fr; }
}

.faqItem{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}
.faqItem:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(2,6,23,.08);
  border-color: rgba(2,132,199,.22);
}

/* summary */
.faqSum{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  cursor:pointer;
  user-select:none;
}
.faqSum::-webkit-details-marker{ display:none; }

.faqIcon{
  width: 30px;
  height: 30px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  color: rgba(2,132,199,.95);
  font-weight: 800;
  flex: 0 0 auto;
}
.faqQ{
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.92);
  line-height: 1.25;
}

.faqChevron{
  margin-left:auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(15,23,42,.35);
  border-bottom: 2px solid rgba(15,23,42,.35);
  transform: rotate(45deg);
  transition: transform .18s ease, border-color .18s ease;
}

.faqBody{
  padding: 0 14px 14px 56px;
  color: rgba(15,23,42,.72);
  line-height: 1.6;
}
.faqBody p{ margin: 0; }

/* open state */
.faqItem[open]{
  border-color: rgba(2,132,199,.32);
  box-shadow: 0 22px 46px rgba(2,132,199,.10);
}
.faqItem[open] .faqChevron{
  transform: rotate(-135deg);
  border-color: rgba(2,132,199,.65);
}

/* accesibilidad */
.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
/* ===== FAQ “una card a la vez” ===== */
.faqWizardTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.faqWizardLeft{
  display:flex;
  align-items:center;
  gap: 12px;
}

.faqProgress{
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.86);
}

.faqBar{
  width: 180px;
  height: 8px;
  border-radius: 99px;
  background: rgba(15,23,42,.10);
  overflow:hidden;
}
.faqBarFill{
  height: 100%;
  width: 0%;
  background: rgba(2,132,199,.90);
  border-radius: 99px;
  transition: width .22s ease;
}

.faqWizardRight{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.faqSearch{ min-width: 260px; flex: 1; }

.faqCard{
  margin-top: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(2,6,23,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.faqCard.is-anim{
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(2,132,199,.10);
  border-color: rgba(2,132,199,.26);
}

.faqCardHead{
  display:flex;
  align-items:flex-start;
  gap: 12px;
}

.faqBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  color: rgba(2,132,199,.95);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.faqCardQ{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.92);
  line-height: 1.25;
}

.faqCardA{
  margin: 10px 0 0;
  color: rgba(15,23,42,.72);
  line-height: 1.65;
  font-size: 15px;
}

.faqNav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.faqNavMid{
  margin-left:auto;
}

@media (max-width: 520px){
  .faqBar{ width: 140px; }
  .faqSearch{ min-width: 220px; }
  .faqNavMid{ margin-left: 0; width: 100%; }
  #faqNext{ width: 100%; justify-content:center; }
}
.faqBarFill{ transition: width .22s ease; }

/* ===== FIX ancho FAQ wizard ===== */
#preguntas,
#preguntas .faqWizard,
#preguntas .faqCard {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.faqWizardTop {
  width: 100%;
  box-sizing: border-box;
}

.faqWizardLeft,
.faqWizardRight {
  max-width: 100%;
}

.faqWizardRight {
  flex-shrink: 1;
}

.faqSearch {
  max-width: 320px;
}
.faqWizardLeft {
  align-items: center;
}

.faqBar {
  max-width: 200px;
}
/* ===== FIX ancho FAQ (forzado) ===== */
.faqWizard,
.faqWizardTop,
.faqCard{
  width: 100% !important;
  max-width: min(100%, var(--maxw)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.faqWizardRight,
.faqWizardLeft{
  max-width: 100% !important;
}

.faqSearch{
  max-width: 340px !important;
  width: 100% !important;
}

@media (max-width: 640px){
  .faqWizardTop{
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .faqWizardRight{
    width: 100% !important;
  }
  #faqRandom{
    width: 100% !important;
  }
}

/* Cinturón de seguridad: si algo se pasa, que no rompa el layout */
html, body{
  overflow-x: hidden !important;
}

/* ===== Cómo funciona (3 pasos) ===== */
.steps{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; }
}

.step{
  display:flex;
  gap: 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 14px;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}
.step:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(2,6,23,.06);
  border-color: rgba(2,132,199,.22);
}

.stepN{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  color: rgba(2,132,199,.95);
  font-weight: 900;
  flex: 0 0 auto;
}

.stepT{
  font-weight: 850;
  color: rgba(15,23,42,.92);
  letter-spacing: -0.01em;
}
.stepD{
  margin-top: 4px;
  color: rgba(15,23,42,.70);
  line-height: 1.55;
  font-size: 14.5px;
}

.miniCtaRow{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 14px;
  flex-wrap: wrap;
}
/* ===== CTA contextual FAQ ===== */
.faqNudge{
  margin-top: 12px;
  max-width: min(100%, var(--maxw));
  margin-left: auto;
  margin-right: auto;
}
.faqNudgeInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  border: 1px solid rgba(2,132,199,.22);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(2,132,199,.08);
}
.faqNudgeTitle{
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.92);
}
.faqNudgeActions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}
@media (max-width: 640px){
  .faqNudgeActions{ width: 100%; }
  .faqNudgeActions a, .faqNudgeActions button{ width: 100%; justify-content:center; }
}
