/* ==========================================================================
   Patricia Medeiros — Massagem Terapêutica
   Folha de estilos principal
   Índice:
   1. Reset & Base
   2. Tokens de design (cores, tipografia, espaçamento)
   3. Utilitários
   4. Acessibilidade
   5. Cabeçalho / Navegação
   6. Hero
   7. Sobre Mim
   8. Serviços
   9. Preços
   10. Espaço (galeria)
   11. Perguntas Frequentes
   12. Contacto
   13. Rodapé
   14. Botão flutuante WhatsApp
   15. Animações
   16. Responsividade
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. Reset & Base                                                        */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }

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

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; color: inherit; }

button { cursor: pointer; background: none; border: none; }

/* ---------------------------------------------------------------------- */
/* 2. Tokens de design                                                    */
/* ---------------------------------------------------------------------- */
:root {
  /* Paleta — derivada da identidade visual da marca (verde-sálvia + dourado) */
  --sage-50:   #f2f7f4;
  --sage-100:  #e2ede7;
  --sage-300:  #a9c7ba;
  --sage-500:  #6e9b85;   /* verde principal */
  --sage-700:  #4c7364;
  --sage-900:  #2f4a3d;   /* verde profundo, texto/títulos */

  --gold-300:  #e3c793;
  --gold-500:  #b98d4f;   /* dourado da marca */
  --gold-700:  #8f6a37;

  --blush-300: #e7cdc0;   /* acento quente e suave */

  --cream-50:  #fdfbf7;
  --cream-100: #faf5ec;
  --cream-200: #f2ebdd;

  --ink-900:   #2b2823;   /* texto principal */
  --ink-600:   #5c574e;   /* texto secundário */
  --ink-300:   #9a9285;

  --white:     #ffffff;

  /* Tipografia */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Jost", "Segoe UI", sans-serif;

  /* Espaçamento */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 10px;
  --radius-md: 22px;
  --radius-lg: 46px;
  --radius-full: 999px;

  /* Sombra */
  --shadow-soft: 0 20px 60px -25px rgba(47, 74, 61, 0.35);
  --shadow-card: 0 10px 30px -15px rgba(47, 74, 61, 0.25);

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--sage-900);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 4.1rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }

p { color: var(--ink-600); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-600);
  max-width: 46ch;
}

/* ---------------------------------------------------------------------- */
/* 3. Utilitários                                                         */
/* ---------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: var(--space-2xl); position: relative; }
.section--alt { background: var(--cream-200); }
.section--sage {
  background: linear-gradient(165deg, var(--sage-900), var(--sage-700) 70%);
  color: var(--cream-50);
}
.section--sage h2, .section--sage h3 { color: var(--cream-50); }
.section--sage p { color: rgba(253, 251, 247, 0.78); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-lg);
}
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}
.section--sage .eyebrow { color: var(--gold-300); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--sage-700);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn--primary:hover { background: var(--sage-900); box-shadow: var(--shadow-soft); }

.btn--ghost {
  background: transparent;
  color: var(--sage-900);
  border: 1.5px solid var(--sage-300);
}
.btn--ghost:hover { background: var(--sage-50); border-color: var(--sage-500); }

.btn--on-dark { background: var(--gold-500); color: var(--sage-900); }
.btn--on-dark:hover { background: var(--gold-300); }

.btn--sm { padding: 0.65em 1.3em; font-size: 0.85rem; }

.tag {
  display: inline-block;
  padding: 0.35em 0.9em;
  border-radius: var(--radius-full);
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.divider-flow {
  display: block;
  width: 100%;
  height: auto;
  color: var(--sage-300);
}

/* Revelação ao scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------- */
/* 4. Acessibilidade                                                      */
/* ---------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--sage-900);
  color: var(--white);
  padding: 1em 1.5em;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

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

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

/* ---------------------------------------------------------------------- */
/* 5. Cabeçalho / Navegação                                               */
/* ---------------------------------------------------------------------- */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  padding-block: 1.1rem;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.header.is-scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -20px rgba(47,74,61,0.4);
  padding-block: 0.65rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__logo {
  height: 52px;
  width: auto;
  transition: height var(--dur) var(--ease);
}
.header.is-scrolled .brand__logo { height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sage-900);
}
.brand__subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__list {
  display: flex;
  gap: var(--space-md);
}
.nav__link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-900);
  position: relative;
  padding-block: 0.3rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-500);
  transition: width var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--sage-700); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 600;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--sage-900);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------- */
/* 6. Hero                                                                */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: var(--space-2xl);
  background:
    radial-gradient(ellipse 60% 50% at 85% 8%, var(--sage-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-100), var(--cream-50) 70%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: var(--space-xl);
}

.hero__eyebrow { margin-bottom: var(--space-md); }

.hero__title { margin-bottom: var(--space-md); }
.hero__title em {
  font-style: italic;
  color: var(--gold-700);
}

