/* ============================================================
   CLINIC HEALTH — Tratamiento Podológico Integral
   Paleta de marca:  Morado #613e78 · Verde #7da61f · Amarillo #fae010
   ============================================================ */

:root {
  /* Brand */
  --purple: #613e78;
  --purple-d: #4a2d5d;
  --purple-l: #8a63a6;
  --green: #7da61f;
  --green-d: #688a16;
  --green-l: #9bc63a;
  --yellow: #fae010;
  --yellow-d: #e6cb00;

  /* WhatsApp */
  --wa: #25d366;
  --wa-d: #1da851;

  /* Neutrals */
  --ink: #2b2433;
  --ink-soft: #5c5466;
  --muted: #8b8494;
  --line: #ece8f1;
  --bg: #ffffff;
  --bg-soft: #f7f4fb;
  --bg-lav: #f3eef9;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(97, 62, 120, .08);
  --shadow: 0 18px 45px rgba(97, 62, 120, .14);
  --shadow-lg: 0 30px 70px rgba(97, 62, 120, .22);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --grad-brand: linear-gradient(120deg, var(--purple) 0%, #6f4a86 55%, var(--green) 130%);
  --grad-purple: linear-gradient(135deg, var(--purple) 0%, var(--purple-l) 100%);
  --grad-green: linear-gradient(135deg, var(--green) 0%, var(--green-l) 100%);

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: "Poppins", sans-serif; line-height: 1.15; color: var(--purple-d); font-weight: 700; }
svg { fill: currentColor; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ---------- Reveal animations ----------
   Importante: el contenido es VISIBLE por defecto. Solo se oculta para animar
   cuando <html> tiene la clase .js (añadida por JS). Así, si el JS falla o no
   corre, la página se ve completa igualmente (a prueba de fallos). */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  --bx: 0 12px 26px rgba(97,62,120,.26);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .98rem;
  padding: .82em 1.5em; border-radius: 100px; color: #fff;
  background: var(--grad-purple); box-shadow: var(--bx);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
  position: relative; white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(97,62,120,.34); }
.btn:active { transform: translateY(-1px); }
.btn--primary { background: var(--grad-purple); }
.btn--ghost { background: transparent; color: var(--purple); box-shadow: inset 0 0 0 2px rgba(97,62,120,.28); }
.btn--ghost:hover { background: rgba(97,62,120,.06); box-shadow: inset 0 0 0 2px var(--purple); }
.btn--ghost-dark { color: var(--purple); }
.btn--accent { background: linear-gradient(135deg, var(--green) 0%, var(--green-l) 100%); color: #fff; box-shadow: 0 12px 26px rgba(125,166,31,.34); }
.btn--accent:hover { box-shadow: 0 18px 36px rgba(125,166,31,.42); }
.btn--whatsapp { background: linear-gradient(135deg, var(--wa) 0%, var(--wa-d) 100%); box-shadow: 0 12px 26px rgba(37,211,102,.34); }
.btn--whatsapp:hover { box-shadow: 0 18px 36px rgba(37,211,102,.45); }
.btn--whatsapp .ico-wa { width: 1.35em; height: 1.35em; fill: #fff; }
.btn--lg { padding: 1.02em 1.9em; font-size: 1.05rem; }
.btn--sm { padding: .62em 1.15em; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---------- Pills / eyebrows ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .82rem;
  padding: .5em 1.1em; border-radius: 100px; letter-spacing: .2px;
}
.pill--light { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); }
.pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(250,224,16,.3); animation: blink 1.8s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.45} }

