/* ===================================================================
   Isabela Cytryn — Psicóloga | Design tokens + estilos
   =================================================================== */

:root {
  --color-bg: #FCFAF6;
  --color-bg-alt: #F5F1EB;
  --color-bg-alt-2: #F0EBE5;
  --color-text: #1A2B27;
  --color-text-secondary: #3F4A40;
  --color-text-muted: #656B5B;
  --color-text-muted-2: #52604F;
  --color-brand: #5F6B57;
  --color-on-brand: #FCFAF6;
  --color-on-brand-soft: #EAEAE3;
  --color-on-brand-soft-2: #EAECE5;
  --color-on-brand-tint: #C6CCBC;
  --color-on-brand-tint-2: #B9C2AE;
  --color-on-brand-tint-3: #9EAA8F;
  --color-icon-bg: #EDEDE1;

  --font-display: "Newsreader", serif;
  --font-body: "Karla", system-ui, sans-serif;

  --max-width: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-brand);
  color: var(--color-on-brand);
  padding: 12px 20px;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-on-brand);
}
.btn-primary:hover {
  background: var(--color-brand);
  color: var(--color-on-brand);
  transform: translateY(-2px);
}

.btn-invert {
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-weight: 600;
}
.btn-invert:hover {
  background: #FFFFFF;
  color: var(--color-text);
  transform: translateY(-2px);
}

.btn-outline {
  min-height: 44px;
  padding: 15px 28px;
  border: 1px solid rgba(26, 43, 39, 0.3);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 240ms ease, color 240ms ease;
}
.btn-outline:hover {
  background: var(--color-brand);
  color: var(--color-on-brand);
}

.link-underline {
  border-bottom: 1px solid rgba(26, 43, 39, 0.25);
  padding-bottom: 3px;
  font-size: 14.5px;
  color: var(--color-text-secondary);
}

.link-brand-underline {
  color: var(--color-brand);
  border-bottom: 1px solid rgba(95, 107, 87, 0.35);
  padding-bottom: 4px;
  font-weight: 500;
}

.eyebrow {
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 34px;
}

.eyebrow-on-brand {
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-on-brand-soft-2);
  margin: 0 0 26px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 43, 39, 0.10);
}

.site-header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text);
}
.logo-title {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 5px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
}
.main-nav a:not(.btn) {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
}
.main-nav .btn { font-size: 13px; letter-spacing: 0.02em; }

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0;
}
.hero .container {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 72px;
  align-items: end;
}
.hero-copy {
  flex: 1 1 420px;
  min-width: 0;
  animation: riseIn 800ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-identity {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-brand);
  margin: 0 0 30px;
  letter-spacing: 0.01em;
  max-width: 40em;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-text);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-brand);
}
.hero-lead {
  font-size: 17.5px;
  line-height: 1.62;
  color: var(--color-text-secondary);
  margin: 34px 0 0;
  max-width: 46ch;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-media {
  flex: 1 1 300px;
  max-width: 440px;
  position: relative;
}
.hero-media img {
  width: 100%;
  max-width: 454px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 22%;
  border-radius: 2px;
}

/* ---------- Section: Sinais ---------- */

.section-alt { background: var(--color-bg-alt); }
.section { padding: 108px 0; }
.section-lg { padding: 112px 0; }

.section-intro-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 32px 60px;
  align-items: end;
  margin-bottom: 52px;
}
.section-intro-row h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--color-text);
}
.section-intro-row > p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
  font-weight: 400;
  max-width: 40ch;
}

.card-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 22px;
}
.card {
  background: var(--color-bg);
  border-radius: 3px;
  padding: 32px 30px;
}
.card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.card-icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
}
.card-quote {
  font-family: var(--font-display);
  font-size: 17.5px;
  line-height: 1.4;
  color: var(--color-text);
  margin: 4px 0 0;
  font-weight: 400;
}
.card-desc {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--color-text-muted-2);
  margin: 0;
  font-weight: 300;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 43, 39, 0.1);
}

.section-footer-link { margin-top: 44px; }

/* Bolinhas de navegação (compartilhado entre carrosséis de Sinais e Depoimentos) */
.carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(26, 43, 39, 0.18);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}
.carousel-dot.is-active {
  width: 24px;
  background: var(--color-brand);
}

/* No mobile, os cards de "Sinais" viram um carrossel de 1 por vez com autoplay */
@media (max-width: 640px) {
  .card-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card-grid .card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}

