/* ===================================================
   MÍMATE ESTÉTICA · estilos
   Paleta: crema / nude / dorado / negro suave
=================================================== */

:root {
  --cream:        #FBF1EC;
  --cream-deep:   #F5E3DA;
  --pink-soft:    #F7E7E1;
  --gold:         #B89067;
  --gold-deep:    #9C7850;
  --ink:          #1E1A17;
  --ink-soft:     #5A524B;
  --white:        #FFFDFB;
  --line:         rgba(184, 144, 103, 0.25);

  --shadow-sm: 0 6px 24px rgba(120, 90, 60, 0.10);
  --shadow-md: 0 18px 50px rgba(120, 90, 60, 0.16);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Segoe UI", sans-serif;
  --script:"Pacifico", cursive;

  --radius: 22px;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== Botones ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 0.95em 2.1em;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--gold-deep); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: var(--white); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { background: #1ebe5a; }
.wa-icon { font-size: 1.15em; }

/* ===== Navbar ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 1.4rem 0;
}
.nav--scrolled {
  background: rgba(251, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(120,90,60,.08);
  padding: 0.7rem 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--script);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.nav__logo span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-left: 0.3em;
  color: var(--gold-deep);
}
/* Logo (imagen con respaldo de texto) */
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand__img {
  height: 50px;
  width: auto;
  display: block;
  transition: height .4s;
}
.nav--scrolled .brand__img { height: 40px; }
.brand__text { display: none; }
.brand--noimg .brand__img { display: none; }
.brand--noimg .brand__text { display: flex; }
.brand--footer .brand__img {
  height: 56px;
  margin-bottom: 0.6rem;
  filter: brightness(0) invert(1); /* trazo negro -> blanco sobre el pie oscuro */
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  transition: color .3s;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6em 1.5em;
  border-radius: 999px;
  transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--gold-deep); transform: translateY(-2px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: .35s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
  background: radial-gradient(120% 120% at 50% 0%, var(--pink-soft) 0%, var(--cream) 55%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: float 16s ease-in-out infinite;
}
.blob--1 { width: 420px; height: 420px; background: #EBC9B6; top: -8%; left: -6%; }
.blob--2 { width: 360px; height: 360px; background: #E7D4C2; bottom: -10%; right: -4%; animation-delay: -5s; }
.blob--3 { width: 280px; height: 280px; background: #F3D9CF; top: 40%; left: 55%; animation-delay: -9s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(30px,-30px) scale(1.08); }
}

.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__logo {
  width: min(320px, 70vw);
  height: auto;
  margin: 0 auto 1.6rem;
  opacity: 0;
  animation: rise .9s .05s forwards;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: rise .9s .1s forwards;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 1s .25s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  max-width: 540px;
  margin: 1.8rem auto 2.6rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 300;
  opacity: 0;
  animation: rise 1s .45s forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s .6s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%,100% { opacity: 0; transform: translateY(16px); }
}

/* ===== Secciones genéricas ===== */
section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 4vw, 3rem); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section-head__eyebrow--light { color: #E9CDB8; }
.section-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
}
.section-head__title--light { color: var(--white); }
.section-head__lead {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}
.section-head__lead--light { color: rgba(255,255,255,.78); }

/* ===== Valores ===== */
.values {
  background: var(--white);
  padding-top: clamp(4rem,8vw,6rem);
  padding-bottom: clamp(4rem,8vw,6rem);
}
.values__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value {
  text-align: center;
  padding: 2.5rem 1.8rem;
  border-radius: var(--radius);
  background: var(--cream);
  transition: transform .4s, box-shadow .4s;
}
.value:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.value p { color: var(--ink-soft); font-weight: 300; font-size: 0.98rem; }

/* ===== Tratamientos ===== */
.treatments { background: var(--cream); }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: var(--maxw);
  margin: 0 auto 3rem;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.7em 1.5em;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
  animation: cardIn .5s both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), #E9CDB8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s;
}
.card:hover::before { transform: scaleX(1); }

.card__cat {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
}
.card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.card__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: auto;
}
.card__price {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}
.card__price small { font-size: 0.85rem; font-weight: 500; }
.card__book {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  border: 1.5px solid var(--gold);
  padding: 0.55em 1.1em;
  border-radius: 999px;
  transition: all .3s;
}
.card__book:hover { background: var(--gold); color: var(--white); }

