/* =========================================================
   AUREA — Clínica dental · Demo Dobblas
   Normal bien hecho. Navy + crema + coral.
   Referencias: Ferrus & Bratos, León y Soler, DentalCity Málaga,
   Fernando Soria.
   ========================================================= */

:root {
  /* Palette */
  --navy: #0E3C53;
  --navy-2: #0A2D3F;
  --navy-3: #1B5772;
  --bg: #FBFAF7;
  --bg-2: #F3EFE9;
  --bg-3: #EAE3D6;
  --text: #1A2733;
  --text-2: #475569;
  --mute: #6B7785;
  --line: rgba(14, 60, 83, 0.12);
  --line-strong: rgba(14, 60, 83, 0.22);
  --accent: #D78A4F;
  --accent-2: #B66E33;
  --coral: #E66B5C;
  --coral-2: #C7503F;
  --white: #FFFFFF;
  --green: #25D366;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container-max: 1240px;
  --gutter: clamp(1.2rem, 4vw, 2.5rem);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --section-py: clamp(4rem, 8vw, 7.5rem);
  --ease: cubic-bezier(0.2, 0.65, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--coral); color: var(--white); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* TYPOGRAPHY */
.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 1rem;
}
.section-title em { color: var(--accent); font-style: normal; }
.section-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--mute);
  margin: 0;
  max-width: 60ch;
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(230, 107, 92, 0.55);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(215, 138, 79, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-lg { padding: 1.05rem 1.7rem; font-size: 0.98rem; }
.btn-block { width: 100%; }
.wa-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* TOP BAR */
.top-bar {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s var(--ease);
}
.top-link:hover { color: var(--accent); }
.top-link--mute { color: rgba(255, 255, 255, 0.55); cursor: default; }
.top-link .icon { font-size: 0.95rem; }
.top-hours { color: rgba(255, 255, 255, 0.7); }
.demo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(215, 138, 79, 0.45);
  border-radius: 4px;
  font-weight: 700;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
}
.logo-mark::before {
  width: 14px; height: 14px;
  border-radius: 50%;
  top: 6px; left: 6px;
  opacity: 0.85;
}
.logo-mark::after {
  width: 10px; height: 10px;
  border-radius: 50%;
  bottom: 7px; right: 8px;
  background: var(--coral);
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-text strong {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a {
  color: var(--text-2);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }

/* HERO */
.hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.9rem;
  background: rgba(215, 138, 79, 0.12);
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}
.hero-title .accent {
  color: var(--coral);
  font-weight: 700;
  position: relative;
}
.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 6px;
  background: var(--accent);
  opacity: 0.25;
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-2);
  margin: 1.5rem 0 0;
  max-width: 50ch;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-trust { margin-top: 2rem; }
.trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-2);
}
.stars { color: #F2B500; letter-spacing: 1px; font-size: 1.05rem; }
.trust-stars strong { color: var(--navy); font-weight: 700; }
.trust-muted { color: var(--mute); }

/* Hero figure */
.hero-figure {
  position: relative;
  aspect-ratio: 6 / 7;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 60, 83, 0.45);
}
.hero-photo svg { width: 100%; height: 100%; display: block; }
.hero-badge {
  position: absolute;
  left: -1.5rem;
  bottom: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 20px 40px -20px rgba(14, 60, 83, 0.35);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}
.badge-text {
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.3;
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin-top: -2.5rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px -25px rgba(14, 60, 83, 0.2);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.3rem 0.5rem;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.trust-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--mute);
  margin-top: 0.15rem;
}

/* SECTION HEAD */
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center {
  text-align: center;
}
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* TRATAMIENTOS */
.treatments { padding: var(--section-py) 0; background: var(--bg); }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.6rem);
}
.treatment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -25px rgba(14, 60, 83, 0.25);
  border-color: var(--accent);
}
.treatment-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.treatment-icon svg { width: 32px; height: 32px; }
.treatment-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
}
.treatment-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.treatment-foot {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.treatment-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}
.treatment-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.25s var(--ease);
}
.treatment-link:hover { color: var(--coral); }

/* POR QUÉ */
.why {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.why-text p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0 0 1.8rem;
  max-width: 38ch;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.why-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.why-list h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.why-list p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--mute);
  line-height: 1.55;
}

