:root {
  --ink: #1c2723;
  --muted: #5b6862;
  --paper: #f6f1e7;
  --paper-2: #fcf9f1;
  --white: #ffffff;
  --forest: #114a3f;
  --forest-2: #0c352d;
  --deep: #0a2823;
  --teal: #1d7a72;
  --copper: #c0623f;
  --copper-2: #a44e30;
  --gold: #d8a64a;
  --sage: #e3ecdf;
  --sand: #efe6d4;
  --line: rgba(28, 39, 35, 0.12);
  --line-strong: rgba(28, 39, 35, 0.2);
  --shadow-sm: 0 10px 30px rgba(28, 39, 35, 0.08);
  --shadow: 0 26px 70px rgba(28, 39, 35, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1200px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { color: var(--white); background: var(--forest); }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- Typography ---------- */
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--gold); }

h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
h1 em { font-style: italic; color: var(--gold); font-weight: 500; }

h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.3;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}
.button:hover { transform: translateY(-2px); }
.button-lg { min-height: 58px; padding: 0 30px; font-size: 1.05rem; }
.button-small { min-height: 44px; padding: 0 18px; font-size: 0.95rem; }

.button-primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 14px 30px rgba(192, 98, 63, 0.32);
}
.button-primary:hover { background: var(--copper-2); }

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.button-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.wa-ico {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 40, 35, 0.82), rgba(10, 40, 35, 0));
  transition: background 0.3s ease;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  flex: 0 0 auto;
  height: 50px;
  width: auto;
  border-radius: 12px;
  background: var(--white);
  padding: 5px 9px;
  box-shadow: 0 4px 14px rgba(8, 32, 28, 0.3);
}
.brand-text strong, .brand-text small { display: block; white-space: nowrap; line-height: 1.2; }
.brand-text strong { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }
.brand-text small { opacity: 0.78; font-size: 0.74rem; letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); font-size: 0.95rem; font-weight: 600; }
.nav a { opacity: 0.85; transition: opacity 0.15s ease; }
.nav a:hover { opacity: 1; }
.nav-cta { display: none; }

.header.scrolled {
  background: rgba(10, 40, 35, 0.96);
  box-shadow: 0 10px 30px rgba(8, 32, 28, 0.25);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 0;
}
.hero-bg, .hero-layer { position: absolute; inset: 0; }
.hero-bg {
  background-image: url("assets/hero-vitalidade.jpg");
  background-image: image-set(
    url("assets/hero-vitalidade-1920.webp") type("image/webp"),
    url("assets/hero-vitalidade.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}
.hero-layer {
  background:
    linear-gradient(96deg, rgba(8, 32, 28, 0.96) 8%, rgba(8, 32, 28, 0.78) 44%, rgba(8, 32, 28, 0.14)),
    linear-gradient(0deg, rgba(8, 32, 28, 0.62), transparent 46%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-content { width: min(760px, 100%); color: var(--white); }
.hero-sub {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin: 20px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }

.trust-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.trust-strip div { padding: 22px 18px 30px; color: var(--white); }
.trust-strip div + div { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.trust-strip strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--gold); }
.trust-strip span { display: block; margin-top: 4px; color: rgba(255, 255, 255, 0.74); font-size: 0.9rem; }

/* ---------- Generic section spacing ---------- */
section { padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 28px 56px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 48px;
}
.section-head-sub { margin: 0; color: var(--muted); font-size: 1.05rem; }

/* ---------- Authority ---------- */
.authority {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.authority h2 { margin: 0 auto; max-width: 820px; }
.authority-lead {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}
.authority-lead strong { color: var(--forest); }
.authority-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  text-align: left;
}
.authority-points div {
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.authority-points strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
}
.authority-points p { margin: 0; color: var(--muted); }

/* ---------- Needs ---------- */
.needs { background: var(--sand); }
.need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.need-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--copper);
}
.need-grid h3 { margin-bottom: 8px; }
.need-grid p { margin: 0; color: var(--muted); }
.needs-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 26px 30px;
  background: var(--forest);
  border-radius: var(--radius);
  color: var(--white);
}
.needs-cta p { margin: 0; font-size: 1.1rem; font-weight: 500; }

/* ---------- Method ---------- */
.method { max-width: var(--max); margin: 0 auto; }
.method-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.method-head { max-width: 720px; }
.method-head p { color: var(--muted); font-size: 1.1rem; margin: 22px 0 0; }
.method-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.method-visual img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.pillars article {
  padding: 32px 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.pillars span {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--copper);
  margin-bottom: 14px;
}
.pillars h3 { margin-bottom: 8px; }
.pillars p { margin: 0; color: var(--muted); }

.method-negatives {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 18px 48px;
  align-items: start;
  margin-top: 28px;
  padding: 32px 34px;
  background: var(--sand);
  border-radius: var(--radius);
}
.method-negatives > p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
}
.method-negatives em { color: var(--copper); font-style: italic; }
.method-negatives ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.method-negatives li { position: relative; padding-left: 28px; color: var(--muted); }
.method-negatives li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--forest-2);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
}
.about { max-width: calc(var(--max) - 40px); }
.about-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.about-visual figcaption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 16px 20px;
  background: rgba(8, 32, 28, 0.86);
  backdrop-filter: blur(6px);
  border-radius: 10px;
}
.about-visual figcaption strong { display: block; font-family: var(--serif); font-weight: 600; }
.about-visual figcaption span { display: block; margin-top: 4px; color: rgba(255, 255, 255, 0.72); font-size: 0.85rem; }
.about-copy .eyebrow { color: var(--gold); }
.about-copy h2 { color: var(--white); }
.about-copy p { color: rgba(255, 255, 255, 0.82); margin: 18px 0 0; }
.about-quote {
  margin: 26px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--white);
}

