:root{
  --bg:#F8F9FC;
  --bg-soft:#F1F3F9;
  --ink:#10131C;
  --muted:#64748B;
  --line:#E2E8F0;
  --surface:#FFFFFF;
  --blue:#3B4CFF;
  --violet:#8B3FF0;
  --magenta:#E0208F;
  --teal:#0D9488;
  --grad: linear-gradient(100deg, var(--blue) 0%, var(--violet) 55%, var(--magenta) 100%);
  --grad-soft: linear-gradient(100deg, rgba(59,76,255,0.10) 0%, rgba(139,63,240,0.10) 55%, rgba(224,32,143,0.10) 100%);
  --display: 'Sora', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1180px;
  --shadow-card: 0 10px 25px rgba(15,23,42,0.04);
  --shadow-float: 0 20px 45px rgba(15,23,42,0.08);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
section{ position:relative; }

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}

@media (max-width:768px){
  .wrap{ padding-left:28px; padding-right:28px; }
  h1{ font-size:2.2rem !important; line-height:1.15 !important; }
  h2{ font-size:1.8rem !important; line-height:1.2 !important; }
  p{ font-size:0.95rem; }
}

::selection{ background:rgba(139,63,240,0.22); }

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--violet);
  outline-offset:3px;
  border-radius:4px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family:var(--mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:500;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background:var(--grad);
  flex:none;
}

h1,h2,h3{ font-family:var(--display); letter-spacing:-0.01em; color:var(--ink); }

.grad-text{
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--body);
  font-weight:600;
  font-size:15px;
  padding:14px 24px;
  border-radius:100px;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--ink);
  color:#fff;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px -8px rgba(28,27,31,0.45);
}
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.btn-ghost:hover{
  border-color:var(--ink);
  transform:translateY(-2px);
}

/* ---------- NAV ---------- */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,245,250,0.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease;
}
header.scrolled{ border-bottom-color:var(--line); }
nav.wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.brand{ display:flex; align-items:center; gap:2px; }
.brand img{ height:26px; width:auto; image-rendering:-webkit-optimize-contrast; }
.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{
  font-size:14.5px;
  font-weight:500;
  color:var(--muted);
  transition:color .18s ease;
}
.nav-links a:hover{ color:var(--ink); }
.nav-cta{ display:flex; align-items:center; gap:22px; }
.nav-only-mobile{ display:none; }

@media (max-width:820px){
  .nav-links{ display:none; }
  .btn-ghost.nav-only-mobile{ display:none; }
}

/* ---------- HERO ---------- */
.hero{
  padding:40px 0 20px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
.hero h1{
  margin-top:14px;
  font-size:clamp(2.5rem, 4.4vw + 0.6rem, 4.2rem);
  line-height:1.06;
  font-weight:600;
}
.hero p.lead{
  margin-top:16px;
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  max-width:520px;
}
.hero-actions{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.hero-note{
  margin-top:16px;
  font-family:var(--mono);
  font-size:12.5px;
  color:var(--muted);
  letter-spacing:0.02em;
}
@media (max-width:768px){
  .hero-note{ max-width:calc(100% - 60px); padding-bottom:8px; }
}

.hero-visual{
  position:relative;
  height:460px;
}
.hero-visual > svg{ position:absolute; inset:0; width:100%; height:100%; }
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:0.35;
  pointer-events:none;
}
.blob-a{ width:280px; height:280px; background:var(--blue); top:-30px; right:20px; }
.blob-b{ width:260px; height:260px; background:var(--magenta); bottom:-10px; left:10px; opacity:.28; }

.chip{
  position:absolute;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  padding:11px 15px;
  box-shadow:0 18px 40px -20px rgba(28,27,31,0.35);
  font-family:var(--mono);
  font-size:12.5px;
  color:var(--ink);
  display:flex;
  align-items:center;
  gap:9px;
  opacity:0;
  transform:translateY(14px);
  animation:chipIn .7s ease forwards;
}
.chip .dot{ width:7px; height:7px; border-radius:50%; background:var(--grad); flex:none; }
.chip-1{ top:8%; left:2%; animation-delay:.5s; }
.chip-2{ top:46%; right:0%; animation-delay:.85s; }
.chip-3{ bottom:6%; left:16%; animation-delay:1.2s; }

@keyframes chipIn{ to{ opacity:1; transform:translateY(0); } }
@media (prefers-reduced-motion: reduce){
  .chip{ animation:none; opacity:1; transform:none; }
  .trail-path{ stroke-dashoffset:0 !important; }
}

.trail-path{
  stroke-dasharray:900;
  stroke-dashoffset:900;
  animation:draw 2.1s ease forwards .3s;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ height:320px; order:-1; }
}