/* FEATURE SPLIT (Diseño de sonrisa) */
.feature-split { padding: var(--section-py) 0; background: var(--bg); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-visual { position: relative; }
.feature-art {
  aspect-ratio: 6 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(215, 138, 79, 0.4);
}
.feature-art svg { width: 100%; height: 100%; }
.feature-text .section-title { margin-top: 0; }
.feature-text .section-title em { color: var(--coral); font-style: normal; }
.feature-text p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 1.4rem;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-bullets li {
  font-size: 0.98rem;
  color: var(--text-2);
}

/* EQUIPO */
.team { padding: var(--section-py) 0; background: var(--bg-2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.doctor {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.doctor:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -25px rgba(14, 60, 83, 0.25);
}
.doctor-photo { aspect-ratio: 4 / 5; overflow: hidden; }
.doctor-photo svg { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.doctor:hover .doctor-photo svg { transform: scale(1.03); }
.doctor-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.3rem 1.5rem 0.2rem;
  letter-spacing: -0.012em;
}
.doctor-role {
  margin: 0 1.5rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.doctor-cred {
  margin: 0 1.5rem 1.4rem;
  font-size: 0.82rem;
  color: var(--mute);
  line-height: 1.5;
}
.demo-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mute);
  margin: 2rem 0 0;
  font-style: italic;
}

/* TESTIMONIOS */
.testimonials { padding: var(--section-py) 0; background: var(--bg); }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.2rem;
  background: var(--bg-2);
  border-radius: 99px;
}
.stars-big { color: #F2B500; font-size: 1.25rem; letter-spacing: 2px; }
.rating-num { font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.rating-source { color: var(--mute); font-size: 0.92rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial .stars { font-size: 1rem; }
.testimonial p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial strong { color: var(--navy); font-weight: 700; font-size: 0.95rem; }
.testimonial span { color: var(--mute); font-size: 0.82rem; }

/* RESULTS */
.results { padding: var(--section-py) 0; background: var(--bg-2); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.case { margin: 0; }
.case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.case-img {
  aspect-ratio: 1.2 / 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.case-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(14, 45, 63, 0.75);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.case-a { background: linear-gradient(135deg, #C19571, #6B4E2A); }
.case-b { background: linear-gradient(135deg, #E9DBC4, #8B6F47); }
.case-c { background: linear-gradient(135deg, #3A2316, #1A140E); }
.case-d { background: linear-gradient(135deg, #C66B4A, #6B3B26); }
.case-e { background: linear-gradient(135deg, #D8B98C, #8E8270); }
.case-f { background: linear-gradient(135deg, #F4F1EC, #C19571); }
.case-g { background: linear-gradient(135deg, #6B5D4E, #1A140E); }
.case-h { background: linear-gradient(135deg, #C19571, #6B4E2A); }
.case figcaption {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

/* FINANCING BANNER */
.financing {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.financing-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2.5rem;
  align-items: center;
}
.financing .section-title { color: var(--white); }
.financing .eyebrow { color: var(--accent); }
.financing-text p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 55ch;
}

/* PRICING */
.pricing { padding: var(--section-py) 0; background: var(--bg); }
.pricing-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--line);
  align-items: baseline;
  font-size: 0.95rem;
}
.pricing-row:first-child { border-top: 0; }
.pricing-head {
  background: var(--bg-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.pricing-name { font-weight: 700; color: var(--navy); }
.pricing-from { font-weight: 700; color: var(--accent); }
.pricing-dur { color: var(--mute); }

/* TECH */
.tech { padding: var(--section-py) 0; background: var(--bg-2); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.tech-card {
  position: relative;
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tech-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  border-radius: var(--radius) var(--radius) 0 0;
}
.tech-1::before { background: linear-gradient(135deg, var(--navy-3), var(--navy-2)); }
.tech-2::before { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.tech-3::before { background: linear-gradient(135deg, #4A5D6E, #2A3A48); }
.tech-4::before { background: linear-gradient(135deg, var(--coral), var(--coral-2)); }
.tech-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.4rem;
  position: relative;
  z-index: 1;
}
.tech-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* FAQ */
.faq { padding: var(--section-py) 0; background: var(--bg); }
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--coral); }
.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-toggle {
  background: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-a > p {
  overflow: hidden;
  margin: 0;
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 65ch;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a > p { padding-bottom: 1.4rem; }

/* CONTACT */
.contact {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-lead {
  margin: 1.2rem 0 1.8rem;
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 50ch;
}
.contact-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
}
.contact-list a { color: var(--coral); font-weight: 600; }
.contact-list a:hover { color: var(--coral-2); }
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 30px 60px -30px rgba(14, 60, 83, 0.2);
}
.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.4rem;
  letter-spacing: -0.015em;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(230, 107, 92, 0.15);
}
.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.82rem;
  color: var(--mute);
  margin: 0.5rem 0 1.2rem;
  line-height: 1.5;
}
.checkbox input { margin-top: 3px; }
.checkbox a { color: var(--coral); text-decoration: underline; }
.form-fine {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  color: var(--mute);
  text-align: center;
}
.form-success {
  margin: 1rem 0 0;
  padding: 1rem;
  background: rgba(37, 211, 102, 0.12);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

/* FOOTER */
.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo-text,
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
  max-width: 36ch;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.footer-license {
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 0.7rem !important;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.footer-col p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.demo-stamp strong { color: var(--accent); font-weight: 700; }
.footer-credit a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.25s var(--ease);
}
.footer-credit a:hover { color: var(--coral); }

/* WHATSAPP FLOATING */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  z-index: 100;
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --section-py: clamp(3rem, 8vw, 5rem); }
  .top-bar-left,
  .top-bar-right { gap: 0.8rem; font-size: 0.75rem; }
  .top-link--mute, .top-hours { display: none; }
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-figure { max-width: 480px; margin: 0 auto; }
  .trust-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: -1rem;
    padding: 1rem;
  }
  .trust-item:nth-child(2) { border-right: 0; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .team-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .financing-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-row {
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 0.88rem;
    padding: 1rem;
  }
  .pricing-row > span:nth-child(4) { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .treatment-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 0.8rem; }
  .trust-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .pricing-head { display: none; }
  .pricing-from { display: inline-block; }
  .pricing-from::before { content: "Desde · "; color: var(--mute); font-weight: 500; }
}
