/* ============================================================
   Tadana · hoja de estilos
   Paleta Terracota. Los valores vienen del diseño aprobado (v4).
   ============================================================ */

:root{
  /* Paleta */
  --green:#6b4a3a;
  --a1:#e0b48c;
  --a2:#8f5535;
  --a3:#6d3d24;
  --cream:#f2eae2;
  --paper:#fbf7f3;
  --hover:#efcaa6;
  --on-green:#e4d8cd;
  --on-green-accent:#f2ddc7;
  --text:#312e26;
  --grey:#605c55;
  --line:#78756e;

  /* Tipografía */
  --serif:'Playfair Display',Georgia,'Times New Roman',serif;
  --sans:'Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;
  --display:'Cormorant Garamond','Playfair Display',Georgia,serif;
  --hand:'Shantell Sans','Comic Sans MS',cursive;

  /* Ritmo vertical */
  --pad-section:clamp(64px,8vw,104px);
  --pad-x:22px;
}

/* ---------- Reset y base ---------- */
*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:var(--sans);
  font-weight:300;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

section{ scroll-margin-top:92px; }

a{ color:var(--a2); text-decoration:none; }
a:hover{ color:var(--a3); }

h1,h2,h3{ font-family:var(--serif); font-weight:400; margin:0; }

/* height:auto es obligatorio: sin él, los atributos width/height del HTML
   ganan como "presentational hints" y anulan los aspect-ratio de más abajo. */
img{ max-width:100%; height:auto; }

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

ul{ list-style:none; padding:0; margin:0; }

.wrap{ max-width:1140px; margin:0 auto; }
.wrap-sm{ max-width:1040px; margin:0 auto; }
.wrap-xs{ max-width:820px; margin:0 auto; }

.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;
}

:focus-visible{ outline:2px solid var(--a2); outline-offset:3px; border-radius:4px; }

@keyframes fadeUp{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:none; }
}

/* ---------- Botones ---------- */
.btn{
  display:inline-block;
  background:var(--a1);
  color:var(--text);
  padding:17px 40px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:500;
  letter-spacing:.1em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:background .25s ease;
}
.btn:hover{ background:var(--hover); color:var(--text); }

.btn--hero{ min-width:210px; text-align:center; box-shadow:0 10px 28px rgba(0,0,0,.2); }
.btn--sm{ padding:16px 34px; font-size:13px; }

.btn-outline{
  display:inline-block;
  border:1px solid var(--a2);
  color:var(--a2);
  padding:15px 32px;
  border-radius:999px;
  font-size:12.5px;
  font-weight:500;
  letter-spacing:.1em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:background .25s ease,color .25s ease;
}
.btn-outline:hover{ background:var(--a2); color:var(--paper); }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  /* En horizontal el menú abierto llegaba a pasarse de la pantalla:
     el header nunca supera el alto visible y el panel se desplaza solo. */
  display:flex;
  flex-direction:column;
  max-height:100vh;
  max-height:100dvh;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .4s ease,border-color .4s ease,backdrop-filter .4s ease,box-shadow .4s ease;

  --hdr-text:#f7f5f2;
  --hdr-brand:#f7f5f2;
  --hdr-accent:#f7f5f2;
  --hdr-line:rgba(255,255,255,.42);
  --hdr-logo:brightness(0) invert(1);
  --hdr-shadow:0 1px 12px rgba(0,0,0,.45);
  --hdr-panel:rgba(20,24,28,.94);
  --hdr-on-bg:#f7f5f2;
  --hdr-on-fg:#312e26;
  --hdr-cta-fg:#f7f5f2;
  --hdr-cta-bg:rgba(255,255,255,.13);
  --hdr-cta-bd:rgba(255,255,255,.5);
  --hdr-cta-bg-h:rgba(255,255,255,.24);
  --hdr-cta-bd-h:rgba(255,255,255,.78);
}

