/* ================================================================
   LORENZA ROJAS — NUTRICIONISTA
   css/style.css  |  Versión 1.2
   Paleta: Verde salvia + Crema cálido + Tierra oscura
   Tipografía: Cormorant Garamond (display) + DM Sans (cuerpo)
================================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --sage:        #8A9E7E;
  --sage-light:  #C4D4B8;
  --cream:       #F7F3EE;
  --cream-deep:  #EDE7DC;
  --bark:        #2C2416;
  --bark-mid:    #4A3D2A;
  --bark-soft:   #7A6A52;
  --white:       #FDFAF6;
  --accent:      #C17B4E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h:    72px;
  --container: 1140px;
  --gutter:   clamp(1.25rem, 5vw, 3rem);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--bark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
iframe { display: block; }
ul { list-style: none; }
a  { text-decoration: none; color: inherit; }

/* ── UTILIDADES ──────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.label--light { color: var(--sage-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bark);
}

.section-sub {
  font-size: 1rem;
  color: var(--bark-soft);
  max-width: 52ch;
  margin-top: .75rem;
}

/* ── BOTONES ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s, border-color .2s, color .2s;
  border: 2px solid #ffffff;
  white-space: nowrap;
  text-align: center;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* sage: #8A9E7E → 50% más oscuro: #455F3F */