/* ---------- DIVIDER TRAIL ---------- */
.trail-divider{ width:100%; height:34px; display:block; }
.trail-divider path{ opacity:0.55; }

/* ---------- POSITIONING ---------- */
.positioning{ padding:16px 0 48px; }
.pos-grid{
  display:grid;
  grid-template-columns:0.8fr 1.6fr;
  gap:56px;
  align-items:start;
}
.pos-grid h2{
  font-size:clamp(1.6rem,2.4vw + 0.7rem, 2.1rem);
  font-weight:600;
  line-height:1.25;
}
.pos-grid .pos-text p{
  font-size:19px;
  line-height:1.7;
  color:#3A3940;
}
.pos-grid .pos-text p + p{ margin-top:18px; }
.pos-grid .pos-text strong{ color:var(--ink); font-weight:600; }
@media (max-width:820px){
  .pos-grid{ grid-template-columns:1fr; gap:24px; }
}

/* ---------- SERVICES ---------- */
.services{ padding:0 0 50px; }
.services-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:26px;
  flex-wrap:wrap;
}
.services-head h2{
  margin-top:14px;
  font-size:clamp(1.9rem,2.8vw + 0.7rem, 2.5rem);
  font-weight:600;
}
.services-head p{ color:var(--muted); font-size:16px; max-width:380px; }

.svc-group{ margin-bottom:28px; }
.svc-group:last-child{ margin-bottom:0; }
.svc-group-head{
  display:flex;
  align-items:baseline;
  gap:14px;
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--line);
}
.svc-group-head h3{
  font-size:19px;
  font-weight:600;
}
.svc-group-head span{
  font-family:var(--mono);
  font-size:12px;
  color:var(--muted);
}