.eyebrow {
  display: inline-block; font-family: "Poppins", sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green-d); margin-bottom: 14px;
}
.eyebrow--light { color: var(--yellow); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 118px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 66px); text-align: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.5px; }
.section__title--light { color: #fff; }
.section__sub { color: var(--ink-soft); margin-top: 16px; font-size: 1.08rem; }

.grad-text {
  background: linear-gradient(100deg, var(--green) 0%, var(--green-l) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Decorative blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.blob--1 { width: 420px; height: 420px; background: rgba(138,99,166,.45); top: -120px; right: -80px; animation: float1 14s ease-in-out infinite; }
.blob--2 { width: 360px; height: 360px; background: rgba(155,198,58,.4); bottom: -120px; left: -100px; animation: float2 16s ease-in-out infinite; }
.blob--3 { width: 380px; height: 380px; background: rgba(255,255,255,.16); top: -90px; left: -60px; filter: blur(70px); }
.blob--4 { width: 420px; height: 420px; background: rgba(155,198,58,.2); bottom: -120px; right: -90px; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,30px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(34px,-26px)} }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 200; }
.topbar {
  background: var(--purple-d); color: rgba(255,255,255,.86);
  font-size: .82rem; transition: max-height .4s var(--ease), opacity .3s;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 18px; }
.topbar__contact, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__item, .topbar__hours { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.86); }
.topbar__item:hover { color: #fff; }
.topbar .ico { width: 15px; height: 15px; fill: var(--yellow); }
.social--top { display: flex; gap: 8px; }
.social__link {
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.12); transition: background .3s, transform .3s;
}
.social--top .social__link svg { width: 14px; height: 14px; fill: #fff; }
.social__link:hover { background: var(--green); transform: translateY(-2px); }

.nav {
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); transition: box-shadow .35s, padding .35s;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.brand__logo { height: 56px; width: auto; transition: height .35s var(--ease); }
.site-header.scrolled .nav { box-shadow: 0 10px 30px rgba(97,62,120,.1); }
.site-header.scrolled .brand__logo { height: 46px; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: .55em .85em; border-radius: 100px; position: relative; transition: color .3s, background .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; width: 0; height: 2px;
  background: var(--green); border-radius: 2px; transform: translateX(-50%); transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--purple); }
.nav__link:hover::after, .nav__link.active::after { width: 18px; }
.nav__cta-mobile { display: none; }
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; border-radius: 12px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--purple); border-radius: 3px; transition: transform .35s var(--ease), opacity .25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 86px) 0 clamp(70px, 9vw, 120px); background: var(--bg-lav); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(138,99,166,.18), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(155,198,58,.16), transparent 46%),
    var(--bg-lav);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero__title { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 800; letter-spacing: -1px; margin: 18px 0 18px; }
.hero__text { font-size: 1.14rem; color: var(--ink-soft); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .94rem; color: var(--ink-soft); }
.hero__trust .ico { width: 18px; height: 18px; fill: #fff; background: var(--green); border-radius: 50%; padding: 3px; }

.hero__media { position: relative; }
.hero__img-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; border: 6px solid #fff;
  animation: heroIn 1.1s var(--ease) both;
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
@keyframes heroIn { from { opacity: 0; transform: scale(1.06) translateY(20px); } to { opacity: 1; transform: none; } }

.float-card {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 11px; z-index: 3;
}
.float-card strong { display: block; font-family: "Poppins", sans-serif; font-size: 1.05rem; color: var(--purple-d); line-height: 1.1; }
.float-card span { font-size: .8rem; color: var(--muted); }
.float-card--rating { top: 26px; left: -26px; animation: floatY 4.5s ease-in-out infinite; }
.float-card--rating .stars { color: var(--yellow-d); font-size: 1.1rem; letter-spacing: 1px; }
.float-card--exp { bottom: 26px; right: -22px; animation: floatY 4.5s ease-in-out infinite .6s; }
.float-card__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-green); display: grid; place-items: center; }
.float-card__icon svg { width: 22px; height: 22px; fill: #fff; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--grad-brand); padding: clamp(34px, 5vw, 52px) 0; position: relative; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat { color: #fff; padding: 8px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.18); }
.stat__num { display: block; font-family: "Poppins", sans-serif; font-weight: 800; font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1; color: var(--yellow); }
.stat__label { font-size: .92rem; color: rgba(255,255,255,.9); margin-top: 8px; display: block; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.about__media { position: relative; padding-bottom: 30px; padding-right: 28px; }
.about__img { border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.about__img--main { width: 86%; aspect-ratio: 4/3.4; }
.about__img--sub {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1/1;
  border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute; top: 18px; right: 8px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); padding: 12px 14px; display: flex; align-items: center; gap: 10px;
  z-index: 4; animation: floatY 5s ease-in-out infinite;
}
.about__badge svg { width: 30px; height: 30px; fill: var(--green); }
.about__badge span { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .82rem; color: var(--purple-d); line-height: 1.15; }

.about__content p { color: var(--ink-soft); margin-bottom: 16px; }
.about__content .section__title { margin-bottom: 18px; }
.checklist { display: grid; gap: 12px; margin: 24px 0 30px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.check { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; background: rgba(125,166,31,.15); display: grid; place-items: center; }
.check svg { width: 15px; height: 15px; fill: var(--green-d); }
.check--accent { background: rgba(250,224,16,.2); }
.check--accent svg { fill: var(--yellow-d); }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(74,45,93,.42), transparent 55%); }
.service-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.92);
  color: var(--purple); font-family: "Poppins", sans-serif; font-weight: 600; font-size: .74rem;
  padding: .4em .85em; border-radius: 100px; letter-spacing: .3px;
}
.service-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 1.32rem; margin-bottom: 10px; }
.service-card__body p { color: var(--ink-soft); font-size: .98rem; flex: 1; margin-bottom: 20px; }
.service-card__btn {
  align-self: flex-start; display: inline-flex; align-items: center; gap: .5em;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .95rem; color: var(--purple);
  padding: .7em 1.3em; border-radius: 100px; background: rgba(97,62,120,.08);
  transition: background .35s, color .35s, gap .35s, transform .35s;
}
.service-card__btn .ico { width: 18px; height: 18px; transition: transform .35s; }
.service-card__btn:hover { background: var(--grad-purple); color: #fff; }
.service-card__btn:hover .ico { transform: translateX(4px); }

/* ============================================================
   HOME SERVICE
   ============================================================ */
.home-service { position: relative; overflow: hidden; background: var(--grad-brand); color: #fff; padding: clamp(60px, 8vw, 104px) 0; }
.home-service__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 6vw, 70px); align-items: center; }
.home-service__content p { color: rgba(255,255,255,.92); margin: 16px 0 22px; font-size: 1.08rem; max-width: 560px; }
.home-service__content .section__title { margin-top: 16px; }
.home-service__list { display: grid; gap: 12px; margin-bottom: 32px; }
.home-service__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.home-service__list .ico { width: 22px; height: 22px; flex: 0 0 22px; padding: 4px; border-radius: 50%; background: var(--yellow); fill: var(--purple-d); }
.home-service__media { position: relative; }
.home-service__media img { border-radius: var(--radius-xl); border: 6px solid rgba(255,255,255,.22); box-shadow: var(--shadow-lg); aspect-ratio: 5/4; object-fit: cover; width: 100%; }

