/* Psicología Holística — styles */
:root {
  --petroleo: #073b3f;
  --teal: #0f7c80;
  --teal-dark: #095b60;
  --celeste: #d9f2f5;
  --celeste-2: #eefbfc;
  --verde: #163d2e;
  --white: #ffffff;
  --text: #1a2e2f;
  --text-muted: #4a6366;
  --border: rgba(7, 59, 63, 0.12);
  --shadow-sm: 0 4px 20px rgba(7, 59, 63, 0.08);
  --shadow-md: 0 12px 40px rgba(7, 59, 63, 0.12);
  --shadow-lg: 0 24px 60px rgba(7, 59, 63, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--celeste-2);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--teal);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--celeste-2);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__ring {
  width: 52px;
  height: 52px;
  border: 3px solid var(--celeste);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Layout */
.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--white) 0%, var(--celeste-2) 100%);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--petroleo);
  margin: 0 0 1rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 2.5rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.header.is-scrolled {
  background: rgba(238, 251, 252, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--petroleo);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.header__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(15, 124, 128, 0.25));
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--petroleo);
  position: relative;
}

.header__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.header__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 124, 128, 0.28);
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.header__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 124, 128, 0.34);
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--petroleo);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.header.is-open .header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.is-open .header__toggle span:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 15% 10%, rgba(217, 242, 245, 0.95) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(15, 124, 128, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, var(--celeste-2) 0%, var(--white) 42%, var(--celeste) 100%);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(15, 124, 128, 0.08) 0%, transparent 38%),
    radial-gradient(circle at 12% 78%, rgba(22, 61, 46, 0.06) 0%, transparent 34%);
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: blobFloat 14s ease-in-out infinite;
}

.hero__blob--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(15, 124, 128, 0.35), transparent 70%);
}

.hero__blob--2 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(22, 61, 46, 0.2), transparent 70%);
  animation-delay: -5s;
}

.hero__blob--3 {
  width: 260px;
  height: 260px;
  top: 40%;
  left: 45%;
  background: radial-gradient(circle, rgba(217, 242, 245, 0.8), transparent 70%);
  animation-delay: -9s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.05); }
  66% { transform: translate(-16px, 14px) scale(0.96); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5.6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--petroleo);
  margin: 0 0 0.85rem;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: var(--verde);
  margin: 0 0 1.1rem;
}

.hero__phrase {
  display: inline-flex;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  padding: 0.65rem 1.15rem;
  background: var(--petroleo);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(7, 59, 63, 0.2);
  margin-bottom: 1.15rem;
  animation: phrasePulse 4s ease-in-out infinite;
}

@keyframes phrasePulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(7, 59, 63, 0.2); transform: translateY(0); }
  50% { box-shadow: 0 18px 36px rgba(15, 124, 128, 0.28); transform: translateY(-2px); }
}

.hero__copy {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2rem;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--petroleo));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(15, 124, 128, 0.3);
}

.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 124, 128, 0.36);
}

.btn--outline {
  background: transparent;
  color: var(--petroleo);
  border: 2px solid rgba(7, 59, 63, 0.2);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--petroleo);
  border: 1px solid rgba(15, 124, 128, 0.22);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--white);
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero__banners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-banner {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(7, 59, 63, 0.14);
  animation: bannerFloat 5s ease-in-out infinite;
}

.hero-banner--accent {
  background: linear-gradient(135deg, var(--petroleo), var(--verde));
  color: var(--white);
  top: 4%;
  left: -2%;
  animation-delay: 0s;
}

.hero-banner--teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  top: 18%;
  right: -4%;
  animation-delay: -1.2s;
}

.hero-banner--soft {
  background: var(--white);
  color: var(--petroleo);
  border: 1px solid rgba(15, 124, 128, 0.18);
  bottom: 8%;
  left: 6%;
  animation-delay: -2.4s;
}

@keyframes bannerFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-logo-card {
  position: relative;
  width: min(460px, 88vw);
  animation: logoCardFloat 6s ease-in-out infinite;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.hero-logo-card:hover {
  transform: translateY(-12px) scale(1.02);
  animation-play-state: paused;
}

.hero-logo-card__glow {
  position: absolute;
  inset: 8%;
  border-radius: 42px;
  background: radial-gradient(circle, rgba(15, 124, 128, 0.28) 0%, transparent 72%);
  filter: blur(18px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-logo-card__frame {
  position: relative;
  padding: 1.65rem;
  border-radius: 42px;
  background: linear-gradient(145deg, #ffffff 0%, var(--celeste) 48%, var(--celeste-2) 100%);
  border: 1px solid rgba(15, 124, 128, 0.18);
  box-shadow:
    0 28px 60px rgba(7, 59, 63, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-logo-card__frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  border: 1px solid rgba(15, 124, 128, 0.16);
  pointer-events: none;
}

.hero-logo-card__frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 44px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(15, 124, 128, 0.35), transparent 40%, rgba(7, 59, 63, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.hero-logo-card:hover .hero-logo-card__frame::after {
  opacity: 1;
}

.hero-logo-card__inner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  padding: 0.75rem;
}

.hero-logo-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
}

@keyframes logoCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* Intro */
.intro {
  text-align: center;
}

.intro .section__subtitle {
  margin-inline: auto;
}

.intro__text {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--teal-dark);
  max-width: 40ch;
  margin: 0 auto;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 124, 128, 0.25);
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Progress */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.progress-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.55rem;
  gap: 1rem;
}

.progress-item__label {
  font-weight: 600;
  color: var(--petroleo);
  font-size: 0.95rem;
}

.progress-item__pct {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
}

.progress-item__track {
  height: 10px;
  background: var(--celeste);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.progress-item__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), #14a3a8);
  border-radius: 999px;
  transition: width 1.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.progress-item__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  animation: shimmer 2.2s ease-in-out infinite;
  transform: translateX(-100%);
}

.progress-item.is-animated .progress-item__bar::after {
  animation: shimmer 2.2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Therapy cards */
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}

.therapy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.therapy-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(15, 124, 128, 0), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.therapy-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 124, 128, 0.3);
}

