/* ============== Chiquicuidados - tokens & base ============== */

:root {
  /* ink scale - dark purple from logo */
  --ink: #2D1A4D;
  --ink-2: #4A3B6B;
  --ink-3: #6B5E85;
  --muted: #9A8FAE;
  --line: #E5DEEE;
  --line-2: #EFEAF5;

  /* paper / surface */
  --paper: #FBF7F2;
  --paper-warm: #FAF1E8;
  --surface: #FFFFFF;
  --surface-2: #F6F1FA;

  /* brand colors (from logo) */
  --fucsia: #E54E81;
  --fucsia-deep: #C8155A;
  --morado: #7632CE;
  --morado-deep: #3D1C60;
  --teal: #3DA5C8;
  --teal-deep: #339A8C;
  --amarillo: #FFC926;
  --azul: #134ADB;

  /* pastels - Maria Auxiliadora inspired */
  --pastel-pink: #FCE4EC;
  --pastel-pink-2: #F8D5DD;
  --pastel-blue: #DCE9F5;
  --pastel-blue-2: #BFD8EA;
  --pastel-lav: #EAE0F3;
  --pastel-lav-2: #D9C7E8;
  --pastel-teal: #E0F2EE;
  --pastel-cream: #FFF1D9;
  --pastel-peach: #FDE0D5;

  /* radii & shadow */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 16px -8px rgba(45,26,77,0.18), 0 1px 0 rgba(45,26,77,0.04);
  --shadow-md: 0 18px 40px -20px rgba(45,26,77,0.25), 0 2px 0 rgba(45,26,77,0.04);
  --shadow-lg: 0 40px 80px -30px rgba(45,26,77,0.35);

  /* fonts */
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01' on;
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.hide-sm { display: inline; }
@media (max-width: 520px) { .hide-sm { display: none; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============== reusable ============== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-tight { padding: 64px 0; position: relative; overflow: hidden; }

/* type */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--pastel-lav);
  color: var(--morado-deep);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.h-eyebrow.is-pink { background: var(--pastel-pink); color: var(--fucsia-deep); }
.h-eyebrow.is-blue { background: var(--pastel-blue); color: var(--azul); }
.h-eyebrow.is-teal { background: var(--pastel-teal); color: var(--teal-deep); }

.script {
  font-family: var(--font-script);
  font-weight: 600;
  font-style: italic;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 180ms, box-shadow 180ms, background 180ms, color 180ms;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 0 var(--morado-deep);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 0 var(--morado-deep); }
.btn-wa {
  background: linear-gradient(135deg, var(--fucsia) 0%, var(--morado) 100%);
  color: white;
  box-shadow: 0 6px 0 var(--morado-deep), var(--shadow-md);
}
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 8px 0 var(--morado-deep), var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-soft {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm), 0 0 0 1.5px var(--line) inset;
}
.btn-soft:hover { background: var(--surface-2); }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(79,191,176,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(79,191,176,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(79,191,176,0.0); }
}
.badge-popular {
  background: linear-gradient(135deg, var(--fucsia), var(--morado));
  color: white;
}
.badge-popular::before {
  content: '\2726';
  font-size: 12px;
}
.badge-yellow { background: var(--amarillo); color: var(--ink); }
.badge-teal { background: var(--teal); color: white; }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 0; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 180ms;
}
.nav-links a:hover { color: var(--fucsia); }
.nav-right { display: flex; gap: 12px; align-items: center; }

/* lang toggle */
.lang {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  background: var(--surface);
}
.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.lang button.is-active { background: var(--ink); color: var(--paper); }

/* hamburger */
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-pill);
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 24px; }