/* ============================================================
   WHY / FEATURES
   ============================================================ */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: #fff; border-radius: var(--radius-lg); padding: 34px 26px; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature__icon { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 20px; background: linear-gradient(135deg, rgba(97,62,120,.12), rgba(125,166,31,.16)); display: grid; place-items: center; transition: transform .4s var(--ease); }
.feature:hover .feature__icon { transform: rotate(-6deg) scale(1.05); }
.feature__icon svg { width: 34px; height: 34px; fill: var(--purple); }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius-lg); padding: 40px 30px 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.step__num {
  position: absolute; top: -26px; left: 30px; width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-purple); color: #fff; font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: 1.5rem; display: grid; place-items: center; box-shadow: 0 10px 22px rgba(97,62,120,.3);
}
.step h3 { font-size: 1.22rem; margin: 16px 0 10px; }
.step p { color: var(--ink-soft); font-size: .97rem; }

/* ============================================================
   TEAM / ESPECIALISTAS
   ============================================================ */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member {
  background: #fff; border-radius: var(--radius-lg); padding: 38px 30px 32px; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.member:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.member__avatar {
  width: 96px; height: 96px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--a, var(--purple)), var(--b, var(--green)));
  display: grid; place-items: center; color: #fff; font-family: "Poppins", sans-serif;
  font-weight: 700; font-size: 2rem; box-shadow: 0 12px 26px rgba(97,62,120,.26);
  position: relative;
}
.member__avatar::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px dashed rgba(97,62,120,.25); }
.member__name { font-size: 1.22rem; }
.member__role { display: block; color: var(--green-d); font-weight: 700; font-size: .9rem; margin: 4px 0 14px; font-family: "Poppins", sans-serif; }
.member__bio { color: var(--ink-soft); font-size: .96rem; margin-bottom: 16px; }
.member__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.member__tags li { font-size: .78rem; font-weight: 600; color: var(--purple); background: rgba(97,62,120,.08); padding: .35em .9em; border-radius: 100px; }
.team__note { text-align: center; margin-top: 38px; color: var(--ink-soft); }
.team__note a { color: var(--green-d); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testimonial::before { content: "“"; position: absolute; top: 6px; right: 26px; font-family: "Poppins", sans-serif; font-size: 5rem; line-height: 1; color: rgba(125,166,31,.18); }
.testimonial__stars { color: var(--yellow-d); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { color: var(--ink-soft); font-size: 1.02rem; font-style: italic; margin-bottom: 22px; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-purple); color: #fff; display: grid; place-items: center; font-family: "Poppins", sans-serif; font-weight: 700; font-size: .95rem; }
.testimonial figcaption strong { display: block; color: var(--purple-d); font-family: "Poppins", sans-serif; }
.testimonial figcaption small { color: var(--muted); }

/* ============================================================
   BOOKING / FORM
   ============================================================ */
.booking { background: var(--grad-brand); position: relative; overflow: hidden; }
.booking__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(34px, 6vw, 66px); align-items: center; }
.booking__intro { color: #fff; }
.booking__intro p { color: rgba(255,255,255,.92); margin: 16px 0 24px; font-size: 1.08rem; }
.booking__perks { display: grid; gap: 12px; margin-bottom: 30px; }
.booking__perks li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.booking__call { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 16px 20px; border-radius: 18px; max-width: 340px; }
.booking__call-ico { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px; background: var(--green); display: grid; place-items: center; }
.booking__call-ico svg { width: 22px; height: 22px; fill: #fff; }
.booking__call div { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.35; }
.booking__call a { font-family: "Poppins", sans-serif; font-weight: 700; color: #fff; font-size: 1.12rem; }

.booking__form { background: #fff; border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-lg); }
.booking__form-title { font-size: 1.45rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .88rem; color: var(--purple-d); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85em 1em; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--bg-soft); color: var(--ink); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: #aba5b5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-l); background: #fff; box-shadow: 0 0 0 4px rgba(138,99,166,.14);
}
.field textarea { resize: vertical; min-height: 84px; }
.field.invalid input, .field.invalid select { border-color: #e5557a; box-shadow: 0 0 0 4px rgba(229,85,122,.12); }
.radio-group { display: flex; gap: 10px; }
.radio { flex: 1; position: relative; }
.radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio span {
  display: block; text-align: center; padding: .8em 1em; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--bg-soft); font-weight: 600; font-size: .94rem; color: var(--ink-soft); transition: all .25s;
}
.radio input:checked + span { border-color: var(--purple); background: rgba(97,62,120,.08); color: var(--purple); box-shadow: 0 0 0 3px rgba(97,62,120,.1); }
.booking__form .btn { margin-top: 8px; }
.booking__disclaimer { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.5; }

/* ============================================================
   LOCATION
   ============================================================ */
.location__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 56px); align-items: stretch; }
.location__info { display: flex; flex-direction: column; justify-content: center; }
.info-list { display: grid; gap: 22px; margin-bottom: 30px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list__ico { width: 50px; height: 50px; flex: 0 0 50px; border-radius: 14px; background: linear-gradient(135deg, rgba(97,62,120,.12), rgba(125,166,31,.16)); display: grid; place-items: center; }
.info-list__ico svg { width: 24px; height: 24px; fill: var(--purple); }
.info-list strong { display: block; font-family: "Poppins", sans-serif; color: var(--purple-d); margin-bottom: 3px; }
.info-list span { color: var(--ink-soft); font-size: .97rem; }
.info-list a { color: var(--green-d); font-weight: 700; }
.location__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; border: 6px solid #fff; }
.location__map iframe { display: block; width: 100%; height: 100%; min-height: 368px; border: 0; filter: saturate(1.05); }
.map-facade {
  width: 100%; min-height: 368px; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; cursor: pointer; text-align: center;
  padding: 24px; border: none; color: var(--purple-d);
  background: linear-gradient(135deg, #efe9f6 0%, #e8f1da 100%);
  transition: filter .3s;
}
.map-facade:hover { filter: brightness(.97); }
.map-facade__pin { width: 64px; height: 64px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow); margin-bottom: 8px; animation: floatY 4s ease-in-out infinite; }
.map-facade__pin svg { width: 34px; height: 34px; fill: var(--purple); }
.map-facade strong { font-family: "Poppins", sans-serif; font-size: 1.12rem; }
.map-facade__addr { color: var(--ink-soft); font-size: .92rem; max-width: 280px; }
.map-facade__btn { margin-top: 12px; background: var(--grad-purple); color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .9rem; padding: .62em 1.35em; border-radius: 100px; box-shadow: var(--shadow-sm); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--bg-lav); padding: clamp(54px, 7vw, 90px) 0; }
.final-cta__inner {
  background: var(--grad-green); border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 70px) clamp(26px, 5vw, 60px);
  text-align: center; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.final-cta__inner::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.12); top: -130px; right: -80px; }