.treatments__cta {
  text-align: center;
  margin-top: 3.5rem;
}
.treatments__cta p {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

/* ===== Packs ===== */
.packs {
  background: linear-gradient(160deg, #2A2320 0%, #3A2F28 100%);
  position: relative;
}
.packs::after {
  content: "✦";
  position: absolute;
  font-size: 8rem;
  color: rgba(184,144,103,.08);
  right: 5%; top: 12%;
  pointer-events: none;
}
.packs__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
}
.pack-card {
  background: rgba(255,253,251,0.04);
  border: 1px solid rgba(233,205,184,.18);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  backdrop-filter: blur(4px);
  transition: transform .45s, border-color .45s, background .45s;
}
.pack-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(255,253,251,0.07);
}
.pack-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.pack-card__title {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.pack-card__desc {
  color: rgba(255,255,255,.72);
  font-weight: 300;
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}
.pack-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: gap .3s, color .3s;
}
.pack-card__link:hover { gap: .9em; color: #E9CDB8; }

/* ===== Sobre ===== */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-fallback {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: .1em;
}

/* ===== Resultados reales ===== */
.results { background: var(--white); }
.results__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.result {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}
.result img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.result:hover img { transform: scale(1.07); }
.result figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(30,26,23,.8), rgba(30,26,23,0));
}
.result figcaption span {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}
.result::after {
  content: "⤢";
  position: absolute;
  top: 0.8rem; right: 0.9rem;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,253,251,.85);
  color: var(--ink);
  border-radius: 50%;
  font-size: 1rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s;
}
.result:hover::after { opacity: 1; transform: scale(1); }
.results__note {
  text-align: center;
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
}
.results__note a { color: var(--gold-deep); text-decoration: underline; }

/* Visor (lightbox) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20,16,14,.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn .3s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage {
  margin: 0;
  max-width: min(900px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  object-fit: contain;
}
.lightbox__caption {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,253,251,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: background .25s, transform .25s;
}
.lightbox__close {
  top: 1.3rem; right: 1.5rem;
  width: 48px; height: 48px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__prev { left: 1.2rem; }
.lightbox__next { right: 1.2rem; }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
  box-shadow: var(--shadow-sm);
}
.gallery__item::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(184,144,103,.5);
  z-index: 0;
}
.gallery__item img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.6rem 1.3rem 1.1rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(to top, rgba(30,26,23,.78), rgba(30,26,23,0));
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .4s, transform .4s;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.about__text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0.6rem 0 1.3rem;
}
.about__text p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.1rem;
}
.about__text strong { color: var(--ink); font-weight: 600; }
.about__text .btn { margin-top: 1rem; }

/* ===== Contacto ===== */
.contact { background: var(--cream); }
.contact__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
.contact__side { display: flex; flex-direction: column; gap: 2.5rem; }
.contact__info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem;
  box-shadow: var(--shadow-sm);
}

/* ----- Formulario de cita ----- */
.booking {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem;
  box-shadow: var(--shadow-md);
}
.booking__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.1;
}
.booking__note {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.98rem;
  margin: 0.4rem 0 1.6rem;
}
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85em 1em;
  transition: border-color .3s, box-shadow .3s, background .3s;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(184,144,103,.12);
}
.field input.invalid {
  border-color: #d98a8a;
  box-shadow: 0 0 0 4px rgba(217,138,138,.12);
}
.booking--flash {
  animation: flash 1.2s ease;
}
@keyframes flash {
  0%, 100% { box-shadow: var(--shadow-md); }
  30%      { box-shadow: 0 0 0 4px rgba(184,144,103,.45), var(--shadow-md); }
}
.booking__submit { width: 100%; margin-top: 0.6rem; }
.booking__hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-top: 0.8rem;
}
.booking__success {
  margin-top: 1.4rem;
  padding: 1.6rem 1.4rem;
  border-radius: 16px;
  background: rgba(37, 211, 102, 0.10);
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  text-align: center;
  animation: rise .5s ease;
}
.booking__success-icon {
  width: 46px; height: 46px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking__success h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.booking__success p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.booking__success-note { margin-top: 0.6rem; font-size: 0.82rem; }
.booking__success-note a { color: var(--gold-deep); text-decoration: underline; }
.contact__item { margin-bottom: 1.6rem; }
.contact__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}
.contact__item p { font-size: 1.05rem; }
.contact__item a { transition: color .3s; }
.contact__item a:hover { color: var(--gold-deep); }
.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-sm);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact__map-placeholder {
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
  color: var(--gold-deep);
  text-align: center;
  font-weight: 300;
}
.contact__map-placeholder span { font-size: 2.6rem; }

/* ===== Footer ===== */
.footer {
  background: #2A2320;
  color: rgba(255,255,255,.7);
  padding: 4rem 1.5rem 2.5rem;
  text-align: center;
}
.footer__inner { max-width: 700px; margin: 0 auto; }
.footer__logo { color: var(--white); align-items: center; margin: 0 auto 0.8rem; }
.footer__logo span { color: var(--gold); }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: #E9CDB8;
  margin-bottom: 1.8rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.footer__links a {
  font-size: 0.9rem;
  transition: color .3s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: 0.82rem; opacity: .7; }

/* ===== WhatsApp flotante ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .35s;
  animation: pulse 2.4s infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .values__grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem 2.4rem;
    background: var(--cream);
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__burger { display: flex; z-index: 101; }
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
}