.hero__lead {
  margin-bottom: var(--space-lg);
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.2rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--sage-900);
  font-weight: 500;
}
.hero__trust-item svg {
  width: 22px; height: 22px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__blob {
  position: absolute;
  inset: -8% -12%;
  color: var(--sage-100);
  z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: min(420px, 90%);
}
.hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.9;
  border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream-50);
}
.hero__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  z-index: 2;
  bottom: 6%;
  left: -6%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 230px;
}
.hero__badge svg { width: 34px; height: 34px; color: var(--sage-500); flex-shrink: 0; }
.hero__badge strong { display: block; font-size: 0.88rem; color: var(--sage-900); }
.hero__badge span { font-size: 0.76rem; color: var(--ink-600); }

/* ---------------------------------------------------------------------- */
/* 7. Sobre Mim                                                           */
/* ---------------------------------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/3.6;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }

.about__creds {
  margin-top: var(--space-lg);
  display: grid;
  gap: 0.9rem;
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.cred svg { width: 26px; height: 26px; color: var(--sage-500); flex-shrink: 0; margin-top: 2px; }
.cred strong { display: block; color: var(--sage-900); font-size: 0.96rem; }
.cred span { font-size: 0.85rem; color: var(--ink-600); }

/* ---------------------------------------------------------------------- */
/* 8. Serviços                                                            */
/* ---------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sage-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--sage-700); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; flex-grow: 1; margin-bottom: 1.1rem; }
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-200);
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-700);
  font-weight: 600;
}
.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-700);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.service-card__link:hover svg { transform: translateX(3px); }

.service-card--featured {
  background: linear-gradient(165deg, var(--sage-700), var(--sage-900));
  color: var(--cream-50);
}
.service-card--featured h3, .service-card--featured .service-card__price { color: var(--cream-50); }
.service-card--featured p { color: rgba(253,251,247,0.8); }
.service-card--featured .service-card__icon { background: rgba(255,255,255,0.14); }
.service-card--featured .service-card__icon svg { color: var(--gold-300); }
.service-card--featured .service-card__footer { border-top-color: rgba(255,255,255,0.18); }
.service-card--featured .service-card__link { color: var(--gold-300); }

/* ---------------------------------------------------------------------- */
/* 9. Horários                                                            */
/* ---------------------------------------------------------------------- */
.schedule__card {
  background: var(--cream-50);
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.schedule__title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.schedule__subtitle {
  text-align: center;
  margin: 0 auto var(--space-lg);
}
.schedule__list {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin-inline: auto;
}
.schedule__row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 0.2rem;
  border-bottom: 1px dashed var(--sage-300);
  transition: background var(--dur) var(--ease);
  border-radius: 8px;
}
.schedule__row:last-of-type { border-bottom: none; }
.schedule__day {
  font-weight: 500;
  color: var(--ink-900);
  white-space: nowrap;
}
.schedule__fill {
  flex: 1;
  border-bottom: 1px dotted var(--ink-300);
  transform: translateY(-4px);
}
.schedule__hours {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--sage-700);
  white-space: nowrap;
}
.schedule__row--closed .schedule__hours { color: var(--ink-300); font-style: italic; font-weight: 500; }

.schedule__row.is-today {
  background: var(--sage-50);
  padding-inline: 1rem;
}
.schedule__row.is-today .schedule__day::after {
  content: "Hoje";
  margin-left: 0.6rem;
  display: inline-block;
  padding: 0.15em 0.6em;
  border-radius: var(--radius-full);
  background: var(--gold-500);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.schedule__cta {
  margin: var(--space-lg) auto 0;
  max-width: 720px;
  background: var(--sage-900);
  color: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.schedule__cta h4 { font-family: var(--font-display); font-style: italic; color: var(--gold-300); margin-bottom: 0.3rem; }
.schedule__cta p { color: rgba(253,251,247,0.82); font-size: 0.9rem; max-width: 42ch; }

/* ---------------------------------------------------------------------- */
/* 10. Espaço (galeria)                                                   */
/* ---------------------------------------------------------------------- */
.space__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}
.space__gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}
.space__gallery img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.space__gallery-main { grid-row: span 2; aspect-ratio: 3/4; }
.space__gallery-sub { aspect-ratio: 1/1.05; }

.space__list { margin-top: var(--space-md); display: grid; gap: 0.9rem; }
.space__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink-900);
  font-weight: 500;
  font-size: 0.96rem;
}
.space__list svg { width: 22px; height: 22px; color: var(--sage-500); flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* 11. Perguntas Frequentes                                               */
/* ---------------------------------------------------------------------- */
.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--sage-900);
  font-weight: 600;
}
.faq__question svg {
  width: 20px; height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.faq__item[data-open="true"] .faq__question svg { transform: rotate(45deg); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}
.faq__item[data-open="true"] .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer p {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.94rem;
}

/* ---------------------------------------------------------------------- */
/* 12. Contacto                                                           */
/* ---------------------------------------------------------------------- */
.contact__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-xl);
}