.svc-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.svc-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 24px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover{
  transform:translateY(-4px);
  border-color:transparent;
  box-shadow:0 24px 48px -28px rgba(28,27,31,0.4);
}
.svc-icon{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.svc-icon svg{ width:24px; height:24px; }
.svc-card h4{
  font-family:var(--display);
  font-size:16.5px;
  font-weight:600;
  margin-bottom:9px;
}
.svc-card p{ font-size:14.5px; color:var(--muted); line-height:1.6; }

.svc-cards.svc-cards-2{ grid-template-columns:repeat(2, 1fr) !important; max-width:800px; }
.svc-cards.svc-cards-4{ grid-template-columns:repeat(4, 1fr) !important; }
@media (max-width:980px){
  .svc-cards.svc-cards-4{ grid-template-columns:repeat(2, 1fr) !important; }
}
@media (max-width:640px){
  .svc-cards.svc-cards-4{ grid-template-columns:1fr !important; }
}
@media (max-width:480px){
  .svc-cards.svc-cards-2{ grid-template-columns:repeat(2, 1fr) !important; gap:12px; }
  .svc-cards.svc-cards-2 .svc-icon{ width:28px; height:28px; margin-bottom:10px; }
  .svc-cards.svc-cards-2 .svc-card{ padding:16px 14px; }
}

@media (max-width:980px){
  .svc-cards{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .svc-cards{ grid-template-columns:1fr; }
}

/* ---------- PROCESS ---------- */
.process{ padding:48px 0; background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.process-head{ margin-bottom:28px; max-width:560px; }
.process-head h2{ margin-top:14px; font-size:clamp(1.9rem,2.8vw + 0.7rem, 2.5rem); font-weight:600; }
.process-head p{ margin-top:14px; color:var(--muted); font-size:16px; }

.process-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
}
.process-steps::before{
  content:"";
  position:absolute;
  top:20px; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg, var(--line), var(--line));
}
.step{ padding:0 28px 0 0; position:relative; }
.step:first-child{ padding-left:0; }
.step-num{
  font-family:var(--mono);
  font-size:13px;
  color:transparent;
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  font-weight:500;
  display:inline-block;
  margin-bottom:20px;
  position:relative;
  z-index:1;
}
.step-num::before{
  content:"";
  position:absolute;
  left:-2px; top:6px;
  width:9px; height:9px;
  border-radius:50%;
  background:var(--bg-soft);
  border:2px solid var(--violet);
}
.step h3{ font-size:18px; font-weight:600; margin-bottom:10px; }
.step p{ font-size:14.5px; color:var(--muted); line-height:1.65; max-width:280px; }

@media (max-width:820px){
  .process-steps{ grid-template-columns:1fr; gap:36px; }
  .process-steps::before{ display:none; }
  .step{ padding-right:0; padding-left:22px; border-left:1px solid var(--line); }
}

/* ---------- WHY ---------- */
.why{ padding:50px 0; }
.why-grid{ display:grid; grid-template-columns:0.8fr 1.6fr; gap:56px; }
.why h2{ font-size:clamp(1.9rem,2.8vw + 0.7rem, 2.5rem); font-weight:600; margin-top:14px; }
.why-img{
  display:block;
  width:100%;
  max-width:280px;
  height:160px;
  object-fit:cover;
  border-radius:var(--radius);
  margin-top:22px;
}
@media (max-width:820px){
  .why-img{ max-width:100%; height:140px; }
}
.why-list{ display:flex; flex-direction:column; }
.why-item{
  padding:16px 0;
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:34px 1fr;
  gap:20px;
}
.why-item:first-child{ padding-top:0; }
.why-item:last-child{ border-bottom:none; }
.why-mark{
  font-family:var(--mono);
  font-size:13px;
  color:var(--muted);
  padding-top:3px;
}
.why-item h4{ font-family:var(--display); font-size:17.5px; font-weight:600; margin-bottom:8px; }
.why-item p{ color:var(--muted); font-size:15px; line-height:1.65; max-width:560px; }

@media (max-width:820px){
  .why-grid{ grid-template-columns:1fr; gap:20px; }
}

/* ---------- CTA FINAL ---------- */
.cta-final{
  margin:0 32px 24px;
  max-width:calc(var(--maxw) - 0px);
  margin-left:auto; margin-right:auto;
  border-radius:28px;
  padding:48px 56px;
  background:var(--ink);
  color:#fff;
  position:relative;
  overflow:hidden;
  text-align:center;
}
.cta-final::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:var(--grad);
  opacity:0.22;
  filter:blur(90px);
}
.cta-final > *{ position:relative; z-index:1; }
.cta-final .eyebrow{ color:rgba(255,255,255,0.65); justify-content:center; }
.cta-final h2{
  color:#fff;
  font-size:clamp(2rem,3.4vw + 0.7rem, 3rem);
  font-weight:600;
  margin-top:16px;
  line-height:1.15;
}
.cta-final p{
  color:rgba(255,255,255,0.72);
  font-size:17px;
  max-width:480px;
  margin:20px auto 0;
  line-height:1.6;
}
.cta-final .hero-actions{ justify-content:center; margin-top:36px; }
.cta-final .btn-primary{ background:#fff; color:var(--ink); }
.cta-final .btn-primary:hover{ box-shadow:0 10px 30px -8px rgba(255,255,255,0.35); }
.cta-final .btn-ghost{ border-color:rgba(255,255,255,0.28); color:#fff; }
.cta-final .btn-ghost:hover{ border-color:#fff; }

@media (max-width:640px){
  .cta-final{ margin:0 16px 16px; padding:32px 22px; border-radius:20px; }
}

/* ---------- FOOTER ---------- */
footer{ padding:32px 0 28px; }
.foot-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}
.foot-brand{ display:flex; align-items:center; gap:10px; }
.foot-brand img{ height:20px; }
.foot-brand span{ font-family:var(--mono); font-size:12.5px; color:var(--muted); }
.foot-links{ display:flex; gap:28px; }
.foot-links a{ font-size:14px; color:var(--muted); }
.foot-links a:hover{ color:var(--ink); }
.foot-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding-top:22px;
  font-family:var(--mono);
  font-size:12px;
  color:var(--muted);
}

@media (max-width:640px){
  .foot-grid{ flex-direction:column; align-items:flex-start; }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  width:56px; height:56px;
  border-radius:50%;
  background:var(--grad);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 32px -12px rgba(28,27,31,0.5);
  transition:transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 20px 40px -14px rgba(28,27,31,0.6);
}
.whatsapp-float svg{ width:26px; height:26px; }
@media (max-width:640px){
  .whatsapp-float{ right:16px; bottom:16px; width:50px; height:50px; }
  .whatsapp-float svg{ width:23px; height:23px; }
}

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ---------- BOOKING MODAL (estilo Google Calendar) ---------- */
.booking-overlay{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(20,19,23,0.55);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.booking-overlay.is-open{ opacity:1; pointer-events:auto; }

.booking-modal{
  position:relative;
  background:var(--surface);
  border-radius:20px;
  width:100%;
  max-width:760px;
  max-height:90vh;
  overflow:auto;
  box-shadow:0 40px 90px -20px rgba(20,19,23,0.55);
  padding:28px 26px 22px;
}

.booking-close{
  position:absolute;
  top:14px; right:14px;
  width:32px; height:32px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--surface);
  font-size:19px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  z-index:2;
}
.booking-close:hover{ color:var(--ink); border-color:var(--ink); }

/* header: avatar + host + título + meta */
.booking-header{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px solid var(--line);
  flex-wrap:wrap;
}
.booking-avatar{
  width:40px; height:40px;
  border-radius:50%;
  background:var(--bg-soft);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.booking-avatar img{ height:16px; width:auto; }
.booking-header-text{ flex:1; min-width:160px; }
.booking-host{ font-family:var(--mono); font-size:11px; letter-spacing:0.04em; color:var(--muted); margin-bottom:3px; }
.booking-header-text h3{ font-size:17px; font-weight:600; }
.booking-meta{ display:flex; flex-direction:column; gap:6px; }
.booking-meta li{ display:flex; align-items:center; gap:7px; font-size:12.5px; color:var(--muted); }
.booking-meta svg{ width:15px; height:15px; flex:none; }

.booking-select-label{ font-family:var(--display); font-weight:600; font-size:15px; margin-bottom:6px; }
.booking-tz{
  display:flex; align-items:center; gap:7px;
  font-family:var(--mono); font-size:11.5px; color:var(--muted);
  margin-bottom:18px;
}
.booking-tz svg{ width:14px; height:14px; flex:none; }

.booking-body{
  display:flex;
  gap:26px;
  align-items:flex-start;
  flex-wrap:wrap;
}

/* mini calendario */
.booking-calendar{ flex:1 1 240px; min-width:220px; }
.booking-cal-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.booking-month-label{ font-family:var(--display); font-weight:600; font-size:14px; }
.booking-nav{ display:flex; gap:6px; }
.booking-nav button{
  width:24px; height:24px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--surface);
  cursor:pointer;
  color:var(--muted);
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.booking-nav button:hover{ border-color:var(--ink); color:var(--ink); }

.booking-weekdays{ display:grid; grid-template-columns:repeat(7,1fr); margin-bottom:4px; }
.booking-weekdays span{
  text-align:center;
  font-family:var(--mono);
  font-size:9.5px;
  color:var(--muted);
  letter-spacing:0.02em;
}
.booking-days{ display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.booking-day{
  aspect-ratio:1;
  border-radius:50%;
  border:none;
  background:transparent;
  font-family:var(--body);
  font-size:12.5px;
  color:var(--ink);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .15s ease, color .15s ease;
}
.booking-day:hover:not(:disabled){ background:var(--bg-soft); }
.booking-day.is-muted{ color:transparent; pointer-events:none; }
.booking-day.is-disabled{ color:#C9C7D2; cursor:not-allowed; text-decoration:line-through; }
.booking-day.is-today{ box-shadow:inset 0 0 0 1.5px var(--violet); }
.booking-day.is-selected{ background:var(--grad); color:#fff; font-weight:600; box-shadow:none; }

/* panel de días con horarios (día activo en móvil, varios en desktop) */
.booking-daypanel{ flex:1 1 280px; min-width:240px; }
.booking-daynav{ display:flex; align-items:flex-start; gap:8px; }
.booking-day-arrow{
  width:26px; height:26px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--muted);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  flex:none;
  margin-top:4px;
}
.booking-day-arrow:hover{ border-color:var(--ink); color:var(--ink); }

.booking-daycols{
  display:flex;
  gap:12px;
  flex:1;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:4px;
}
.daycol{ flex:0 0 auto; width:112px; }
.daycol-head{
  text-align:center;
  padding:6px 4px;
  border-radius:100px;
  margin-bottom:10px;
  font-family:var(--mono);
}
.daycol-weekday{ display:block; font-size:10px; color:var(--muted); letter-spacing:0.03em; }
.daycol-num{ display:block; font-size:15px; font-weight:600; color:var(--ink); }
.daycol.is-active .daycol-head{ background:var(--grad); }
.daycol.is-active .daycol-weekday,
.daycol.is-active .daycol-num{ color:#fff; }
.daycol-slots{ display:flex; flex-direction:column; gap:7px; }
.booking-slot{
  border:1.5px solid var(--line);
  background:var(--surface);
  border-radius:10px;
  padding:8px 6px;
  font-family:var(--body);
  font-weight:600;
  font-size:12.5px;
  color:var(--ink);
  cursor:pointer;
  text-align:center;
  transition:border-color .15s ease, background .15s ease, color .15s ease;
}
.booking-slot:hover{ border-color:var(--violet); }
.booking-slot.is-selected{ background:var(--grad); border-color:transparent; color:#fff; }

.booking-footer{ margin-top:22px; padding-top:18px; border-top:1px solid var(--line); }
.booking-confirm{ width:100%; justify-content:center; }
.booking-confirm:disabled{ opacity:0.4; cursor:not-allowed; }
.booking-confirm:disabled:hover{ transform:none; box-shadow:none; }
.booking-note{ font-family:var(--mono); font-size:10.5px; color:var(--muted); margin-top:12px; text-align:center; line-height:1.5; }

/* Desktop: varias columnas de día visibles a la vez, flechas de día ocultas */
@media (min-width:701px){
  .booking-day-arrow{ display:none; }
  .daycol{ display:block !important; }
}

/* Mobile: un solo día activo a la vez, franja tipo Google Calendar */
@media (max-width:700px){
  .booking-modal{ padding:22px 18px 18px; }
  .booking-body{ flex-direction:column; gap:20px; }
  .booking-calendar{ width:100%; }
  .booking-day{ font-size:13.5px; }
  .booking-daypanel{ width:100%; }
  .daycol{ display:none; width:100%; flex:1 1 auto; }
  .daycol.is-active{ display:block; }
  .daycol-slots{ display:grid; grid-template-columns:1fr 1fr; gap:8px; }
  .booking-slot{ padding:12px 8px; font-size:13px; }
}

/* ---------- PROBLEM AGITATION ---------- */
.problem{ padding:8px 0 50px; }
.problem-head{ max-width:640px; margin-bottom:22px; }
.problem-head h2{ margin-top:14px; font-size:clamp(1.9rem,2.8vw + 0.7rem, 2.5rem); font-weight:600; line-height:1.2; }
.problem-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.problem-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 24px;
}
.problem-card .problem-num{
  font-family:var(--mono);
  font-size:12px;
  color:var(--muted);
  margin-bottom:14px;
  display:block;
}
.problem-card h4{ font-family:var(--display); font-size:16.5px; font-weight:600; margin-bottom:9px; }
.problem-card p{ font-size:14.5px; color:var(--muted); line-height:1.6; }
@media (max-width:980px){ .problem-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .problem-grid{ grid-template-columns:1fr; } }

/* ---------- BENEFITS ---------- */
.benefits{ padding:48px 0; background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.benefits-head{ max-width:600px; margin-bottom:24px; }
.benefits-head h2{ margin-top:14px; font-size:clamp(1.9rem,2.8vw + 0.7rem, 2.5rem); font-weight:600; }
.benefits-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.benefit-card{ padding:0; }
.benefit-icon{ width:38px; height:38px; margin-bottom:16px; }
.benefit-icon svg{ width:26px; height:26px; }
.benefit-card h4{ font-family:var(--display); font-size:16px; font-weight:600; margin-bottom:8px; }
.benefit-card p{ font-size:14px; color:var(--muted); line-height:1.6; }
@media (max-width:980px){ .benefits-grid{ grid-template-columns:1fr 1fr; gap:32px 20px; } }
@media (max-width:640px){ .benefits-grid{ grid-template-columns:1fr; gap:28px; } }

/* ---------- OFFER / DELIVERABLES ---------- */
.offer{ padding:50px 0; }
.offer-grid{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:56px; align-items:start; }
.offer-head h2{ font-size:clamp(1.9rem,2.8vw + 0.7rem, 2.5rem); font-weight:600; margin-top:14px; line-height:1.2; }
.offer-head p{ margin-top:16px; color:var(--muted); font-size:15.5px; line-height:1.6; }
.offer-list{ display:flex; flex-direction:column; gap:0; }
.offer-item{
  display:grid;
  grid-template-columns:24px 1fr;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.offer-item:first-child{ padding-top:0; }
.offer-item:last-child{ border-bottom:none; }
.offer-check{
  width:22px; height:22px;
  border-radius:50%;
  background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  flex:none;
  margin-top:2px;
}
.offer-check svg{ width:12px; height:12px; }
.offer-item p{ font-size:15px; color:#3A3940; line-height:1.6; }
.offer-item strong{ color:var(--ink); font-weight:600; }
@media (max-width:820px){ .offer-grid{ grid-template-columns:1fr; gap:24px; } }

/* ---------- FAQ ---------- */
.faq{ padding:50px 0; background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.faq-head{ max-width:560px; margin-bottom:22px; }
.faq-head h2{ margin-top:14px; font-size:clamp(1.9rem,2.8vw + 0.7rem, 2.5rem); font-weight:600; }
.faq-list{ max-width:760px; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item:first-child{ border-top:1px solid var(--line); }
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-family:var(--display);
  font-weight:600;
  font-size:16px;
  color:var(--ink);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  font-family:var(--body);
  font-weight:400;
  font-size:22px;
  color:var(--muted);
  flex:none;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{
  padding:0 4px 16px;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.65;
  max-width:640px;
}

/* =====================================================
   HOME REDESIGN — Light Mode Tech / Neomorfismo SaaS
   ===================================================== */

/* ---------- surface card (delimita bloques) ---------- */
.surface-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:32px 28px;
  position:relative;
}
@media (max-width:768px){
  .surface-card{ padding:24px 20px; }
}

/* ---------- accordion hint (flecha "Ver más") ---------- */
.acc-hint{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:var(--mono);
  font-size:11.5px;
  color:var(--violet);
  font-weight:500;
  margin-top:6px;
}
.acc-arrow{ width:16px; height:16px; flex:none; transition:transform .2s ease; color:var(--violet); }
details[open] > summary .acc-arrow{ transform:rotate(180deg); }

@media (min-width:769px){
  .acc-hint{ display:none; }
}

/* ---------- "Por qué existimos" como acordeón, con imagen banner ---------- */
.acc-card.surface-card{ padding:0; overflow:hidden; }
.acc-banner-img{
  display:block;
  width:100%;
  height:200px;
  object-fit:cover;
}
.acc-block{ padding:28px; display:block; }
.acc-block summary{
  list-style:none;
  cursor:pointer;
}
.acc-block summary::-webkit-details-marker{ display:none; }
.acc-block summary h2{ margin-top:10px; }
.acc-block .pos-text{ margin-top:22px; padding-top:22px; border-top:1px solid var(--line); }
.acc-block .pos-text p{ font-size:16.5px; line-height:1.65; color:#3A3940; }
.acc-block .pos-text p + p{ margin-top:14px; }

@media (min-width:769px){
  .acc-block summary{ cursor:default; }
  .acc-block > *:not(summary){ display:block !important; }
}
@media (max-width:768px){
  .acc-block{ padding:22px 20px; }
  .acc-banner-img{ height:160px; }
}

/* ---------- SERVICIOS como acordeón (móvil) ---------- */
.svc-card{ position:relative; }
.svc-card summary{
  list-style:none;
  cursor:pointer;
}
.svc-card summary::-webkit-details-marker{ display:none; }
.svc-card summary .acc-arrow{
  position:absolute;
  top:26px; right:24px;
}
.svc-card p{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

@media (min-width:769px){
  .svc-card summary{ cursor:default; }
  .svc-card summary .acc-arrow{ display:none; }
  .svc-card > *:not(summary){ display:block !important; }
  .svc-card p{ border-top:none; padding-top:0; margin-top:9px; }
}

/* ---------- Acento de color propio por grupo de servicios ---------- */
.svc-group{ position:relative; }
.svc-group-accent{
  display:block;
  width:34px; height:4px;
  border-radius:4px;
  margin-bottom:12px;
}
.svc-group-ia .svc-group-accent{ background:var(--violet); }
.svc-group-web .svc-group-accent{ background:var(--blue); }
.svc-group-ads .svc-group-accent{ background:var(--magenta); }
.svc-group-consult .svc-group-accent{ background:var(--teal); }

.svc-group-ia .svc-icon{ background:rgba(139,63,240,0.10); border-radius:10px; }
.svc-group-web .svc-icon{ background:rgba(59,76,255,0.10); border-radius:10px; }
.svc-group-ads .svc-icon{ background:rgba(224,32,143,0.10); border-radius:10px; }
.svc-group-consult .svc-icon{ background:rgba(13,148,136,0.10); border-radius:10px; }

.svc-group-ia .svc-card:hover{ border-color:rgba(139,63,240,0.35); }
.svc-group-web .svc-card:hover{ border-color:rgba(59,76,255,0.35); }
.svc-group-ads .svc-card:hover{ border-color:rgba(224,32,143,0.35); }
.svc-group-consult .svc-card:hover{ border-color:rgba(13,148,136,0.35); }

.svc-group-ia .svc-group-head span:last-child{ color:var(--violet); }
.svc-group-web .svc-group-head span:last-child{ color:var(--blue); }
.svc-group-ads .svc-group-head span:last-child{ color:var(--magenta); }
.svc-group-consult .svc-group-head span:last-child{ color:var(--teal); }

/* ---------- HERO: tarjeta de métricas flotante ---------- */
.metric-card{
  position:relative;
  z-index:1;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-float);
  padding:24px 22px;
  max-width:360px;
  margin:0 auto;
}
.metric-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}
.metric-label{
  font-family:var(--mono);
  font-size:11.5px;
  color:var(--muted);
  letter-spacing:0.02em;
}
.metric-badge{
  font-family:var(--mono);
  font-size:11px;
  font-weight:600;
  color:#fff;
  background:var(--grad);
  padding:4px 10px;
  border-radius:100px;
}
.metric-chart{ width:100%; height:auto; display:block; margin-bottom:18px; }
.metric-stats{ display:flex; flex-direction:column; gap:14px; }
.metric-stat-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.metric-stat-label{ font-size:13px; color:var(--muted); }
.metric-stat-value{
  font-family:var(--display);
  font-weight:700;
  font-size:16px;
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.metric-bar-track{
  flex:1;
  height:8px;
  border-radius:100px;
  background:var(--bg-soft);
  overflow:hidden;
  margin:0 10px;
}
.metric-bar-fill{
  height:100%;
  border-radius:100px;
  background:var(--grad);
  width:92%;
}
.metric-stat-tag{
  font-family:var(--mono);
  font-size:11px;
  font-weight:600;
  color:var(--violet);
  flex:none;
}

@media (max-width:768px){
  .metric-card{ max-width:100%; padding:20px 18px; }
}

/* ---------- PROCESO: timeline conectado ---------- */
.timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
}
.timeline-line{
  position:absolute;
  top:22px; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, var(--blue), var(--violet), var(--magenta));
  opacity:0.3;
  z-index:0;
}
.timeline-step{
  position:relative;
  z-index:1;
  padding-right:28px;
}
.timeline-step:last-child{ padding-right:0; }
.timeline-dot{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--grad);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--mono);
  font-weight:600;
  font-size:14px;
  margin-bottom:18px;
  box-shadow:0 10px 22px -8px rgba(59,76,255,0.5);
}
.timeline-step h3{ font-size:18px; font-weight:600; margin-bottom:10px; }
.timeline-step p{ font-size:14.5px; color:var(--muted); line-height:1.65; max-width:280px; }

@media (max-width:820px){
  .timeline{ grid-template-columns:1fr; gap:32px; }
  .timeline-line{ display:none; }
  .timeline-step{ padding-right:0; padding-left:24px; border-left:2px solid var(--line); }
  .timeline-dot{ width:36px; height:36px; font-size:12.5px; margin-left:-18px; margin-bottom:14px; }
}

/* =====================================================
   FORMULARIO DE COTIZACIÓN (compartido)
   ===================================================== */
.quote{ padding:50px 0; }
.quote-card{ padding:38px 34px; }
.quote-head h2{ margin-top:14px; font-size:clamp(1.7rem, 2.4vw + 0.7rem, 2.2rem); font-weight:600; line-height:1.25; }
.quote-head p{ margin-top:12px; color:var(--muted); font-size:15.5px; max-width:460px; }
.quote-form{ margin-top:28px; display:grid; grid-template-columns:1fr 1fr; gap:16px 18px; }
.quote-field{ display:flex; flex-direction:column; gap:6px; }
.quote-field.full{ grid-column:1 / -1; }
.quote-field label{
  font-family:var(--mono);
  font-size:11.5px;
  color:var(--muted);
  letter-spacing:0.02em;
}
.quote-field input,
.quote-field select{
  font-family:var(--body);
  font-size:15px;
  color:var(--ink);
  padding:12px 14px;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:var(--bg-soft);
  outline:none;
  transition:border-color .15s ease, background .15s ease;
  width:100%;
}
.quote-field input:focus,
.quote-field select:focus{ border-color:var(--violet); background:var(--surface); }
.tel-group{ display:flex; gap:8px; }
.tel-group select{ flex:0 0 92px; padding-left:8px; padding-right:4px; }
.tel-group input{ flex:1; }

.quote-checkbox{
  grid-column:1 / -1;
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
}
.quote-checkbox input{ margin-top:3px; width:16px; height:16px; accent-color:var(--violet); flex:none; }
.quote-checkbox a{ color:var(--violet); text-decoration:underline; }

.quote-submit{ grid-column:1 / -1; justify-content:center; margin-top:6px; }
.quote-note{
  grid-column:1 / -1;
  font-family:var(--mono);
  font-size:11px;
  color:var(--muted);
  text-align:center;
  margin-top:4px;
  line-height:1.5;
}

@media (max-width:640px){
  .quote-card{ padding:26px 22px; }
  .quote-form{ grid-template-columns:1fr; }
}

/* =====================================================
   PRUEBA SOCIAL / AUTORIDAD (países + nota legal)
   ===================================================== */
.authority{ padding:50px 0; background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.authority-head{ max-width:680px; margin-bottom:14px; }
.authority-head h2{ margin-top:14px; font-size:clamp(1.8rem, 2.6vw + 0.7rem, 2.4rem); font-weight:600; line-height:1.25; }
.authority-head p{ margin-top:14px; color:var(--muted); font-size:16px; line-height:1.65; }
.authority-head p + p{ margin-top:12px; }

.country-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}
.country-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:100px;
  padding:8px 14px;
  font-size:13.5px;
  font-weight:500;
  color:var(--ink);
  box-shadow:var(--shadow-card);
}

.legal-note{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  font-family:var(--mono);
  font-size:11px;
  color:var(--muted);
  line-height:1.6;
  max-width:720px;
}