/* ---------- Consult / timeline ---------- */
.consult { background: var(--paper-2); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.timeline li {
  position: relative;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step-n {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
}
.timeline h3 { margin-bottom: 8px; }
.timeline p { margin: 0; color: var(--muted); }
.iris-strip { max-width: var(--max); margin: 44px auto 0; }
.iris-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.6vw, 20px);
}
.iris-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.iris-strip figcaption {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.iris-strip-link {
  display: inline-block;
  margin-left: 8px;
  color: var(--teal);
  font-weight: 700;
}
.iris-strip-link:hover { text-decoration: underline; }

.return-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: var(--max);
  margin: 20px auto 0;
  padding: 28px 32px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}
.return-note span { color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.return-note strong { display: block; margin-top: 6px; font-family: var(--serif); font-weight: 500; font-size: 1.5rem; line-height: 1.2; }
.return-note p { margin: 0; color: rgba(255, 255, 255, 0.78); }

/* ---------- Takeaway ---------- */
.takeaway { background: var(--paper); }
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.takeaway-grid article {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.takeaway-grid article::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 700;
}
.takeaway-grid h3 { margin-bottom: 8px; font-size: 1.08rem; }
.takeaway-grid p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ---------- Areas ---------- */
.areas { background: var(--sage); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.area-grid article {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.area-grid h3 { margin-bottom: 10px; font-size: 1.1rem; }
.area-grid p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.area-grid .area-note { background: var(--forest); color: var(--white); border-color: transparent; }
.area-grid .area-note h3 { color: var(--gold); }
.area-grid .area-note p { color: rgba(255, 255, 255, 0.82); }

/* ---------- Proof ---------- */
.proof {
  color: var(--white);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(29, 122, 114, 0.4), transparent 55%),
    linear-gradient(135deg, var(--forest-2), var(--deep));
  text-align: center;
}
.proof-head { max-width: 720px; margin: 0 auto; }
.proof-head h2 { color: var(--white); }
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 44px auto 0;
}
.proof-stats div {
  padding: 28px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}
.proof-stats strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 2rem; color: var(--gold); }
.proof-stats span { display: block; margin-top: 6px; color: rgba(255, 255, 255, 0.74); font-size: 0.92rem; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 26px auto 0;
  text-align: left;
}
.testimonials figure {
  margin: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}