/* ---------- Section: Abordagem (dark) ---------- */

.section-dark {
  background: var(--color-brand);
  color: var(--color-bg-alt);
}
.section-dark h2, .section-dark h3 { color: var(--color-on-brand); }

.section-dark .section-intro-row {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 241, 235, 0.18);
}
.section-dark .section-intro-row > p {
  color: var(--color-on-brand-soft);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
  max-width: none;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 44px 48px;
  padding: 64px 0;
}
.value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  color: var(--color-on-brand-tint);
  margin: 0 0 18px;
  line-height: 1;
}
.value-grid h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.35;
}
.value-grid p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-on-brand-soft-2);
  margin: 0;
  font-weight: 300;
}

.demand-block { padding-top: 56px; border-top: 1px solid rgba(245, 241, 235, 0.18); }
.demand-head {
  display: flex;
  align-items: baseline;
  gap: 20px 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.demand-head .eyebrow-on-brand { color: var(--color-on-brand-tint-2); margin: 0; font-size: 11px; }
.demand-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.22;
  margin: 0;
}
.demand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 2px 56px;
}
.demand-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(245, 241, 235, 0.14);
}
.demand-item span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--color-on-brand-tint-3);
}
.demand-item p {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-on-brand);
  margin: 0;
  font-weight: 500;
}
.demand-item p .detail { color: var(--color-on-brand-tint-2); font-weight: 300; }

/* ---------- Section: Sobre mim ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 48px 76px;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}
.about-content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--color-text);
}
@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid > div:first-child {
    max-width: 340px;
  }
}
.about-content > p {
  font-size: 17px;
  line-height: 1.68;
  color: var(--color-text-secondary);
  margin: 0 0 40px;
  font-weight: 300;
  max-width: 56ch;
}
.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0 48px;
}
.credentials div {
  padding: 18px 0;
  border-top: 1px solid rgba(26, 43, 39, 0.14);
}
.credentials p:first-child { margin: 0; font-size: 15px; line-height: 1.5; color: var(--color-text); }
.credentials p:last-child { margin: 4px 0 0; font-size: 13px; color: var(--color-text-muted); }

/* ---------- Section: Onde atendo ---------- */

.locais-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.locais-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.14;
  margin: 0;
  color: var(--color-text);
}
.locais-head .eyebrow { margin-bottom: 22px; }
.locais-head p {
  font-size: 14.5px;
  color: var(--color-text-muted-2);
  margin: 0;
  font-weight: 300;
  max-width: 30ch;
}
.locais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  background: rgba(26, 43, 39, 0.14);
  border-top: 1px solid rgba(26, 43, 39, 0.14);
  border-bottom: 1px solid rgba(26, 43, 39, 0.14);
}
.local-card {
  background: var(--color-bg-alt);
  padding: 36px 34px 34px;
}
.local-card.online { background: var(--color-bg-alt-2); }
.local-card .tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 20px;
}
.local-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 27px;
  margin: 0 0 14px;
  color: var(--color-text);
}
.local-card address {
  font-style: normal;
}
.local-card address p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 6px;
  font-weight: 300;
}
.local-card address p.city {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 26px;
}
.local-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 26px;
  font-weight: 300;
}
.local-card .link-brand-underline {
  font-size: 14px;
  border-bottom-color: rgba(95, 107, 87, 0.3);
}

/* ---------- Section: Depoimentos (carrossel) ---------- */

.testimonials-section { background: #F0EBE1; }

.testimonials-head {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 52px;
}
.testimonials-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 0 14px;
}
.testimonials-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-arrow {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(26, 43, 39, 0.16);
  background: var(--color-bg);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.carousel-arrow:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-on-brand);
}
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.carousel-arrow:disabled:hover {
  background: var(--color-bg);
  border-color: rgba(26, 43, 39, 0.16);
  color: var(--color-text);
}

