/* ════════════════════════════ TOKENS ════════════════════════════ */
:root {
  --ink: #282828;
  --ink-2: #1d1d1d;
  --paper: #F5F2EE;
  --paper-2: #EFE7E0;
  --rose: #EDD9D2;
  --sage: #D8E1DE;
  --accent: #C88365;
  --accent-2: #A8674C;
  --accent-soft: #E3B7A4;
  --muted: #7C6F65;
  --muted-soft: #A89B90;
  --line: #E6DBD2;
  --line-dark: #3A3633;

  --shadow-sm: 0 1px 2px rgba(40,40,40,.05);
  --shadow-md: 0 18px 40px -16px rgba(120,80,60,.22);
  --shadow-lg: 0 40px 90px -30px rgba(80,50,38,.30);

  --radius: 6px;
  --radius-lg: 18px;
  --container: 1240px;
  --container-narrow: 860px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: 200ms;
  --t: 420ms;
  --t-slow: 820ms;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Rubik", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
}

/* ════════════════════════════ RESET ════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img,svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
input,textarea,select { font: inherit; color: inherit; }
fieldset { border: 0; }
::selection { background: var(--accent); color: #fff; }

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

/* ════════════════════════ CONTAINER + UTILS ════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }
@media (min-width: 768px) { .container { padding: 0 44px; } }
@media (min-width: 1240px) { .container { padding: 0 60px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
}
.eyebrow--light { color: var(--accent-soft); }
.eyebrow--light::before { background: var(--accent-soft); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 120;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 32px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.section-title--light { color: var(--paper); }
.section-title--light em { color: var(--accent-soft); }
.section-title--small { font-size: clamp(27px, 3.4vw, 42px); }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ════════════════════════════ BTN ════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t) var(--ease), color var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.btn svg { transition: transform var(--t) var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent-2);
  transform: translateY(101%);
  transition: transform var(--t-slow) var(--ease-out);
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover { box-shadow: var(--shadow-md); }
.btn--primary.btn--light { background: #fff; color: var(--ink); }
.btn--primary.btn--light::before { background: var(--accent); }
.btn--primary.btn--light:hover { color: #fff; }

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); }

.btn--full { width: 100%; }

/* CTA de fim de seção */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.section-cta--left { justify-content: flex-start; margin-top: 32px; }
@media (max-width: 560px) {
  .section-cta .btn { width: 100%; }
}

/* ════════════════════════════ HERO ════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 85% 0%, var(--rose) 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 100%, var(--sage) 0%, transparent 50%),
    var(--paper);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 52px 24px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 768px) { .hero__inner { padding: 64px 44px 80px; } }
@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    padding: 76px 60px 88px;
    min-height: 100svh;
  }
}

.hero__logo { display: block; width: fit-content; margin-bottom: 22px; }
.hero__logo img { height: 60px; width: auto; }
@media (min-width: 980px) { .hero__logo img { height: 74px; } }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); position: relative;
}
.hero__eyebrow .dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--accent);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.9); opacity: 0; } }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 110;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--accent); }

.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}
@media (min-width: 980px) { .hero__sub { font-size: 18px; } }

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__trust li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: .01em;
}
.hero__trust li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; transform: translateY(-50%);
  border-radius: 50%; border: 1.5px solid var(--accent);
}

.hero__media { position: relative; }
.hero__media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sage);
}
.hero__media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.02);
}
@media (min-width: 980px) {
  .hero__media-frame img { aspect-ratio: 3 / 4; }
}

.hero__card {
  position: absolute;
  left: -8px; bottom: -22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  padding: 18px 20px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 980px) { .hero__card { left: -40px; bottom: 40px; } }
.hero__card-mark {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--paper);
  border-radius: 50%;
}
.hero__card-mark img { width: 26px; height: 26px; }
.hero__card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}
.hero__card p { font-size: 12.5px; line-height: 1.45; color: var(--muted); }

/* ════════════════════════ MARQUEE ════════════════════════ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__list li {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: .01em;
  color: var(--paper);
  padding: 0 30px;
  position: relative;
  white-space: nowrap;
}
.marquee__list li::after {
  content: "✦";
  position: absolute; right: -7px; top: 50%;
  transform: translateY(-50%);
  font-size: 11px; font-style: normal;
  color: var(--accent);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ════════════════════════ SINAIS ════════════════════════ */
.signs { padding: 104px 0 112px; background: var(--paper); }
.signs__head { max-width: 760px; margin-bottom: 60px; }
.signs__intro { font-size: 17px; line-height: 1.7; color: var(--muted); margin-top: -8px; }

.signs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .signs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .signs__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.sign {
  padding: 34px 30px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out), border-color var(--t) var(--ease);
}
.sign:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.sign__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--accent-2);
  margin-bottom: 24px;
}
.sign__icon svg { width: 26px; height: 26px; }
.sign h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.sign p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ════════════════════════ SITUAÇÕES (cases) ════════════════════════ */
.cases { padding: 0 0 112px; background: var(--paper); }
.cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) { .cases__grid { grid-template-columns: 5fr 6fr; gap: 72px; } }
.cases__media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cases__media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 8%;
  background: var(--paper-2);
  transition: transform var(--t-slow) var(--ease-out);
}
.cases__media-frame:hover img { transform: scale(1.03); }
.cases__lead { font-size: 16px; line-height: 1.7; color: var(--muted); margin: -8px 0 8px; }

.cases__list { margin-top: 28px; }
.cases__list li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.cases__list li:last-child { border-bottom: 1px solid var(--line); }
.cases__list h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.cases__list h3::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 10px; height: 10px;
  border: 1.5px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}
.cases__list p { font-size: 14.5px; line-height: 1.6; color: var(--muted); padding-left: 22px; }