.btn--primary  { background: var(--sage); color: var(--white); border-color: #ffffff; }
.btn--primary:hover { background: #455F3F; border-color: #ffffff; color: var(--white); }

/* bark: #2C2416 → 50% más oscuro: #16120B */
.btn--secondary { background: var(--bark); color: var(--white); border-color: #ffffff; }
.btn--secondary:hover { background: #16120B; border-color: #ffffff; color: var(--white); }

/* outline: fondo transparente → hover bark oscuro */
.btn--outline { background: transparent; color: var(--bark); border-color: #ffffff; }
.btn--outline:hover { background: #16120B; color: var(--white); border-color: #ffffff; }

.btn--large { padding: 1.1rem 2.75rem; font-size: 1rem; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  background: transparent;
  transition: background .5s var(--ease-out), backdrop-filter .5s, box-shadow .5s;
}

.nav.scrolled {
  background: rgba(232, 198, 130, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(44, 36, 22, .08);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--white);
  transition: color .4s;
  z-index: 10;
  position: relative;
}
.nav.scrolled .nav__logo { color: var(--bark); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
}

.nav__link {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
  transition: color .3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage-light);
  transition: width .35s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav.scrolled .nav__link { color: var(--bark-soft); }
.nav.scrolled .nav__link::after { background: var(--sage); }
.nav.scrolled .nav__link:hover  { color: var(--bark); }

.nav__cta {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .5rem 1.4rem;
  border: 2px solid #ffffff;
  color: var(--white);
  border-radius: 100px;
  transition: background .3s, color .3s, border-color .3s;
}
.nav__cta:hover { background: #16120B; color: var(--white); border-color: #ffffff; }
.nav.scrolled .nav__cta       { border-color: #ffffff; color: var(--bark); }
.nav.scrolled .nav__cta:hover { background: #16120B; color: var(--white); border-color: #ffffff; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .38s var(--ease-out), opacity .25s, background .4s;
}
.nav.scrolled .nav__hamburger span { background: var(--bark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Fade inferior del hero hacia el color de "Sobre mí" */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, rgba(232, 198, 130, 0) 0%, rgb(232, 198, 130) 100%);
  pointer-events: none;
  z-index: 3;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 4, .18) 0%,
    rgba(10, 8, 4, .08) 40%,
    rgba(10, 8, 4, .55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--white);
  padding-inline: var(--gutter);
  max-width: 820px;
  width: min(820px, 100%);
  margin-left: max(var(--gutter), calc((100% - var(--container)) / 2));
}

.hero__pain-words {
  position: relative;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.pain-word {
  position: absolute;
  left: 0;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: .4rem 1.1rem;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  white-space: nowrap;
  pointer-events: none;
  max-width: calc(100vw - var(--gutter) * 2);
  overflow: hidden;
  text-overflow: ellipsis;
}
.pain-word.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__headline em { font-style: italic; color: var(--white); }
.hero__headline strong { font-weight: 700; color: rgb(255, 157, 0); font-style: inherit; }

.hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, .80);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* #8A9E7E (sage) → hover oscuro: #455F3F */
.hero__btn {
  margin-inline: 0;
  background: #8A9E7E !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}
.hero__btn:hover {
  background: #455F3F !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line { display: none; }
.scroll-text { display: none; }
.scroll-icon {
  width: 32px; height: 32px;
  color: #ffffff;
  animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(10px); opacity: 1; }
}

/* ── SOBRE MÍ ────────────────────────────────────────────────── */
.about {
  background: rgb(232, 198, 130);
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
}
.about .container,
.services .container,
.cases .container { position: relative; z-index: 1; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__images { position: relative; height: 560px; }

.about__text { padding-block: 1rem; }

.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--bark);
}
.about__title em { font-style: italic; color: #ffffff; }

.about__hook {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 1rem;
  line-height: 1.65;
  border-left: 2px solid var(--bark-soft);
  padding-left: 1.25rem;
}
.about__desc { color: var(--bark-soft); margin-bottom: 1.5rem; font-size: .95rem; }

.about__credentials { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.about__credentials li { font-size: .875rem; color: var(--bark-mid); }

/* ── SERVICIOS ───────────────────────────────────────────────── */
.services {
  background: var(--cream-deep);
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
}
.services__header { margin-bottom: 3.5rem; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ── CARDS DE PLANES ─────────────────────────────────────────── */
.service-card {
  background: rgb(232, 198, 130);
  color: #1a1208;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 2.5px solid #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.service-card--featured {
  background: rgb(189, 67, 30);
  color: #ffffff;
  border-color: #ffffff;
}

.service-card::before { display: none; }

.service-card__tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.5);
  margin-bottom: -.5rem;
}
.service-card--featured .service-card__tag { color: #ffffff; }

.service-card__icon { font-size: 1.5rem; color: rgba(26, 18, 8, 0.35); }
.service-card--featured .service-card__icon { color: #ffffff; }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: #1a1208;
  line-height: 1.1;
  text-align: left;
}
.service-card--featured .service-card__title { color: #ffffff; }

.service-card__desc {
  font-size: .9rem;
  color: rgba(26, 18, 8, 0.68);
  line-height: 1.65;
  flex: 1;
  text-align: left;
}
.service-card--featured .service-card__desc { color: #ffffff; }

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  align-items: flex-start;
}
.service-card__features li {
  font-size: .85rem;
  color: rgba(26, 18, 8, 0.75);
  text-align: left;
}
.service-card--featured .service-card__features li { color: #ffffff; }

.service-card__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: .5rem;
}

.service-card .btn--outline,
.service-card .btn--primary {
  background: transparent;
  color: #1a1208;
  border: 2.5px solid #ffffff;
  border-radius: 100px;
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 600;
  letter-spacing: .08em;
  transform: none;
  box-shadow: none;
}
.service-card--featured .btn--outline,
.service-card--featured .btn--primary {
  color: #ffffff;
  border-color: #ffffff;
}

.service-card .btn--outline:hover,
.service-card .btn--primary:hover {
  background: rgb(116, 99, 65);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.service-card--featured .btn--outline:hover,
.service-card--featured .btn--primary:hover {
  background: rgb(94, 33, 15);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ── LABEL EN SOBRE MÍ — blanco ─────────────────────────────── */
.about .label { color: var(--bark-soft); }

/* ── FOTOS SOBRE MÍ — elegantes, bordes redondeados ─────────── */
.about__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 90%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 3px #ffffff, 0 24px 64px rgba(0,0,0,0.22);
}
.about__img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}
.about__img-main:hover img { transform: scale(1.04); }

.about__img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 48%; height: 52%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 3px #ffffff, 0 12px 40px rgba(0,0,0,0.25);
  border: none;
}
.about__img-accent img { width: 100%; height: 100%; object-fit: cover; }

/* ── GRADIENTES DE CONTINUIDAD ENTRE SECCIONES ───────────────── */

/* Hero → Sobre mí: gradiente al fondo del hero (ya en .hero::after) */

/* Sobre mí → Servicios: gradiente al TOP de servicios, de púrpura a crema */
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 180px;
  background: linear-gradient(to bottom, rgb(232,198,130) 0%, rgba(237,231,220,0) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Servicios → Casos: gradiente al TOP de casos, de crema a gris oscuro */
.cases {
  position: relative;
  background: rgb(56, 62, 66);
  padding-block: clamp(5rem, 10vw, 9rem);
}
.cases::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 180px;
  background: linear-gradient(to bottom, rgb(237,231,220) 0%, rgba(56,62,66,0) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Casos, Booking y Footer: mismo color rgb(56,62,66) — fluido sin corte */
.modalities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  background: rgb(56, 62, 66);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
}
.modality__divider { width: 1px; height: 80px; background: rgba(142, 159, 171, 0.3); }
.modality__icon { font-size: 1.75rem; margin-bottom: .5rem; color: rgb(142, 159, 171); }
.modality h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; margin-bottom: .35rem; color: rgb(142, 159, 171); }
.modality p { font-size: .875rem; color: rgb(142, 159, 171); max-width: 24ch; }

/* ── CASOS / REELS ───────────────────────────────────────────── */
.cases__header { margin-bottom: 3.5rem; }
.cases__header .section-title { color: rgb(142, 159, 171); }
.cases__header .section-sub { color: rgb(142, 159, 171); }
.cases__header .label { color: rgb(142, 159, 171); }

/* ── GALERÍA DE FOTOGRAFÍAS ───────────────────────────────────── */
button.gallery__item {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  background-color: var(--bark-mid);
}
.gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
}
.gallery__item {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  background: var(--bark-mid);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}
.gallery__item img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .6s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.05); }

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 4, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility .3s;
  padding: 2rem;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__inner img {
  max-width: 100%;
  max-height: 650px;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  display: block;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  z-index: 2001;
}
.lightbox__close:hover {
  background: rgba(255,255,255,.15);
  border-color: #ffffff;
  transform: scale(1.06);
}

/* ── AGENDAMIENTO ────────────────────────────────────────────── */
.booking {
  position: relative;
  background: rgb(56, 62, 66);
  padding-block: clamp(5rem, 12vw, 10rem);
  overflow: hidden;
}
.booking__bg { display: none; }
.booking__inner {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
  max-width: 640px; margin-inline: auto;
}
.booking__title { font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.25rem; }
.booking__title em { font-style: italic; color: var(--sage-light); }
.booking__desc { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.booking__trust { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; margin-bottom: 2.5rem; }
.trust-item { font-size: .8rem; font-weight: 400; letter-spacing: .06em; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: .5rem; }
.trust-item span { color: var(--sage-light); font-size: 1.05rem; }
/* #8A9E7E (sage) → hover oscuro: #455F3F */
.booking .btn--primary,
.booking .btn--large {
  background: #8A9E7E !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  text-align: center;
  justify-content: center;
}
.booking .btn--primary:hover,
.booking .btn--large:hover {
  background: #455F3F !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: rgb(56, 62, 66); padding-block: 3.5rem 2rem; }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.75rem;
}
.footer__logo { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: .3rem; }
.footer__tagline { font-size: .8rem; color: rgba(255,255,255,.4); letter-spacing: .04em; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer__nav a { font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .05em; transition: color .25s; }
.footer__nav a:hover { color: var(--white); }
.footer__social { display: flex; gap: .75rem; align-items: center; }
.social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  transition: border-color .3s, background .3s;
}
.social-link:hover { border-color: var(--sage); background: rgba(138,158,126,.15); }
.social-link img { width: 18px; height: 18px; filter: invert(1) opacity(.65); transition: filter .3s; }
.social-link:hover img { filter: invert(1) opacity(1); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer__bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ── ANIMACIONES ─────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
.br-desk { display: none; }
@media (min-width: 900px) { .br-desk { display: block; } }

@media (max-width: 960px) {
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__images { height: 420px; width: 100%; }
  .modalities { flex-direction: column; gap: 2rem; }
  .modality__divider { width: 60px; height: 1px; }
}

@media (max-width: 700px) {
  .nav__hamburger { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: rgba(26, 18, 8, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: transform .45s var(--ease-out);
    -webkit-transition: -webkit-transform .45s var(--ease-out);
    padding: 2rem var(--gutter);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__menu.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  .nav__link {
    font-size: 1.6rem !important;
    font-family: var(--font-display) !important;
    font-weight: 300 !important;
    color: var(--white) !important;
    display: block;
    text-align: center;
  }
  .nav__link::after { display: none; }
  .nav__cta {
    font-size: 1rem !important;
    padding: .75rem 1.75rem !important;
    color: var(--white) !important;
    border-color: rgba(255,255,255,.5) !important;
    background: transparent !important;
    display: inline-block;
    text-align: center;
  }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; }
  .booking__trust { flex-direction: column; align-items: center; }
  .gallery { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

@media (max-width: 480px) {
  .hero__pain-words { height: 2.1rem; margin-bottom: 1.5rem; }
  .pain-word { font-size: .7rem; padding: .35rem .9rem; }
  .services__grid   { max-width: 100%; }
  .about__images    { height: 320px; }
}
.booking__note { margin-top: 1rem; font-size: .72rem; color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase; }

/* ── BOTÓN LORENZA (sobre mí) ────────────────────────────────── */
/* rgb(255,163,43) → 50% oscuro: rgb(127,81,21) */
.btn--lorenza {
  background: rgb(255, 163, 43) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}
.btn--lorenza:hover {
  background: rgb(127, 81, 21) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}