.therapy-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--teal), var(--celeste), var(--teal-dark));
}

.therapy-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-2));
  color: var(--teal-dark);
  margin-bottom: 1rem;
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s;
}

.therapy-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.therapy-card:hover .therapy-card__icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
}

.therapy-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--petroleo);
  margin: 0 0 0.75rem;
}

.therapy-card__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.therapy-card__bullets li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.therapy-card__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Treatments */
.treatments-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--verde), var(--petroleo));
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.treatments-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.treatments-card__subtitle {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.treatments-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.treatments-card__text {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.92;
  margin: 0;
  max-width: 46ch;
}

/* Promotions */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.promo-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--petroleo);
  margin: 0 0 0.75rem;
}

.promo-card__text {
  color: var(--text-muted);
  flex: 1;
  margin: 0 0 1.25rem;
}

.promo-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
}

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 124, 128, 0.3);
}

.location-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--celeste);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.location-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--petroleo);
  margin: 0 0 0.75rem;
}

.location-card__address {
  color: var(--text);
  margin: 0 0 0.5rem;
}

.location-card__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 1.25rem;
}

.location-card__map {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

.location-card__map:hover {
  color: var(--teal-dark);
}

/* Booking */
.booking {
  background: linear-gradient(180deg, var(--white) 0%, var(--celeste-2) 100%);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.booking__info {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.booking__info-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.booking__info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.booking__info-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--celeste);
  color: var(--teal-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--petroleo);
}

.form-field label span.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--celeste-2);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 124, 128, 0.12);
}

.form-field input:disabled,
.form-field select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-field--hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.booking-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.booking-form__submit.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
}

.form-message.is-visible {
  display: block;
}

.form-message--success {
  background: rgba(22, 61, 46, 0.1);
  color: var(--verde);
  border: 1px solid rgba(22, 61, 46, 0.2);
}

.form-message--error {
  background: rgba(180, 40, 40, 0.08);
  color: #a32020;
  border: 1px solid rgba(180, 40, 40, 0.2);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-card__label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-card__value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Map — full width before footer */
.map-section {
  background: var(--petroleo);
  color: var(--white);
  padding: 0 0 0;
}

.map-section__head {
  padding: 3.5rem 0 1.75rem;
  text-align: center;
}

.map-section .section__eyebrow {
  color: rgba(217, 242, 245, 0.85);
}

.map-section .section__title {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.map-section .section__subtitle {
  color: rgba(217, 242, 245, 0.78);
  margin-bottom: 1.5rem;
}

.map-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.map-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 242, 245, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.map-tab:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(217, 242, 245, 0.4);
}

.map-tab.is-active {
  background: linear-gradient(135deg, var(--teal), rgba(217, 242, 245, 0.2));
  border-color: rgba(217, 242, 245, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.map-tab__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 700;
}

.map-section__frame {
  position: relative;
  width: 100%;
  height: clamp(320px, 52vh, 520px);
  background: #0a2a2d;
}

.map-section__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.map-section__overlay {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1rem;
  z-index: 2;
}

.map-section__link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--petroleo);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease);
}

.map-section__link:hover {
  color: var(--teal-dark);
  transform: translateY(-2px);
}
  color: var(--petroleo);
}

.contact-card a.contact-card__value:hover {
  color: var(--teal);
}

/* Footer */
.footer {
  background: var(--petroleo);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer__inner {
  text-align: center;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.footer__name {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--celeste);
  margin: 0 0 1.5rem;
}

.footer__copy {
  font-size: 0.82rem;
  opacity: 0.6;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    min-height: 340px;
  }

  .hero-logo-card {
    width: min(380px, 82vw);
  }

  .hero-banner--accent { left: 0; top: 0; }
  .hero-banner--teal { right: 0; top: 12%; }
  .hero-banner--soft { left: 4%; bottom: 4%; }

  .map-section__frame {
    height: clamp(280px, 45vh, 420px);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .booking__grid {
    grid-template-columns: 1fr;
  }

  .booking__info {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    background: rgba(238, 251, 252, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    gap: 2rem;
  }

  .header.is-open .header__nav {
    transform: translateX(0);
  }

  .header__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }

  .header__links a {
    font-size: 1.1rem;
  }

  .header__cta {
    width: 100%;
    justify-content: center;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-logo-card,
  .hero-banner,
  .hero__blob,
  .hero__phrase,
  .treatments-card__badge,
  .progress-item__bar::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