.final-cta__inner::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(97,62,120,.18); bottom: -110px; left: -60px; }
.final-cta h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); position: relative; }
.final-cta p { position: relative; margin: 12px 0 28px; font-size: 1.1rem; color: rgba(255,255,255,.95); }
.final-cta__actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final-cta .btn--accent { background: #fff; color: var(--green-d); }
.final-cta .btn--accent:hover { background: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--purple-d); color: rgba(255,255,255,.78); padding-top: clamp(50px, 7vw, 80px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 38px; padding-bottom: 46px; }
.footer__logo { background: #fff; border-radius: 16px; padding: 14px; display: inline-block; margin-bottom: 16px; }
.footer__logo img { height: 64px; width: auto; }
.footer__brand p { font-size: .94rem; margin-bottom: 18px; max-width: 320px; }
.social--footer { display: flex; gap: 10px; }
.social--footer .social__link { width: 38px; height: 38px; background: rgba(255,255,255,.1); }
.social--footer .social__link svg { width: 17px; height: 17px; fill: #fff; }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a:hover { color: var(--yellow); }
.footer__col li { font-size: .94rem; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 4px; }
.footer__contact .ico { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 3px; fill: var(--green-l); }
.footer__contact { margin-bottom: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.6); }

/* ============================================================
   FLOATING WHATSAPP + SCROLL TOP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-d) 100%); display: grid; place-items: center;
  z-index: 150; box-shadow: 0 14px 30px rgba(37,211,102,.5); transition: transform .35s var(--ease);
}
.wa-float svg { width: 34px; height: 34px; fill: #fff; position: relative; z-index: 2; }
.wa-float:hover { transform: scale(1.08); }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); animation: pulse 2.2s ease-out infinite; z-index: 1; }
@keyframes pulse { 0%{transform:scale(1);opacity:.55} 70%{transform:scale(1.7);opacity:0} 100%{opacity:0} }
.wa-float__tip {
  position: fixed; right: 92px; bottom: 38px; background: #fff; color: var(--ink); font-weight: 600;
  font-size: .85rem; padding: .55em 1em; border-radius: 100px; box-shadow: var(--shadow); z-index: 150;
  opacity: 0; transform: translateX(10px); pointer-events: none; transition: opacity .4s, transform .4s; white-space: nowrap;
}
.wa-float__tip::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border-left: 7px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.wa-float__tip.show { opacity: 1; transform: translateX(0); }

.to-top {
  position: fixed; right: 26px; bottom: 94px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--purple); color: #fff; display: grid; place-items: center; z-index: 140;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s, transform .35s, visibility .35s, background .3s;
}
.to-top svg { width: 24px; height: 24px; fill: #fff; }
.to-top:hover { background: var(--purple-d); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader { position: fixed; inset: 0; background: var(--bg-lav); z-index: 999; display: grid; place-items: center; transition: opacity .6s, visibility .6s; }
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader__mark { position: relative; width: 110px; height: 110px; display: grid; place-items: center; }
.preloader__mark img { width: 92px; height: auto; animation: bob 1.4s ease-in-out infinite; }
.preloader__pulse { position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--purple); border-top-color: var(--green); animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .topbar { display: none; }
  .nav__inner { min-height: 68px; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); flex-direction: column; align-items: stretch;
    gap: 4px; background: #fff; padding: 96px 26px 30px; box-shadow: -20px 0 50px rgba(97,62,120,.18);
    transform: translateX(100%); transition: transform .42s var(--ease); z-index: 190;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { padding: .85em 1em; border-radius: 12px; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__link:hover { background: var(--bg-soft); }
  .nav__cta-mobile { display: block; margin-top: 14px; }
  .nav__cta-mobile .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(43,36,51,.5); z-index: 180; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 1; }
  .hero__media { order: 2; max-width: 480px; margin: 10px auto 0; }
  .hero__text { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .about__grid, .home-service__inner, .booking__grid, .location__grid { grid-template-columns: 1fr; }
  .home-service__media, .booking__intro { order: -1; }
  .about__media { max-width: 520px; margin: 0 auto; }
  .services__grid, .team__grid, .testimonials__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .services__grid, .team__grid, .testimonials__grid, .process__grid, .why__grid { grid-template-columns: 1fr; }
  .process__grid { gap: 42px; margin-top: 20px; }
  .float-card--rating { left: 0; top: 14px; }
  .float-card--exp { right: 0; bottom: 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .final-cta__actions, .hero__actions { flex-direction: column; }
  .final-cta__actions .btn, .hero__actions .btn { width: 100%; }
  .wa-float__tip { display: none; }
}
@media (max-width: 420px) {
  .container { padding-inline: 16px; }
  .hero__img-wrap { aspect-ratio: 4/3.8; }
  .float-card { padding: 9px 12px; }
  .float-card strong { font-size: .92rem; }
}