.header.is-scrolled{
  background:rgba(251,247,243,.94);
  backdrop-filter:blur(14px) saturate(1.05);
  border-bottom:1px solid rgba(36,31,26,.08);
  box-shadow:0 6px 26px rgba(36,31,26,.07);

  --hdr-text:var(--text);
  --hdr-brand:var(--green);
  --hdr-accent:var(--a2);
  --hdr-line:var(--line);
  --hdr-logo:none;
  --hdr-shadow:none;
  --hdr-panel:rgba(251,248,244,.98);
  --hdr-on-bg:var(--text);
  --hdr-on-fg:#f7f5f2;
  --hdr-cta-fg:var(--text);
  --hdr-cta-bg:var(--a1);
  --hdr-cta-bd:var(--a1);
  --hdr-cta-bg-h:var(--hover);
  --hdr-cta-bd-h:var(--hover);
}

.header__inner{
  flex:none;
  width:100%;
  max-width:1340px;
  margin:0 auto;
  padding:12px 26px;
  display:flex;
  align-items:center;
  gap:26px;
}

.brand{ display:flex; align-items:center; gap:11px; flex:none; }
.brand__mark{ height:47px; width:auto; display:block; filter:var(--hdr-logo); transition:filter .35s ease; }
.brand__name{
  font-family:var(--display);
  font-weight:500;
  font-size:34px;
  color:var(--hdr-brand);
  line-height:1;
  text-shadow:var(--hdr-shadow);
}

.nav{ margin-left:auto; display:flex; align-items:center; gap:26px; }
.nav__link{
  font-family:var(--display);
  font-weight:500;
  font-size:21px;
  color:var(--hdr-text);
  padding-bottom:2px;
  border-bottom:1px solid transparent;
  text-shadow:var(--hdr-shadow);
  transition:color .25s ease,border-color .25s ease;
}
.nav__link:hover{ color:var(--hdr-accent); border-bottom-color:var(--hdr-accent); }

.header__actions{ display:flex; align-items:center; gap:18px; }

.lang{
  display:flex;
  align-items:center;
  font-size:12px;
  font-weight:500;
  letter-spacing:.06em;
  border:1px solid var(--hdr-line);
  border-radius:20px;
  overflow:hidden;
}
.lang__btn{
  background:transparent;
  color:var(--hdr-text);
  border:none;
  padding:6px 13px;
  font-size:12px;
  font-weight:500;
  cursor:pointer;
  transition:background .25s ease,color .25s ease;
}
.lang__btn.is-active{ background:var(--hdr-on-bg); color:var(--hdr-on-fg); }