.testimonials blockquote {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.testimonials figcaption { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.proof-disclaimer { margin: 22px 0 0; color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; }

/* ---------- Booking ---------- */
.booking { background: var(--paper-2); }
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}
.location-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.location-card.featured {
  border: 1.5px solid var(--teal);
  box-shadow: 0 26px 60px rgba(29, 122, 114, 0.16);
}
.loc-tag { color: var(--teal); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.location-card h3 { margin: 10px 0 6px; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
.loc-addr { margin: 0 0 16px; color: var(--muted); font-size: 0.95rem; }
.location-card ul { display: grid; gap: 8px; margin: 0 0 24px; padding-left: 18px; color: var(--muted); }
.location-card .button { width: 100%; margin-top: auto; }
.booking-rules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 18px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.booking-rules div { padding: 20px; background: var(--white); }
.booking-rules span { display: block; color: var(--teal); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.booking-rules strong { display: block; margin-top: 6px; font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}
details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 700;
  transition: transform 0.2s ease;
}
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 24px 24px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.final-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.final-cta { border-radius: var(--radius-lg); }
.final-cta h2 { max-width: 760px; margin: 0 auto; }
.final-cta > p { margin: 18px auto 0; max-width: 540px; color: var(--muted); font-size: 1.15rem; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.final-cta .button-ghost { color: var(--forest); border-color: var(--line-strong); background: transparent; }
.final-cta .button-ghost:hover { background: rgba(28, 39, 35, 0.06); }

/* ---------- Footer ---------- */
.footer { padding: 0; background: #0d1513; color: rgba(255, 255, 255, 0.72); }
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px clamp(18px, 5vw, 72px) 30px;
}
.footer-main strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--white); }
.footer-main span { display: block; margin-top: 6px; max-width: 420px; }
.footer-contacts { display: grid; gap: 8px; }
.footer-contacts a { font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.footer-contacts a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.footer-legal { color: rgba(255, 255, 255, 0.5); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  color: var(--white);
  background: #1faa54;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(31, 170, 84, 0.42);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(31, 170, 84, 0.5); }
.wa-float svg { flex: 0 0 auto; }

/* ---------- Página Galeria ---------- */
.page-hero {
  padding: 160px clamp(18px, 5vw, 72px) 72px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(29, 122, 114, 0.35), transparent 60%),
    linear-gradient(160deg, var(--forest-2), var(--deep));
}
.page-hero h1 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}
.page-hero > p {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.galeria { background: var(--paper); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
  max-width: var(--max);
  margin: 0 auto;
}
.galeria-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.galeria-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.galeria-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.galeria-grid a:hover img { transform: scale(1.05); }
.galeria-note {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.galeria-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.galeria-cta .button-ghost { color: var(--forest); border-color: var(--line-strong); background: transparent; }
.galeria-cta .button-ghost:hover { background: rgba(28, 39, 35, 0.06); }

/* ---------- Páginas por cidade ---------- */
.city-unit { background: var(--paper-2); }
.city-unit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}
.city-map {
  min-height: 400px;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.city-map iframe { display: block; width: 100%; height: 100%; min-height: 400px; border: 0; }
.city-regions {
  max-width: 860px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--muted);
}
.city-outras { margin: 26px auto 0; color: var(--muted); font-size: 0.95rem; }
.city-outras a { color: var(--teal); font-weight: 700; }
.city-outras a:hover { text-decoration: underline; }
.loc-more {
  display: block;
  margin-top: 14px;
  text-align: center;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.92rem;
}
.loc-more:hover { text-decoration: underline; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 32, 28, 0.94);
}
.lightbox.open { display: flex; }
body.lightbox-open { overflow: hidden; }
.lightbox img {
  /* nunca ultrapassa a resolução nativa (1280x960) nem estica */
  max-width: min(92vw, 1280px);
  max-height: min(88vh, 960px);
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  z-index: 101;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animations (aplicadas via script.js) ---------- */
.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.will-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .authority-points, .pillars, .need-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .timeline, .area-grid, .proof-stats, .takeaway-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-visual img { min-height: 320px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(odd) { border-left: 0; }
  .trust-strip div:nth-child(3), .trust-strip div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.16); }
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 110px clamp(20px, 7vw, 44px) 40px;
    background: var(--deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .header { background: rgba(8, 32, 28, 0.98); }
  .nav a {
    padding: 10px 0;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.5rem;
    opacity: 1;
  }
  .nav .nav-cta {
    display: inline-flex;
    margin-top: 22px;
    padding: 15px 28px;
    color: var(--white);
    background: var(--copper);
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.05rem;
  }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .locations { grid-template-columns: 1fr; }
  .method-negatives { grid-template-columns: 1fr; }
  .method-top { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .city-unit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .header > .button-small { display: none; }
  .hero { min-height: auto; padding: 120px 18px 0; }
  .hero-bg {
    background-image: url("assets/hero-vitalidade.jpg");
    background-image: image-set(
      url("assets/hero-vitalidade-960.webp") type("image/webp"),
      url("assets/hero-vitalidade.jpg") type("image/jpeg")
    );
  }
  .hero-layer { background: linear-gradient(0deg, rgba(8, 32, 28, 0.92), rgba(8, 32, 28, 0.6)); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-strip { grid-template-columns: 1fr 1fr; margin-top: 32px; margin-bottom: 0; }
  .authority-points, .pillars, .need-grid, .timeline, .area-grid, .takeaway-grid,
  .proof-stats, .testimonials, .booking-rules, .faq-list { grid-template-columns: 1fr; }
  .iris-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-prev, .lb-next { width: 44px; height: 44px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .needs-cta, .return-note, .footer-bottom { flex-direction: column; align-items: stretch; text-align: left; }
  .return-note { grid-template-columns: 1fr; }
  .booking-rules { border-radius: var(--radius); }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}
