:root {
  --bg: #0f1113;
  --bg-2: #161a1e;
  --surface: #1c2127;
  --surface-2: #232a31;
  --line: #2e363f;
  --amber: #1d4ed8;
  --amber-2: #1e3a8a;
  --cyan: #06b6d4;
  --cyan-2: #0e7490;
  --steel: #8b96a3;
  --text: #eef2f6;
  --muted: #97a2ad;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Inline professional icons */
.icon { width: 1.1em; height: 1.1em; flex: none; }
.service__icon svg { width: 30px; height: 30px; color: var(--amber); }
.contact__meta svg { width: 22px; height: 22px; color: var(--amber); flex: none; }
.topbar__tag svg { width: 1em; height: 1em; }
.hero__strip-inner svg { width: 1.05em; height: 1.05em; color: var(--amber); flex: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn--solid {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(34, 211, 238, 0.55);
}
.btn--solid:hover { box-shadow: 0 10px 28px -6px rgba(34, 211, 238, 0.6); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--lg { font-size: 1.05rem; padding: 1.05rem 2rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, #0b1220, #15233b);
  border-bottom: 1px solid rgba(29, 78, 216, 0.25);
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar__tag { color: #fff; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; }
.topbar__tag:hover { opacity: .85; }
.topbar__phone, .topbar__email { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; }
.topbar__phone:hover, .topbar__email:hover { color: #fff; opacity: .85; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 19, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.8);
  background: rgba(15, 17, 19, 0.95);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 156px; padding-top: 8px; padding-bottom: 8px; }
  .brand__logo { height: 96px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav__cta { color: #ffffff !important;   background: linear-gradient(135deg, var(--cyan), var(--cyan-2)); border-radius: 10px; padding: 0.7rem 1.2rem; box-shadow: 0 8px 24px -6px rgba(34, 211, 238, 0.55); }
.nav__cta:hover { color: #ffffff !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--text); transition: 0.3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 0; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 19, 0.80), rgba(15, 17, 19, 0.92)),
    radial-gradient(900px 500px at 85% -10%, rgba(30, 58, 138, 0.28), transparent 60%),
    url("assets/images/opt/taller.webp") center / cover no-repeat;
  background-color: #0f1113;
  z-index: -2;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 26px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 26px);
  opacity: 0.35;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #ffffff;
  border: 1px solid rgba(29, 78, 216, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: 0.005em; }
.hero__title .accent {
  background: linear-gradient(120deg, var(--amber), var(--amber-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { color: var(--muted); font-size: 1.12rem; max-width: 540px; margin: 22px 0 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.trust { list-style: none; display: flex; gap: 30px; padding: 0; margin: 38px 0 0; flex-wrap: wrap; }
.trust li { display: flex; flex-direction: column; }
.trust strong { font-family: "Oswald", sans-serif; font-size: 1.8rem; color: var(--text); }
.trust span { font-size: 0.82rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.05em; }

/* Quote card */
.hero__panel { perspective: 1000px; }
.card-quote {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card-quote::before {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.25), transparent 70%);
}
.card-quote__head { display: flex; align-items: center; gap: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; color: var(--muted); }
.card-quote__head .dot { width: 10px; height: 10px; border-radius: 50%; background: #36d399; box-shadow: 0 0 0 4px rgba(54, 211, 153, 0.2); }
.card-quote__price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; }
.card-quote__price .old { text-decoration: line-through; color: var(--steel); font-size: 1.3rem; }
.card-quote__price .new { font-family: "Oswald", sans-serif; font-size: 3.6rem; color: var(--amber); line-height: 1; }
.card-quote__price .label { text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-size: 0.8rem; }
.card-quote__note { color: var(--steel); font-size: 0.92rem; margin: 0 0 20px; }
.card-quote__timer { margin-top: 16px; text-align: center; font-size: 0.82rem; color: var(--steel); letter-spacing: 0.04em; }
.card-quote__timer span { color: var(--amber); font-weight: 700; font-variant-numeric: tabular-nums; }

.hero__strip { margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(0,0,0,0.25); }
.hero__strip-inner { display: flex; flex-wrap: wrap; gap: 14px 40px; padding-top: 18px; padding-bottom: 18px; color: var(--muted); font-size: 0.92rem; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section--dark { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.kicker {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--amber);
  margin-bottom: 14px;
}
.kicker--light { color: #ffffff; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); }
.section__sub { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.stars { color: var(--amber); font-size: 1.4rem; letter-spacing: 4px; margin-top: 14px; }
.stars span { color: var(--steel); font-size: 0.85rem; letter-spacing: normal; font-family: "Barlow"; }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Services */
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.service:hover { transform: translateY(-6px); border-color: rgba(29, 78, 216, 0.5); box-shadow: var(--shadow); }
.service__icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.7rem;
  background: linear-gradient(135deg, rgba(29,78,216,0.16), rgba(59,130,246,0.08));
  border: 1px solid rgba(29, 78, 216, 0.3);
  margin-bottom: 18px;
}
.service h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.service ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 9px; }
.service li { color: var(--muted); font-size: 0.95rem; line-height: 1.4; padding-left: 22px; position: relative; }
.service li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--amber); border-radius: 2px; transform: rotate(45deg); }

.service__media {
  display: block; width: calc(100% + 56px); margin: -32px -28px 22px;
  height: 172px; object-fit: cover; object-position: center;
  border-radius: var(--radius) var(--radius) 0 0; background: #12161a;
}
.brands { margin-top: 30px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.brands__img { display: block; width: 100%; height: auto; }
.process__img, .about__img {
  display: block; width: 100%; border-radius: var(--radius); border: 1px solid var(--line);
}
.process__img { margin-bottom: 34px; }
.about__img { margin-top: 30px; }

/* Why */
.why__item { padding: 28px 4px; border-top: 2px solid var(--line); transition: border-color 0.3s; }
.why__item:hover { border-color: var(--amber); }
.why__num { font-family: "Oswald"; font-size: 2.4rem; color: rgba(29,78,216,0.35); line-height: 1; }
.why__item h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.why__item p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.why__item ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.why__item li { color: var(--muted); font-size: 0.92rem; line-height: 1.4; padding-left: 22px; position: relative; }
.why__item li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; background: var(--amber); border-radius: 2px; transform: rotate(45deg); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 24px 28px; }
.step__n {
  position: absolute; top: -22px; left: 24px;
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: "Oswald"; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #ffffff;
  box-shadow: 0 8px 20px -8px rgba(30,58,138,0.8);
}
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Reviews */
.review { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.review__stars { display: flex; gap: 3px; color: var(--amber); margin-bottom: 14px; }
.review__stars svg { width: 18px; height: 18px; }
.review p { font-size: 1.05rem; color: var(--text); margin: 0 0 20px; }
.review footer { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 16px; }
.review footer strong { font-family: "Oswald"; letter-spacing: 0.03em; }
.review footer span { color: var(--steel); font-size: 0.85rem; }

/* Offer */
.offer { padding: 0; }
.offer__inner {
  margin: 0 auto;
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(30,58,138,0.3), transparent 60%),
    linear-gradient(135deg, #1d4ed8, #1e3a8a);
  color: #ffffff;
  border-radius: 0;
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.offer__inner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 22px);
}
.offer__title { font-size: clamp(1.8rem, 4vw, 3rem); position: relative; }
.offer__sub { color: #ffffff; font-weight: 500; margin: 12px 0 0; position: relative; }
.offer__action { position: relative; text-align: center; }
.offer__timer { margin-top: 12px; font-weight: 700; color: #ffffff; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__meta { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; }
.contact__meta li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; color: var(--text); }
.contact__meta span { font-size: 1.2rem; }
.contact__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.contact__badges span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); border: 1px solid rgba(29,78,216,0.4); padding: 6px 12px; border-radius: 999px; }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: "Oswald"; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1rem; color: var(--text); font-family: "Barlow"; font-size: 1rem; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(29,78,216,0.15); }
.field .error { display: block; color: #ff6b6b; font-size: 0.82rem; margin-top: 6px; min-height: 1px; }
.field input.invalid, .field textarea.invalid { border-color: #ff6b6b; }
.form__success { color: #36d399; font-weight: 600; text-align: center; margin: 14px 0 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; transition: border-color 0.3s; }
.faq__item[open] { border-color: rgba(29,78,216,0.5); }
.faq__item summary { cursor: pointer; padding: 18px 0; font-family: "Oswald"; text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.02rem; list-style: none; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--amber); font-size: 1.5rem; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--muted); margin: 0 0 18px; }

/* Footer */
.footer { background: #0b0d0f; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-top: 56px; padding-bottom: 40px; }
.footer__logo { height: 150px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--steel); max-width: 320px; margin: 0; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--text);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.footer__social a:hover { color: #fff; background: linear-gradient(135deg, var(--amber), var(--amber-2)); border-color: transparent; transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { font-size: 1rem; color: var(--amber); margin-bottom: 14px; }
.footer__cols a { display: block; color: var(--muted); padding: 5px 0; transition: color 0.2s; }
.footer__cols a:hover { color: var(--text); }
.footer__bar { border-top: 1px solid var(--line); padding: 18px 0; color: var(--steel); font-size: 0.85rem; text-align: center; }
.footer__credit { margin-top: 6px; font-size: 0.8rem; color: var(--muted); }
.footer__credit a { color: var(--amber); }

/* Back to top */
.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #ffffff;
  font-size: 1.3rem; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(20px); pointer-events: none; transition: 0.3s var(--ease);
}
.totop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Gallery carousel */
.carousel { position: relative; }
.carousel__viewport {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 22px;
  scrollbar-width: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 clamp(260px, 72vw, 420px);
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.carousel__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.carousel__slide:hover img { transform: scale(1.06); }
.carousel__btn {
  position: absolute; top: calc(50% - 22px); transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff;
  border: 0; cursor: pointer; display: grid; place-items: center;
  font-size: 1.8rem; line-height: 1; font-weight: 700;
  box-shadow: var(--shadow); z-index: 5;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.carousel__btn:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 16px 40px -12px rgba(30, 58, 138, 0.85); }
.carousel__btn--prev { left: 6px; }
.carousel__btn--next { right: 6px; }
.carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 4px; }
.carousel__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); border: 0; cursor: pointer; padding: 0;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.carousel__dot.is-active { background: var(--amber); width: 28px; border-radius: 999px; }

/* Map */
.map { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map__frame { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(0.15); }
.map__gps {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff;
  padding: 0.72rem 1.15rem; border-radius: 10px;
  font-family: "Oswald", sans-serif; text-transform: uppercase; font-weight: 600;
  letter-spacing: 0.04em; font-size: 0.9rem; box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.map__gps:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(30, 58, 138, 0.85); }
.map__gps svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 9, 10, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw; max-height: 88vh; object-fit: contain;
  border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9);
  transform: scale(0.96); transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 2rem; line-height: 1;
  display: grid; place-items: center; transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff;
  font-size: 2rem; line-height: 1; font-weight: 700;
  display: grid; place-items: center; box-shadow: var(--shadow); transition: transform 0.2s var(--ease);
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.carousel__slide { cursor: zoom-in; }

/* Catalog grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.cat-grid figure { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); cursor: zoom-in; }
.cat-grid img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.cat-grid figure:hover img { transform: scale(1.06); }
@media (max-width: 560px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .cat-grid img { height: 150px; } }

/* WhatsApp floating button */
.whatsapp {
  position: fixed; left: 22px; bottom: 22px; z-index: 45;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 12px 18px 12px 14px; border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.7), 0 0 20px -2px rgba(37, 211, 102, 0.5);
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 0.9rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.85), 0 0 28px -2px rgba(37, 211, 102, 0.55); }
.whatsapp__label { line-height: 1; }
@media (max-width: 720px) {
  .whatsapp__label { display: none; }
  .whatsapp { padding: 13px; left: 16px; bottom: 16px; }
}

/* Page CTA band (standalone pages) */
.page-cta { text-align: center; padding: 56px 0 8px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header__inner { height: 84px; }
  .brand__logo { height: 46px; }
  .burger { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    max-height: calc(100vh - 84px); overflow-y: auto;
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 12px; text-align: center; }
  .topbar__inner { justify-content: center; flex-wrap: wrap; gap: 6px 16px; }
  .topbar__tag { font-size: 0.8rem; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header__inner { height: 76px; }
  .brand__logo { height: 35px; }
  .nav { max-height: calc(100vh - 76px); }
  .section { padding: 64px 0; }
  .grid--3, .grid--4, .steps, .footer__cols { grid-template-columns: 1fr; }
  .hero__strip-inner { font-size: 0.82rem; gap: 10px 22px; }
  .offer__inner { padding: 40px 26px; flex-direction: column; align-items: flex-start; }
  .map__frame { height: 320px; }
  .map__gps { font-size: 0.82rem; padding: 0.6rem 0.9rem; }
  .trust { gap: 20px; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Chatbot FAQ ---------- */
.chat-toggle {
  position: fixed; left: 22px; bottom: 92px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; border: none;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #fff; box-shadow: 0 10px 30px rgba(30, 58, 138, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.chat-toggle:hover { transform: translateY(-3px) scale(1.04); }
.chat-toggle svg { width: 28px; height: 28px; }
.chat-toggle__badge {
  position: absolute; top: -2px; right: -2px;
  background: #fff; color: var(--amber-2); font: 700 11px/1 "Oswald", sans-serif;
  border-radius: 999px; padding: 3px 6px; border: 2px solid var(--amber-2);
}
.chat-panel {
  position: fixed; left: 22px; bottom: 162px; z-index: 56;
  width: min(360px, calc(100vw - 28px)); height: min(520px, calc(100vh - 140px));
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(12px) scale(0.98); pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.chat-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.chat-panel__header {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.16), rgba(30, 58, 138, 0.10));
  border-bottom: 1px solid var(--line);
}
.chat-panel__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  display: grid; place-items: center; color: #fff;
}
.chat-panel__avatar svg { width: 20px; height: 20px; }
.chat-panel__title { font-family: "Oswald"; font-weight: 600; line-height: 1; }
.chat-panel__sub { font-size: 0.72rem; color: var(--steel); }
.chat-panel__close { margin-left: auto; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; border-radius: 8px; }
.chat-panel__close:hover { background: var(--surface-2); }
.chat-panel__close svg { width: 20px; height: 20px; display: block; }
.chat-panel__body { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; }
.chat-msg__bubble { padding: 10px 13px; border-radius: 14px; font-size: 0.9rem; line-height: 1.45; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.bot .chat-msg__bubble { background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.chat-msg.user { align-self: flex-end; }
.chat-msg.user .chat-msg__bubble { background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff; border-bottom-right-radius: 4px; }
  .chat-msg__bubble a { color: var(--amber); font-weight: 600; text-decoration: underline; }
  .chat-msg.user .chat-msg__bubble a { color: #fff; }
  .chat-msg__bubble p { margin: 0 0 6px; }
  .chat-msg__bubble p:last-child { margin-bottom: 0; }
  .chat-bullets { margin: 6px 0 2px; padding-left: 18px; display: flex; flex-direction: column; gap: 5px; list-style: disc; }
  .chat-bullets li { line-height: 1.45; }
  .chat-booking { display: block; max-width: 270px; }
  .chat-booking__title { font-weight: 600; margin-bottom: 8px; }
  .chat-booking__form { display: flex; flex-direction: column; gap: 7px; }
  .chat-booking__form input, .chat-booking__form textarea {
    background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
    padding: 8px 10px; color: var(--text); font-size: 0.85rem; font-family: inherit; width: 100%; box-sizing: border-box; resize: none;
  }
  .chat-booking__form input:focus, .chat-booking__form textarea:focus { outline: none; border-color: var(--cyan); }
  .chat-booking__send {
    background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff; border: none;
    border-radius: 9px; padding: 9px 12px; font-weight: 600; cursor: pointer; font-family: inherit; font-size: 0.88rem;
  }
  .chat-booking__send:hover { filter: brightness(1.06); }
  .chat-quick { display: flex; gap: 8px; margin-top: 9px; flex-wrap: wrap; }
  .chat-quick .chat-chip { margin: 0; }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 10px; }
.chat-chip {
  border: 1px solid var(--line); background: var(--surface-2); color: var(--text);
  border-radius: 999px; padding: 7px 12px; font-size: 0.8rem; cursor: pointer;
  font-family: "Oswald"; letter-spacing: 0.02em; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.chat-chip:hover { border-color: var(--amber); transform: translateY(-1px); }
.chat-input-row { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: var(--surface); }
.chat-input { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; color: var(--text); font-size: 0.9rem; }
.chat-input:focus { outline: none; border-color: var(--amber); }
.chat-send { background: linear-gradient(135deg, var(--amber), var(--amber-2)); border: none; color: #fff; border-radius: 10px; width: 44px; display: grid; place-items: center; cursor: pointer; flex: none; }
  .chat-send svg { width: 20px; height: 20px; }
  .chat-typing { display: inline-flex; gap: 4px; align-items: center; }
  .chat-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--steel); display: inline-block; animation: chatBlink 1.2s infinite ease-in-out; }
  .chat-typing__label { font-size: 0.8rem; color: var(--steel); margin-left: 7px; }
  .chat-typing i:nth-child(2) { animation-delay: .2s; }
  .chat-typing i:nth-child(3) { animation-delay: .4s; }
  @keyframes chatBlink { 0%, 60%, 100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
  .chat-tooltip {
    position: fixed; left: 90px; bottom: 100px; z-index: 54;
    max-width: 250px; display: flex; align-items: flex-start; gap: 8px;
    background: var(--surface); color: var(--text);
    border: 1px solid var(--line); border-radius: 14px;
    padding: 10px 12px; font-size: 0.85rem; line-height: 1.4;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    animation: tipIn 0.4s var(--ease);
  }
  .chat-tooltip::before {
    content: ""; position: absolute; left: -7px; top: 20px;
    width: 14px; height: 14px; background: var(--surface);
    border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
    transform: rotate(45deg);
  }
  .chat-tooltip__text { flex: 1; }
  .chat-tooltip__close { background: none; border: none; color: var(--steel); font-size: 18px; line-height: 1; cursor: pointer; padding: 0 2px; }
  .chat-tooltip__close:hover { color: var(--text); }
  @keyframes tipIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .chat-toggle, .chat-panel { transition: none; } }
@media (max-width: 720px) {
  .chat-toggle { left: 16px; bottom: 78px; }
  .chat-tooltip { left: 72px; bottom: 84px; max-width: 220px; }
  .chat-tooltip::before { top: 16px; }
  .chat-panel { right: 14px; left: 14px; bottom: 150px; width: auto; height: min(60vh, 460px); }
}

/* ---------- Wow: hero motion + gear ---------- */
.hero__bg { z-index: 0; animation: heroZoom 26s ease-in-out infinite alternate; will-change: transform; transform-origin: center; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.14); } }
.hero__inner { position: relative; z-index: 2; }
.hero__gear {
  position: absolute; top: 24px; right: -70px;
  width: clamp(220px, 34vw, 400px); height: clamp(220px, 34vw, 400px);
  color: var(--amber); opacity: 0.12; z-index: 1;
  animation: gearSpin 46s linear infinite; pointer-events: none;
}
.hero__particles {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes gearSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
  .hero__gear { animation: none; }
}

/* Google reviews badge */
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; color: var(--text);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.google-badge:hover { border-color: var(--amber); transform: translateY(-2px); }
.google-badge .g-logo { width: 22px; height: 22px; flex: none; }
.google-badge span { font-weight: 600; font-size: 0.9rem; }
.google-badge .arrow { margin-left: 2px; opacity: 0.55; }

/* Trust seals */
.seals { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.seal { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 20px; }
.seal__icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: var(--amber);
  background: linear-gradient(135deg, rgba(29,78,216,0.18), rgba(30,58,138,0.10));
  border: 1px solid rgba(29, 78, 216, 0.35);
}
.seal__icon svg { width: 24px; height: 24px; }
.seal__txt strong { display: block; font-family: "Oswald"; letter-spacing: 0.02em; }
.seal__txt span { color: var(--steel); font-size: 0.82rem; }

/* Mobile sticky CTA bar */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(15, 17, 19, 0.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .mobile-cta__btn {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: 10px 4px; border-radius: 10px;
    font-family: "Oswald", sans-serif; text-transform: uppercase; font-weight: 600;
    font-size: 0.72rem; letter-spacing: 0.03em; color: #fff;
  }
  .mobile-cta__call { background: linear-gradient(135deg, var(--cyan), var(--cyan-2)); box-shadow: 0 8px 24px -6px rgba(34, 211, 238, 0.55); }
  .mobile-cta__wa { background: #25d366; }
  .mobile-cta__book { background: var(--surface-2); border: 1px solid var(--line); }
  .mobile-cta__btn svg { width: 20px; height: 20px; }
  .whatsapp { display: none; }
  .totop { display: none; }
  body { padding-bottom: 66px; }
  .hero__gear { width: 190px; height: 190px; right: -50px; top: 8px; }
}

/* ---------- Newsletter popup ---------- */
.nl-overlay {
  position: fixed; inset: 0; z-index: 80; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(8, 9, 10, 0.72); backdrop-filter: blur(3px);
}
.nl-overlay.is-open { display: flex; }
.nl-confetti { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

.nl-card {
  position: relative; width: min(440px, 100%);
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 26px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(29, 78, 216, 0.18);
  animation: nlPop 0.7s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  overflow: hidden;
}
.nl-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--ang), var(--amber), #a5f3fc, var(--amber-2), var(--amber));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; animation: spinBorder 4s linear infinite;
}
@keyframes nlPop {
  0% { opacity: 0; transform: translateY(28px) scale(0.82); }
  55% { opacity: 1; transform: translateY(0) scale(1.05); }
  75% { transform: scale(0.98); }
  100% { transform: none; }
}
@keyframes spinBorder { to { --ang: 360deg; } }
.nl-card__close {
  position: absolute; top: 12px; right: 12px; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 6px; border-radius: 8px;
}
.nl-card__close:hover { background: var(--surface-2); }
.nl-card__close svg { width: 20px; height: 20px; display: block; }
.nl-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, var(--amber), var(--amber-2)); margin-bottom: 14px;
}
.nl-card__icon svg { width: 26px; height: 26px; }
.nl-card h3 { font-family: "Oswald"; font-size: 1.5rem; line-height: 1.1; margin-bottom: 8px; }
.nl-card p { color: var(--steel); font-size: 0.92rem; margin-bottom: 16px; }
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-form__row { display: flex; gap: 8px; }
.nl-input { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 0.95rem; min-width: 0; }
.nl-input:focus { outline: none; border-color: var(--amber); }
.nl-input.invalid { border-color: #ff5c5c; }
.nl-submit { background: linear-gradient(135deg, var(--amber), var(--amber-2)); border: none; color: #fff; border-radius: 10px; padding: 12px 18px; font-family: "Oswald"; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; cursor: pointer; white-space: nowrap; }
.nl-note { font-size: 0.74rem; color: var(--steel); margin-top: 10px; }
.nl-note a { color: var(--amber); }
.nl-success { text-align: center; padding: 8px 0; }
.nl-success__icon { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff; display: grid; place-items: center; margin: 0 auto 12px; }
.nl-success h3 { margin-bottom: 8px; }
.nl-success p { margin-bottom: 0; }
.footer__sub {
  position: relative; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #fff;
  border: none; border-radius: 999px; padding: 8px 16px;
  font-family: "Oswald"; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.78rem;
  box-shadow: 0 0 16px rgba(29, 78, 216, 0.5);
}
.footer__sub::before {
  content: ""; position: absolute; inset: -2px; border-radius: 999px; padding: 2px;
  background: conic-gradient(from var(--ang), var(--amber), #ffffff, var(--amber-2), var(--amber));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  filter: blur(0.6px);
  pointer-events: none; animation: spinBorder 3s linear infinite;
}
.footer__sub svg { width: 16px; height: 16px; position: relative; }

/* Transparency callout (video por WhatsApp) */
.transparency {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; padding: 18px 20px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(30, 58, 138, 0.06));
  border: 1px solid rgba(29, 78, 216, 0.35); border-radius: 14px;
}
.transparency__icon {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
}
.transparency__icon svg { width: 24px; height: 24px; }
.transparency__txt strong { font-family: "Oswald"; display: block; font-size: 1.05rem; }
.transparency__txt span { color: var(--steel); font-size: 0.9rem; }
.transparency__txt a { color: var(--amber); font-weight: 600; }
@media (max-width: 560px) { .transparency { flex-direction: column; text-align: center; align-items: center; } }
@media (prefers-reduced-motion: reduce) {
  .nl-card { animation: none; }
  .nl-card::before, .footer__sub::before { animation: none; }
}