.header__cta{
  font-family:var(--display);
  font-style:italic;
  font-size:20px;
  color:var(--hdr-cta-fg);
  background:var(--hdr-cta-bg);
  border:1px solid var(--hdr-cta-bd);
  border-radius:24px;
  padding:7px 22px;
  white-space:nowrap;
  transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.header__cta:hover{ background:var(--hdr-cta-bg-h); border-color:var(--hdr-cta-bd-h); color:var(--hdr-cta-fg); }

.burger{
  margin-left:auto;
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  color:var(--hdr-text);
  filter:drop-shadow(0 1px 6px rgba(0,0,0,.25));
}

.menu{
  padding:8px 24px 22px;
  display:flex;
  flex-direction:column;
  gap:2px;
  min-height:0;
  overflow-y:auto;
  overscroll-behavior:contain;
  border-top:1px solid var(--hdr-line);
  background:var(--hdr-panel);
  backdrop-filter:blur(14px);
}
.menu[hidden]{ display:none; }
.menu__link{
  padding:12px 4px;
  color:var(--hdr-text);
  border-bottom:1px solid var(--hdr-line);
}
.menu__link:hover{ color:var(--hdr-accent); }
.menu__foot{ display:flex; align-items:center; gap:14px; margin-top:16px; }
.menu__cta{
  background:var(--a1);
  color:var(--text);
  padding:11px 26px;
  border-radius:999px;
  font-size:14.5px;
}
.menu__cta:hover{ background:var(--hover); color:var(--text); }

/* ============================================================
   1. HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}
.hero__img{
  position:absolute;
  left:0; top:-14%;
  width:100%; height:128%;
  object-fit:cover;
  object-position:center 55%;
  will-change:transform;
}
.hero__veil,
.hero__vignette{ position:absolute; inset:0; pointer-events:none; }
.hero__veil{
  background:linear-gradient(180deg,rgba(20,24,32,.34) 0%,rgba(20,24,32,.06) 30%,rgba(16,20,26,.30) 62%,rgba(12,14,18,.72) 100%);
}
.hero__vignette{
  background:radial-gradient(ellipse 78% 60% at 50% 88%,rgba(10,12,16,.42) 0%,rgba(10,12,16,0) 72%);
}
.hero__content{
  position:relative;
  padding:0 clamp(22px,5vw,72px) clamp(84px,12vh,116px);
  max-width:min(880px,100%);
  margin:0 auto;
  text-align:center;
  animation:fadeUp .9s ease both;
  will-change:transform,opacity;
}
.hero__title{
  color:#f7f5f2;
  font-size:clamp(33px,5.2vw,52px);
  line-height:1.08;
  margin:0 0 20px;
  text-wrap:balance;
  text-shadow:0 2px 26px rgba(0,0,0,.42);
}
.hero__sub{
  font-size:clamp(16px,2.2vw,18.5px);
  line-height:1.65;
  color:#ede8e3;
  max-width:520px;
  margin:0 auto 34px;
  text-shadow:0 1px 14px rgba(0,0,0,.4);
}
.hero__ctas{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

/* ============================================================
   2. BIENVENIDA
   ============================================================ */
.intro{ padding:clamp(40px,6vw,72px) var(--pad-x) clamp(60px,8vw,96px); text-align:center; }
.intro__ornament{ display:flex; align-items:center; justify-content:center; gap:20px; margin-bottom:34px; }
.intro__rule{ display:block; width:clamp(70px,16vw,200px); height:1px; }
.intro__rule--l{ background:linear-gradient(90deg,rgba(143,85,53,0) 0%,rgba(143,85,53,.5) 100%); }
.intro__rule--r{ background:linear-gradient(90deg,rgba(143,85,53,.5) 0%,rgba(143,85,53,0) 100%); }
.intro__mark{ height:54px; width:auto; opacity:.8; flex:none; }
.intro__lead{
  font-size:clamp(17px,2.1vw,20px);
  line-height:1.85;
  font-weight:400;
  margin:0 0 22px;
  text-wrap:pretty;
}
.intro__p{ font-size:clamp(15px,1.8vw,16.5px); line-height:1.9; color:var(--grey); margin:0 0 18px; text-wrap:pretty; }
.intro__note{
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--a2);
  margin:32px 0 0;
}

/* ============================================================
   3. LOS CUATRO
   ============================================================ */
.four{ position:relative; background:var(--cream); padding:var(--pad-section) var(--pad-x); }
.section-head{ text-align:center; margin-bottom:clamp(40px,5vw,64px); }
.section-head__title{ font-size:clamp(32px,5vw,54px); margin-bottom:14px; text-wrap:balance; }
.section-head__sub{ font-size:15.5px; line-height:1.8; color:var(--grey); max-width:560px; margin:0 auto; }