.nav-mobile {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 12px 0 18px;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile-inner {
  display: grid;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

/* hero */
.hero {
  padding: 60px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 18px 0 24px;
}
.hero-title .accent {
  display: inline-block;
  position: relative;
  color: var(--fucsia);
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: 0.08em; height: 0.22em;
  background: var(--pastel-pink-2);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-photo-wrap {
  position: relative;
  max-width: 540px;
  margin-left: auto;
}
.hero-photo-bg {
  position: absolute;
  inset: -12% -8% -6% -10%;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lav) 50%, var(--pastel-blue) 100%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: 0;
  filter: blur(0.5px);
}
.hero-photo-frame {
  position: relative;
  border-radius: 58% 42% 60% 40% / 50% 55% 45% 50%;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
  z-index: 1;
  border: 6px solid var(--surface);
  box-shadow: var(--shadow-lg);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-badge { position: absolute; z-index: 2; }
.hero-badge.top-left { top: 6%; left: -8%; transform: rotate(-3deg); }
.hero-badge.bot-right { bottom: 8%; right: -10%; transform: rotate(2deg); }
.hero-quote {
  position: absolute;
  z-index: 2;
  bottom: -28px;
  right: -16px;
  background: var(--surface);
  padding: 14px 18px;
  border-radius: var(--r-md) var(--r-md) 6px var(--r-md);
  box-shadow: var(--shadow-md);
  max-width: 260px;
  font-family: var(--font-script);
  font-size: 22px;
  line-height: 1.15;
  color: var(--morado-deep);
  transform: rotate(2deg);
}
.hero-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 14px;
  font-family: var(--font-display);
  color: var(--fucsia);
  font-size: 50px;
  line-height: 1;
}

/* trust strip */
.trust-strip {
  margin-top: 64px;
  background: var(--surface);
  border-radius: var(--r-pill);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
}
.trust-strip strong { color: var(--ink); font-weight: 800; }
.trust-strip .sep { color: var(--line); }

/* kite tail decoration */
.kite-tail-decor {
  position: absolute;
  pointer-events: none;
  color: var(--morado);
  opacity: 0.5;
}

/* generic section title */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 0;
}
.title-accent { color: var(--fucsia); }

/* SOBRE */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.sobre-photo { position: relative; }
.sobre-photo-frame {
  position: relative;
  border-radius: 52% 48% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.sobre-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-photo-bg {
  position: absolute;
  inset: -8% -10% -10% -8%;
  background: linear-gradient(135deg, var(--pastel-teal) 0%, var(--pastel-blue) 100%);
  border-radius: 50% 50% 55% 45% / 48% 52% 48% 52%;
  z-index: 0;
}
.sobre-badge-float {
  position: absolute;
  z-index: 2;
  top: -14px;
  right: -16px;
  background: var(--amarillo);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.05;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-sm);
}
.sobre-badge-float strong { font-size: 26px; display: block; line-height: 1; }
.sobre-content p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 560px;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.cred {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: 0 0 0 1.5px var(--line) inset;
}
.cred-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.cred ul { padding: 0; margin: 0; list-style: none; }
.cred li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
  display: flex;
  gap: 8px;
}
.cred li::before {
  content: '\2726';
  color: var(--fucsia);
  font-size: 11px;
  margin-top: 4px;
}

/* FILOSOFIA */
.filo {
  background: linear-gradient(180deg, var(--paper) 0%, var(--surface-2) 100%);
}
.filo-head { text-align: center; }
.filo-quote {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 760px;
  margin: 24px auto 56px;
}
.filo-quote .em { color: var(--fucsia); font-style: italic; }
.filo-kite-tail {
  display: flex;
  justify-content: center;
  margin: -20px 0 30px;
}
.filo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.filo-card {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.filo-card.c1 { background: linear-gradient(180deg, var(--pastel-pink) 0%, var(--pastel-pink-2) 100%); }
.filo-card.c2 { background: linear-gradient(180deg, var(--pastel-lav) 0%, var(--pastel-lav-2) 100%); }
.filo-card.c3 { background: linear-gradient(180deg, var(--pastel-blue) 0%, var(--pastel-blue-2) 100%); }
.filo-card-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.filo-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}
.filo-card p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
.filo-card-icon {
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* SERVICIOS */
.serv-head {
  text-align: center;
  margin-bottom: 56px;
}
.serv-head p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 16px auto 0;
}
.serv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.serv-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  border: 1.5px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 220ms, box-shadow 220ms, border-color 220ms;
  cursor: pointer;
  color: inherit;
}
.serv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.serv-card.is-featured {
  background: linear-gradient(160deg, var(--pastel-lav) 0%, var(--surface) 80%);
  border-color: transparent;
}
.serv-card .badge-popular {
  position: absolute;
  top: -10px;
  right: 18px;
}
.serv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-pink);
  margin-bottom: 16px;
  color: var(--morado-deep);
}
.serv-card.c-blue .serv-icon { background: var(--pastel-blue); }
.serv-card.c-lav .serv-icon { background: var(--pastel-lav); }
.serv-card.c-teal .serv-icon { background: var(--pastel-teal); }
.serv-card.c-pink .serv-icon { background: var(--pastel-pink); }
.serv-card.c-yellow .serv-icon { background: var(--pastel-cream); }
.serv-card.c-peach .serv-icon { background: var(--pastel-peach); }
.serv-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 8px;
}
.serv-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.serv-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--fucsia);
  font-size: 14px;
}