/* ════════════════════════ CUIDADO ════════════════════════ */
.care { padding: 108px 0 116px; background: var(--paper-2); }
.care__head { max-width: 780px; margin-bottom: 60px; }
.care__intro { font-size: 17px; line-height: 1.72; color: var(--muted); margin-top: -8px; }

.care__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 680px) { .care__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .care__grid { grid-template-columns: repeat(3, 1fr); } }
.care__item {
  background: var(--paper);
  padding: 40px 34px 44px;
  transition: background var(--t) var(--ease);
}
.care__item:hover { background: #fff; }
.care__num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 26px;
  letter-spacing: .04em;
}
.care__item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(21px, 2.4vw, 25px);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.care__item p { font-size: 14.5px; line-height: 1.62; color: var(--muted); }

/* ════════════════════════ AUTORIDADE ════════════════════════ */
.authority {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.authority::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 20%, rgba(200,131,101,.16), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(200,131,101,.10), transparent 55%);
  pointer-events: none;
}
.authority__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) { .authority__grid { grid-template-columns: 5fr 7fr; gap: 76px; } }
.authority__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.authority__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
}
.authority__body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245,242,238,.78);
  max-width: 560px;
  margin-bottom: 30px;
}
.authority__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
  color: var(--paper);
  padding-left: 26px;
  border-left: 2px solid var(--accent);
  max-width: 600px;
}

/* ════════════════════════ SAÚDE SISTÊMICA ════════════════════════ */
.systemic {
  padding: 100px 0;
  background:
    radial-gradient(70% 60% at 90% 0%, rgba(216,225,222,.55), transparent 60%),
    radial-gradient(60% 55% at 5% 100%, rgba(237,217,210,.45), transparent 58%),
    var(--paper);
}
.systemic__head { max-width: 760px; margin-bottom: 52px; }
.systemic__intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 18px;
}
.systemic__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .systemic__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .systemic__grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.systemic__item {
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.systemic__icon {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--rose);
  color: var(--accent-2);
  margin-bottom: 16px;
}
.systemic__icon svg { width: 22px; height: 22px; }
.systemic__item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 9px;
  color: var(--ink);
}
.systemic__item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.systemic__close {
  max-width: 820px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink);
}
.systemic__close strong { color: var(--accent-2); font-weight: 600; }

/* ════════════════════════ AVALIAÇÃO ════════════════════════ */
.evaluate { padding: 110px 0; background: var(--paper); }
.evaluate__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 980px) { .evaluate__grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
@media (min-width: 980px) { .evaluate__intro { position: sticky; top: 110px; } }

.evaluate__lead { font-size: 16.5px; line-height: 1.7; color: var(--muted); margin: -8px 0 28px; }
.evaluate__lead strong { color: var(--ink); font-weight: 600; }
.evaluate__points { display: flex; flex-direction: column; gap: 14px; }
.evaluate__points li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--muted);
}
.evaluate__points li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--rose);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8674C' stroke-width='3'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.quiz {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 560px) { .quiz { padding: 40px 38px; } }
.quiz__field { margin-bottom: 28px; }
.quiz__field legend {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__options--row { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 560px) { .quiz__options--row { grid-template-columns: 1fr 1fr; } }

.opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.opt:hover { border-color: var(--accent-soft); background: var(--paper); }
.opt input {
  appearance: none; -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  border: 1.5px solid var(--muted-soft);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--t) var(--ease);
}
.opt input:checked { border-color: var(--accent); }
.opt input:checked::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--accent);
}
.opt:has(input:checked) { border-color: var(--accent); background: var(--rose); }
.opt--error { border-color: #cf6b5a; background: #fbeae6; }
.quiz__name--error input { border-color: #cf6b5a; background: #fbeae6; }

.quiz__name { display: block; margin-bottom: 24px; }
.quiz__name span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}
.quiz__name input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.quiz__name input:focus { outline: none; border-color: var(--accent); background: #fff; }
.quiz__name input::placeholder { color: var(--muted-soft); }

.quiz .btn--full { padding: 18px 26px; font-size: 15px; }
.quiz__note {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted-soft);
}

/* ════════════════════════ LOCALIZAÇÃO ════════════════════════ */
.location { padding: 0 0 112px; background: var(--paper); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) { .location__grid { grid-template-columns: 1fr 1.15fr; gap: 64px; } }
.location__meta { margin: 8px 0 30px; }
.location__meta > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.location__meta > div:first-child { border-top: 1px solid var(--line); }
.location__meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.location__meta dd { font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.location__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: saturate(.85);
}
@media (min-width: 980px) { .location__map iframe { height: 460px; } }

/* ════════════════════════ FAQ ════════════════════════ */
.faq { padding: 104px 0 112px; background: var(--paper-2); }
.faq .section-title { margin-bottom: 48px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.faq__item[open] { border-color: var(--accent-soft); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C88365' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--t) var(--ease);
}
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__body { padding: 0 28px 26px; }
.faq__body p { font-size: 15.5px; line-height: 1.7; color: var(--muted); max-width: 640px; }

/* ════════════════════════ FOOTER ════════════════════════ */
.footer { background: var(--ink); color: var(--paper); padding: 64px 0 36px; }
.footer__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 768px) { .footer__grid { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__brand img { height: 76px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; color: rgba(245,242,238,.62); max-width: 360px; line-height: 1.5; }
.footer__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(245,242,238,.5);
}
@media (min-width: 768px) { .footer__copy { flex-direction: row; justify-content: space-between; } }

/* ════════════════════════ WHATSAPP FLOAT ════════════════════════ */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: #fff;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.wa-float::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid #25D366;
  animation: wa-pulse 2.6s var(--ease) infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
@media (min-width: 768px) { .wa-float { right: 28px; bottom: 28px; width: 62px; height: 62px; } }