.four__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(38px,4.5vw,58px) clamp(24px,3vw,48px);
  max-width:1120px;
  margin:0 auto;
  align-items:center;
  justify-items:center;
}
.four__cell{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.four__cell h3{ font-size:clamp(23px,2.6vw,28px); margin:0; }
.four__cell p{ font-size:15px; line-height:1.8; color:var(--grey); margin:0; max-width:270px; }
.four__ornament{ display:none; align-items:center; justify-content:center; padding:6px; }
.four__ornament svg{ max-width:270px; opacity:.55; }

@media (min-width:940px){
  .four__grid{ grid-template-columns:1fr minmax(200px,.85fr) 1fr; }
  .four__ornament{ display:flex; grid-column:2; grid-row:1 / span 2; }
  .four__cell--1{ grid-column:1; grid-row:1; }
  .four__cell--2{ grid-column:3; grid-row:1; }
  .four__cell--3{ grid-column:1; grid-row:2; }
  .four__cell--4{ grid-column:3; grid-row:2; }
}

/* ============================================================
   4. YOGA  ·  6. MASAJE  (dos columnas)
   ============================================================ */
.split{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(310px,1fr));
  gap:clamp(32px,4vw,56px);
  align-items:center;
}
.kicker{
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--a2);
  font-weight:500;
  margin:0 0 14px;
}
.section-title{ font-size:clamp(34px,5.6vw,62px); text-wrap:balance; }

.yoga{ padding:var(--pad-section) var(--pad-x); }
.yoga .section-head{ margin-bottom:clamp(38px,5vw,58px); }

.figure-arch{ margin:0; display:flex; flex-direction:column; gap:14px; }
.figure-arch img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:220px 220px 12px 12px;
  display:block;
  box-shadow:0 22px 50px rgba(36,31,26,.16);
}
.figure-arch figcaption{
  font-family:var(--hand);
  font-size:14.5px;
  line-height:1.5;
  color:var(--a2);
  margin:0;
  text-align:center;
}

.body-text{ font-size:16.5px; line-height:1.9; color:var(--grey); margin:0 0 26px; text-wrap:pretty; }
.sub-title{ font-size:24px; margin-bottom:16px; }

.tags{ display:flex; flex-wrap:wrap; gap:9px 10px; margin:0 0 30px; }
.tags li{
  background:var(--cream);
  color:var(--a3);
  font-size:13.5px;
  font-weight:400;
  padding:8px 16px;
  border-radius:999px;
}

.schedule{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:14px;
  margin-bottom:18px;
}
.schedule__card{ background:var(--cream); border-radius:16px; padding:20px; }
.schedule__label{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--a2);
  font-weight:500;
  margin:0 0 8px;
}
.schedule__info{ font-size:15.5px; line-height:1.5; margin:0; }
.note{ font-size:14.5px; line-height:1.7; color:var(--grey); margin:0 0 26px; }

/* ---------- 5. Foto puente ---------- */
.band{ position:relative; height:clamp(420px,42vw,820px); overflow:hidden; }
.band img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 60%;
}
.band__veil{
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(18,22,28,.14) 0%,rgba(18,22,28,.30) 100%);
}