/* AGENDAR */
.agendar {
  background: linear-gradient(180deg, var(--paper) 0%, var(--pastel-lav) 100%);
  overflow: hidden;
}
.agendar-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
}
.agendar-intro p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 420px;
  margin-bottom: 28px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--morado), var(--fucsia));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}
.step-num.is-2 { background: linear-gradient(135deg, var(--azul), var(--teal)); }
.step-num.is-3 { background: linear-gradient(135deg, var(--amarillo), var(--fucsia)); }
.step-num.is-4 { background: linear-gradient(135deg, var(--morado), var(--morado-deep)); }
.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
  color: var(--ink);
}
.step-desc { font-size: 14px; color: var(--ink-2); margin: 0; }

/* UBICACION */
.ubi-head {
  text-align: center;
  margin-bottom: 48px;
}
.ubi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: stretch;
}
.ubi-info {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.ubi-info-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
}
.ubi-info-sub {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fucsia);
  margin-top: 4px;
}
.ubi-info-city {
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 6px;
}
.ubi-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1.5px dashed var(--line);
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
}
.ubi-meta .row { display: flex; gap: 10px; align-items: center; }
.ubi-meta .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pastel-lav);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}
.ubi-meta .ico.is-letter {
  color: var(--morado-deep);
  font-weight: 800;
  font-size: 13px;
}
.ubi-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  flex-wrap: wrap;
}
.ubi-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--pastel-blue);
  position: relative;
  min-height: 360px;
  box-shadow: var(--shadow-sm);
}
.ubi-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 56px;
}
.faq-intro p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.faq-item {
  border-bottom: 1.5px solid var(--line);
  padding: 4px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pastel-lav);
  color: var(--morado-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  transition: transform 220ms, background 220ms;
  flex: 0 0 32px;
}
.faq-item.is-open .faq-q-icon {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease, padding 220ms;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.faq-item.is-open .faq-a {
  max-height: 320px;
  padding: 0 4px 22px;
}

/* CTA banner */
.cta-banner-wrap { padding-top: 0; }
.cta-banner {
  background: linear-gradient(135deg, var(--fucsia) 0%, var(--morado) 60%, var(--morado-deep) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.cta-banner p {
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 28px;
  opacity: 0.92;
}
.cta-banner .accent-yellow { color: var(--amarillo); }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-deco-kite-tr {
  position: absolute;
  top: -20px;
  right: -20px;
  opacity: 0.2;
  transform: rotate(15deg);
}
.cta-deco-kite-bl {
  position: absolute;
  bottom: -30px;
  left: -30px;
  opacity: 0.15;
  transform: rotate(-12deg);
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-tail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.15;
  pointer-events: none;
}
.footer-inner { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.5);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 15px; }
.footer ul a { transition: color 180ms; }
.footer ul a:hover { color: var(--fucsia); }
.footer-logo {
  background: var(--paper);
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 280px;
  margin: 12px 0 0;
}
.footer-cta { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.footer-contact a {
  display: inline-block;
  color: rgba(255,255,255,0.85);
}
.footer-contact .sub {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 2px;
}
.footer-lang { margin-top: 18px; }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bot-links { display: flex; gap: 18px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .section { padding: 64px 0; }
  .hero { padding: 32px 0 64px; }
  .hero-grid,
  .sobre-grid,
  .agendar-grid,
  .ubi-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-photo-wrap { max-width: 460px; margin: 0 auto; }
  .sobre-photo { max-width: 420px; margin: 0 auto; }
  .filo-cards,
  .serv-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .ubi-map { min-height: 320px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .section-tight { padding: 48px 0; }
  .container { padding: 0 18px; }

  /* nav */
  .nav-inner { gap: 8px; padding-top: 12px; padding-bottom: 12px; }
  .nav-logo img { height: 36px; }
  .nav-right { gap: 8px; }
  .nav .lang { font-size: 11px; }
  .nav .lang button { padding: 5px 9px; }
  .nav .btn-wa { padding: 10px 14px; font-size: 13px; }

  /* hero */
  .hero { padding: 24px 0 56px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); margin: 14px 0 18px; }
  .hero-sub { font-size: 16px; margin-bottom: 22px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-photo-wrap { max-width: 320px; margin: 10px auto 30px; }
  .hero-photo-bg { inset: -8% -4% -4% -6%; }
  .hero-badge.top-left { top: -10px; left: 0; transform: rotate(-3deg); }
  .hero-quote {
    right: 0;
    bottom: -22px;
    max-width: 220px;
    font-size: 18px;
    padding: 12px 14px;
  }
  .trust-strip {
    margin-top: 40px;
    padding: 14px 18px;
    font-size: 12.5px;
    gap: 6px 10px;
  }
  .trust-strip .sep { display: none; }

  /* sobre */
  .sobre-content p { font-size: 16px; }
  .sobre-photo { max-width: 320px; }
  .sobre-photo-bg { inset: -6% -4% -4% -4%; }
  .sobre-badge-float {
    width: 88px;
    height: 88px;
    font-size: 11px;
    top: -8px;
    right: 4px;
  }
  .sobre-badge-float strong { font-size: 22px; }
  .cred-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }

  /* filo - compact horizontal layout */
  .filo-cards,
  .serv-cards { grid-template-columns: 1fr; gap: 12px; }
  .filo-quote {
    margin: 18px auto 28px;
    font-size: clamp(20px, 5.4vw, 26px);
    text-align: left;
    line-height: 1.2;
    padding: 0;
    overflow-wrap: break-word;
  }
  .filo-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    min-height: auto;
    padding: 18px 18px;
    border-radius: var(--r-md);
  }
  .filo-card-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    align-self: center;
  }
  .filo-card-icon svg { width: 22px; height: 22px; }
  .filo-card-tag {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 10px;
  }
  .filo-card-title {
    grid-column: 2;
    grid-row: 2;
    font-size: 22px;
    margin-bottom: 4px;
    line-height: 1.05;
  }
  .filo-card p {
    grid-column: 2;
    grid-row: 3;
    font-size: 13.5px;
    line-height: 1.45;
  }

  /* serv - compact list-style on mobile */
  .serv-head { margin-bottom: 28px; }
  .serv-card {
    display: grid;
    grid-template-columns: 44px 1fr 16px;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--r-md);
  }
  .serv-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0;
    align-self: center;
  }
  .serv-icon svg { width: 22px; height: 22px; }
  .serv-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    margin: 0;
    line-height: 1.2;
  }
  .serv-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    color: var(--ink-3);
  }
  .serv-link { display: none; }
  .serv-card::after {
    content: '›';
    grid-column: 3;
    grid-row: 1 / span 2;
    font-size: 24px;
    line-height: 1;
    color: var(--ink-3);
    align-self: center;
    font-family: var(--font-display);
    font-weight: 400;
  }
  .serv-card .badge-popular {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    position: static;
    font-size: 9.5px;
    padding: 3px 7px;
    align-self: center;
  }
  .serv-card.is-featured .serv-title { padding-right: 78px; }

  /* agendar */
  .agendar-intro p { font-size: 16px; }
  .step { padding: 14px 16px; grid-template-columns: 44px 1fr; gap: 12px; }
  .step-num { width: 38px; height: 38px; font-size: 18px; }
  .step-title { font-size: 16px; }

  /* ubi */
  .ubi-info { padding: 22px; }
  .ubi-head { margin-bottom: 32px; }
  .ubi-actions .btn { flex: 1 1 auto; justify-content: center; }

  /* faq */
  .faq-q { font-size: 16px; padding: 16px 4px; gap: 12px; }
  .faq-item.is-open .faq-a { max-height: 800px; }

  /* cta banner */
  .cta-banner { padding: 36px 22px; border-radius: var(--r-lg); }
  .cta-banner p { font-size: 16px; }

  /* footer */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .footer-bot { justify-content: center; text-align: center; }
  .footer-bot-links { justify-content: center; }
}

@media (max-width: 380px) {
  .nav .btn-wa { padding: 9px 11px; }
  .nav .btn-wa .hide-sm { display: none; }
  .hero-title { font-size: clamp(28px, 10vw, 40px); }
  .hero-quote { max-width: 180px; font-size: 16px; }
  .sobre-badge-float { width: 76px; height: 76px; font-size: 10px; }
  .sobre-badge-float strong { font-size: 19px; }
}