.testimonials-track {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  margin: -4px -4px -12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  flex: 1 1 calc(33.333% - 16px);
  min-width: min(280px, 100%);
  margin: 0;
  background: var(--color-bg);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(26, 43, 39, 0.07);
}
.testimonial-card .stars {
  color: #CBA135;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}
.testimonial-card figcaption {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}
@media (max-width: 640px) {
  .testimonial-card {
    flex-basis: 100%;
    min-width: 100%;
  }
}

.testimonials-footer {
  text-align: center;
  margin-top: 36px;
}

/* ---------- Section: Agendar (CTA, dark) ---------- */

.agendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 48px 76px;
  align-items: start;
}
.agendar-grid h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  margin: 0 0 30px;
}
.agendar-grid > div:first-child > p:first-of-type {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--color-on-brand-soft);
  margin: 0 0 38px;
  font-weight: 300;
  max-width: 40ch;
}
.agendar-contact {
  margin: 22px 0 0;
  font-size: 13.5px;
  color: var(--color-on-brand-soft-2);
}
.agendar-contact a { color: inherit; }
.agendar-contact a:hover { color: #FFFFFF; }

.steps-list > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(245, 241, 235, 0.18);
}
.steps-list > div:last-child { border-bottom: 1px solid rgba(245, 241, 235, 0.18); }
.steps-list .value-num { font-size: 32px; margin: 0; }
.steps-list h3 { font-size: 16.5px; font-weight: 600; margin: 0 0 10px; }
.steps-list p { font-size: 15px; line-height: 1.62; color: var(--color-on-brand-soft-2); margin: 0; font-weight: 300; }

/* ---------- Section: Dúvidas (FAQ) ---------- */

.faq-section .container { max-width: 760px; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head h2 {
  font-family: var(--font-display);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.faq-item {
  border-top: 1px solid rgba(26, 43, 39, 0.14);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(26, 43, 39, 0.14);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-plus {
  font-size: 20px;
  color: var(--color-text-muted);
  transition: transform 220ms ease;
  line-height: 1;
  flex: none;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--color-text-muted-2);
  font-weight: 300;
  max-width: 62ch;
}

/* ---------- Section: Podcast ---------- */

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 44px 64px;
  align-items: center;
}
.podcast-grid h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.14;
  margin: 0 0 22px;
  color: var(--color-text);
}
.podcast-grid > div:first-child > p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  font-weight: 300;
  max-width: 52ch;
}
.podcast-embed {
  width: 100%;
  aspect-ratio: 624 / 351;
  min-height: 232px;
}
.podcast-embed iframe {
  border: 0;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  box-shadow: 0 12px 32px rgba(26, 43, 39, 0.12);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-brand);
  color: #EFF1EA;
  padding: 76px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 44px 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 241, 235, 0.16);
}
.footer-brand p:first-child {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-on-brand);
  margin: 0 0 6px;
}
.footer-brand .footer-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-on-brand-soft-2);
  margin: 0 0 22px;
}
.footer-brand > p:last-child {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-on-brand-soft-2);
  margin: 0;
  font-weight: 300;
  max-width: 42ch;
}
.footer-col .col-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-on-brand-soft-2);
  margin: 0 0 20px;
}
.footer-col p { margin: 0 0 10px; font-size: 15px; }
.footer-col a { color: var(--color-bg-alt); }
.footer-col a:hover { color: #FFFFFF; }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col address { font-style: normal; }
.footer-col address p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-on-brand-soft-2);
  font-weight: 300;
}
.footer-copyright {
  margin: 28px 0 0;
  font-size: 12.5px;
  color: var(--color-on-brand-soft-2);
}
.footer-copyright a {
  color: var(--color-on-brand-soft-2);
  text-decoration: underline;
}
.footer-copyright a:hover { color: #FFFFFF; }

/* ---------- Sticky WhatsApp button ---------- */

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-brand);
  color: var(--color-on-brand);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 999px;
  min-height: 44px;
  box-shadow: 0 10px 30px rgba(26, 43, 39, 0.22);
  transition: transform 240ms ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  background: var(--color-brand);
  color: var(--color-on-brand);
}

/* ---------- Página legal (Política de Privacidade) ---------- */

.legal-page {
  padding: 168px 0 112px;
}
.legal-page .container {
  max-width: 720px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.14;
  margin: 0 0 12px;
  color: var(--color-text);
}
.legal-page .legal-updated {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 48px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin: 40px 0 14px;
  color: var(--color-text);
}
.legal-page p {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
  font-weight: 300;
}
.legal-page ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.legal-page li {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--color-text-secondary);
  font-weight: 300;
  margin-bottom: 6px;
}
.legal-page a { font-weight: 400; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy { animation: none; }
  .btn, .whatsapp-fab, .faq-item .faq-plus, a { transition: none; }
}