/* ---------- 6. Masaje ---------- */
.masaje{
  position:relative;
  background:var(--green);
  color:var(--on-green);
  padding:clamp(50px,6vw,80px) var(--pad-x) var(--pad-section);
  overflow:hidden;
}
.masaje__glyph{
  position:absolute;
  bottom:2%; right:2.5%;
  font-family:var(--serif);
  font-size:clamp(90px,12vw,190px);
  line-height:1;
  color:rgba(224,180,140,.075);
  pointer-events:none;
  user-select:none;
}
.masaje .wrap{ position:relative; }
.masaje .kicker{ color:var(--on-green-accent); }
.masaje .section-title{ color:#f7f5f2; }
.masaje .body-text{ color:var(--on-green); margin-bottom:28px; }
.masaje .figure-arch img{ box-shadow:0 22px 50px rgba(0,0,0,.3); }
.masaje .figure-arch figcaption{ color:var(--on-green-accent); }

.benefits{ display:flex; flex-direction:column; gap:13px; margin:0 0 30px; }
.benefits li{ display:flex; align-items:flex-start; gap:13px; font-size:15.5px; line-height:1.6; }
.benefits__mark{ color:var(--on-green-accent); font-size:14px; line-height:1.6; }

.durations{ display:flex; gap:10px; margin-bottom:26px; flex-wrap:wrap; }
.durations li{
  border:1px solid rgba(224,180,140,.95);
  color:var(--on-green-accent);
  border-radius:999px;
  padding:9px 20px;
  font-size:13.5px;
}
.masaje .note{ color:var(--on-green); font-size:15px; line-height:1.85; margin-bottom:30px; max-width:520px; }

/* ============================================================
   7. RESEÑAS
   ============================================================ */
.reviews{ padding:var(--pad-section) var(--pad-x); }
.reviews .section-head{ margin-bottom:clamp(36px,4.5vw,52px); }
.rating{ display:inline-flex; align-items:center; gap:12px; margin-bottom:10px; }
.rating__score{ font-family:var(--serif); font-size:58px; line-height:1; }
.rating__meta{ text-align:left; }
.rating__stars{ color:var(--a2); font-size:19px; letter-spacing:2px; }
.rating__count{ font-size:13px; color:var(--grey); margin:3px 0 0; }
.reviews__title{ font-size:clamp(30px,4.8vw,50px); text-wrap:balance; }

.reviews__grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; }
.review{
  margin:0;
  background:var(--cream);
  border-radius:20px;
  padding:30px 26px;
  display:flex;
  flex-direction:column;
  text-align:center;
}
.review__stars{ color:var(--a2); font-size:15px; letter-spacing:1px; margin-bottom:14px; }
.review blockquote{
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:20.5px;
  line-height:1.55;
  font-style:italic;
}
.review figcaption{
  margin-top:auto;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--a2);
}
.reviews__cta{ text-align:center; margin-top:36px; }

/* ============================================================
   8. SOBRE ROCÍO
   ============================================================ */
.about{ background:var(--cream); padding:var(--pad-section) var(--pad-x); }
.about .section-head{ margin-bottom:clamp(36px,4.5vw,52px); }
.about__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:clamp(32px,4vw,56px);
  align-items:center;
}
.about__portrait{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center 25%;
  border-radius:999px;
  display:block;
  box-shadow:0 22px 50px rgba(36,31,26,.16);
}
.about__p{ font-size:16px; line-height:1.9; color:var(--grey); margin:0 0 18px; text-wrap:pretty; }
.about__p:last-of-type{ margin-bottom:28px; }
.about__certs{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:18px; }
.about__certs figure{ margin:0; }
.about__certs img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:14px; display:block; }
.about__certs figcaption{
  font-family:var(--hand);
  font-size:13.5px;
  line-height:1.45;
  color:var(--a2);
  margin-top:9px;
}

/* ============================================================
   9. CONTACTO
   ============================================================ */
.contact{ padding:var(--pad-section) var(--pad-x); }
.contact .section-head{ margin-bottom:clamp(36px,4.5vw,52px); }
.contact__title{ font-size:clamp(34px,5.6vw,58px); margin-bottom:14px; }
.contact__body{ font-size:16px; line-height:1.8; color:var(--grey); max-width:560px; margin:0 auto; }

.contact__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:clamp(30px,4vw,50px);
}
.contact__col{ display:flex; flex-direction:column; gap:clamp(30px,4vw,42px); }
.contact__h3{ font-size:23px; margin:0 0 18px; }

.contact__list{ display:flex; flex-direction:column; gap:15px; }
.contact__list li{ display:flex; align-items:center; gap:13px; flex-wrap:wrap; font-size:15.5px; }
.contact__list svg{ flex:none; }
.contact__alt{ color:var(--grey); font-size:14.5px; }

.contact__follow-body{ font-size:15px; line-height:1.75; color:var(--grey); margin:0 0 20px; max-width:400px; }
.socials{ display:flex; flex-wrap:wrap; gap:12px; }
.social{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border:1px solid var(--a1);
  border-radius:999px;
  font-size:14.5px;
  color:var(--text);
  transition:background .25s ease,border-color .25s ease;
}
.social:hover{ background:var(--cream); border-color:var(--a2); color:var(--text); }