.contact__info-list { display: grid; gap: 1.4rem; margin-top: var(--space-md); }
.contact__info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__info-item svg { width: 26px; height: 26px; color: var(--gold-300); flex-shrink: 0; margin-top: 3px; }
.contact__info-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact__info-item p, .contact__info-item a { font-size: 0.9rem; color: rgba(253,251,247,0.8); }
.contact__info-item a:hover { color: var(--gold-300); }

.contact__socials { display: flex; gap: 0.8rem; margin-top: var(--space-lg); }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social-btn svg { width: 20px; height: 20px; color: var(--cream-50); }
.social-btn:hover { background: var(--gold-500); transform: translateY(-3px); }

.contact__map {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact__map iframe { width: 100%; height: 260px; border: 0; display: block; }

.contact__form-wrap {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
  color: var(--ink-900);
}
.contact__form-wrap h3 { margin-bottom: 0.4rem; }
.contact__form-wrap > p { margin-bottom: var(--space-md); font-size: 0.9rem; }

.form-grid { display: grid; gap: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--sage-900); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sage-100);
  background: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sage-500);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-300);
}
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ---------------------------------------------------------------------- */
/* 13. Rodapé                                                             */
/* ---------------------------------------------------------------------- */
.footer {
  background: var(--sage-900);
  color: rgba(253,251,247,0.75);
  padding-top: var(--space-xl);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer__brand img { height: 44px; }
.footer__brand span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-50);
  font-size: 1.1rem;
}
.footer__desc { font-size: 0.88rem; max-width: 32ch; }

.footer__heading {
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer__list { display: grid; gap: 0.65rem; font-size: 0.88rem; }
.footer__list a:hover { color: var(--gold-300); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 1.4rem;
  font-size: 0.8rem;
}
.footer__bottom a:hover { color: var(--gold-300); }

/* ---------------------------------------------------------------------- */
/* 14. Botão flutuante WhatsApp                                           */
/* ---------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 400;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #3fae5e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(47,74,61,0.55);
  animation: pulse-ring 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
.whatsapp-float:hover { transform: scale(1.06); }

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(47,74,61,0.55), 0 0 0 0 rgba(63,174,94,0.45); }
  50% { box-shadow: 0 12px 30px -8px rgba(47,74,61,0.55), 0 0 0 12px rgba(63,174,94,0); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}

/* ---------------------------------------------------------------------- */
/* 15. Animações                                                          */
/* ---------------------------------------------------------------------- */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------------------------------------------------------------------- */
/* 16. Modal — Marcar Consulta (Formulário ou WhatsApp)                   */
/* ---------------------------------------------------------------------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.booking-modal.is-open { visibility: visible; opacity: 1; }

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 40, 35, 0.55);
  backdrop-filter: blur(3px);
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 2.6rem);
  box-shadow: var(--shadow-soft);
  transform: translateY(18px) scale(0.98);
  transition: transform var(--dur) var(--ease);
}
.booking-modal.is-open .booking-modal__panel { transform: translateY(0) scale(1); }

.booking-modal__close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-600);
  background: var(--cream-200);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.booking-modal__close svg { width: 16px; height: 16px; }
.booking-modal__close:hover { background: var(--sage-100); color: var(--sage-900); }

.booking-modal__lead {
  margin-top: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: 0.92rem;
}

.booking-modal__options {
  display: grid;
  gap: 0.9rem;
}
.booking-modal__option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--sage-100);
  background: var(--white);
  text-align: left;
  width: 100%;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.booking-modal__option:hover {
  border-color: var(--sage-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.booking-modal__option svg { width: 30px; height: 30px; color: var(--sage-600, var(--sage-700)); flex-shrink: 0; }
.booking-modal__option strong { display: block; color: var(--sage-900); font-size: 1rem; }
.booking-modal__option small { display: block; color: var(--ink-600); font-size: 0.8rem; margin-top: 0.15rem; }
#bookingWhatsappLink svg { color: #3fae5e; }
#bookingOnlineLink svg { color: var(--gold-500); }

/* ---------------------------------------------------------------------- */
/* 17. Responsividade                                                     */
/* ---------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 380px; margin-inline: auto; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; margin-inline: auto; }
  .space__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__list { display: none; }
  .nav__toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 32%;
    background: var(--cream-50);
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    box-shadow: -10px 0 40px -20px rgba(0,0,0,0.3);
  }
  .nav.is-open { transform: translateX(0); }
  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem;
  }
  .nav__link { font-size: 1.1rem; }
  .header__inner .btn--primary.hero-cta-nav { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .pricing__special { flex-direction: column; align-items: flex-start; }
  .space__gallery { grid-template-columns: 1fr 1fr; }
  .space__gallery-main { grid-row: span 1; aspect-ratio: 1/1.1; }
}

@media (max-width: 480px) {
  .hero__badge { left: 0; max-width: 190px; padding: 0.8rem 1rem; }
  .section { padding-block: var(--space-xl); }
}