/* ---------- Formulario ---------- */
.form{ background:var(--cream); border-radius:20px; padding:clamp(26px,3.4vw,34px); }
.form__lead{ font-size:15.5px; font-weight:400; margin:0 0 22px; }
.form label{ display:block; font-size:14.5px; font-weight:400; color:var(--grey); margin-bottom:8px; }
.form input,
.form select,
.form textarea{
  width:100%;
  padding:13px 15px;
  margin-bottom:18px;
  border:1px solid #c9c4bc;
  border-radius:8px;
  background:#fff;
  font-size:15px;
  font-weight:300;
  color:var(--text);
}
.form textarea{ margin-bottom:24px; resize:vertical; }
.form input::placeholder,
.form textarea::placeholder{ color:#a8a29a; }
.form button{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--a2);
  color:#fff;
  padding:15px;
  border:none;
  border-radius:8px;
  font-size:15.5px;
  font-weight:400;
  cursor:pointer;
  transition:background .25s ease;
}
.form button:hover{ background:var(--a3); }
.form__hint{ font-size:13px; line-height:1.6; color:var(--grey); margin:14px 0 0; text-align:center; }

/* ============================================================
   10. FOOTER
   ============================================================ */
.footer{
  background:var(--green);
  color:var(--on-green);
  padding:clamp(48px,6vw,72px) var(--pad-x) 30px;
  text-align:center;
}
.footer__mark{ height:58px; width:auto; filter:brightness(0) invert(1); opacity:.9; margin-bottom:14px; }
.footer__name{ font-family:var(--serif); font-size:30px; color:#f7f5f2; margin:0 0 10px; }
.footer__tagline{ font-size:14.5px; line-height:1.75; max-width:420px; margin:0 auto 30px; }
.footer a{ color:var(--on-green); }
.footer a:hover{ color:#fff; }
.footer__contact{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 22px;
  font-size:14px;
  margin-bottom:26px;
}
.footer__legal{
  max-width:1080px;
  margin:0 auto;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:12.5px;
  letter-spacing:.06em;
}

/* ============================================================
   WhatsApp flotante
   ============================================================ */
.wa-float{
  position:fixed;
  bottom:24px; right:24px;
  z-index:60;
  width:58px; height:58px;
  border-radius:50%;
  background:#25d366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 26px rgba(0,0,0,.24);
  transition:transform .2s ease;
}
.wa-float:hover{ transform:scale(1.06); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1179px){
  .nav,
  .header__actions{ display:none; }
  .burger{ display:block; }
}

@media (min-width:1180px){
  .menu{ display:none !important; }
}

@media (max-width:600px){
  /* El hero ocupaba la pantalla entera y quedaba mucho cielo vacío arriba.
     Algo más bajo, y con la foto recortada, se ve el texto antes. */
  .hero{ min-height:86vh; min-height:86svh; }
  .hero__content{ padding-bottom:clamp(56px,8vh,84px); }
  /* Sin el sobrante del parallax: en vertical ese 28% de más obligaba
     a agrandar la foto un 28% extra y se notaba en la nitidez. */
  .hero__img{ top:0; height:100%; }

  /* iOS Safari hace zoom al enfocar un campo con menos de 16px */
  .form input,
  .form select,
  .form textarea{ font-size:16px; }

  /* Enlaces de texto: área táctil más cómoda sin mover el diseño */
  .footer__contact{ gap:2px 18px; }
  .footer__contact a,
  .footer__contact span{ padding:6px 0; }
  .contact__list a{ padding:5px 0; }

  /* Que el botón flotante no tape el pie */
  .footer__legal{ padding-bottom:46px; }

  .brand__name{ font-size:28px; }
  .brand__mark{ height:40px; }
  .header__inner{ padding:10px 18px; }
  .btn--hero{ min-width:0; flex:1 1 0; padding:16px 18px; font-size:12.5px; }
  .hero__ctas{ flex-wrap:nowrap; }
  .rating__score{ font-size:46px; }
  .wa-float{ bottom:18px; right:18px; width:52px; height:52px; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .hero__img{ transform:none !important; }
}
