/* =========================================================
   DOCE PSICÓLOGA · landing page
   palette: cream + dusty rose + sage + lavender
   ========================================================= */

:root {
  /* core palette */
  --cream:        #FBF6F0;
  --cream-2:      #F6EEE3;
  --blush:        #F5DDD9;
  --rose:         #E8B4B8;
  --rose-deep:    #C9879A;
  --sand:         #F0E0CC;
  --lavender:     #C7B8E0;
  --sage:         #B8C9A6;
  --gold:         #C9A961;

  --ink:          #4A3A4D;
  --ink-soft:     #6B5870;
  --ink-mute:     #8E7A92;
  --line:         #E9DDD2;

  --shadow-sm: 0 4px 14px -8px rgba(74,58,77,.18);
  --shadow-md: 0 22px 50px -28px rgba(74,58,77,.28), 0 6px 16px -8px rgba(74,58,77,.12);
  --shadow-lg: 0 40px 80px -40px rgba(74,58,77,.40), 0 14px 30px -14px rgba(74,58,77,.18);

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --hand:  'Caveat', cursive;

  --container: 1400px;

  --wave-1: radial-gradient(1200px 600px at 10% -10%, #F5DDD9 0%, transparent 60%),
            radial-gradient(900px 500px at 110% 20%, #E8D9F0 0%, transparent 60%),
            radial-gradient(800px 600px at 50% 110%, #F0E0CC 0%, transparent 60%);
}

/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image: var(--wave-1);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--rose); color: #fff; }

/* ===== typography ===== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.12; }
h3 { font-size: 1.35rem; line-height: 1.3; }
em { font-style: italic; color: var(--rose-deep); }
.hand { font-family: var(--hand); font-weight: 600; color: var(--rose-deep); font-size: 1.15em; }

.ink-underline {
  position: relative;
  display: inline-block;
}
.ink-underline::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 6%;
  height: 28%;
  background: linear-gradient(90deg, var(--blush), var(--rose) 60%, var(--lavender));
  border-radius: 8px;
  z-index: -1;
  transform: rotate(-1deg);
  opacity: .7;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-soft);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(232,180,184,.4);
  padding: .5rem .9rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(184,201,166,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--hand);
  color: var(--rose-deep);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: .25rem;
  letter-spacing: .02em;
}
.section-eyebrow.center { display: block; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.section-title.center { text-align: center; }
.section-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== layout ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 2.5rem); }
.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
section { padding: clamp(4.5rem, 8vw, 8rem) 0; position: relative; }

/* fieldset shrink fix (used by booking panels) */
fieldset { min-width: 0; }

/* ===== buttons ===== */
.btn {
  --bg: var(--rose-deep);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 14px 30px -14px rgba(201,135,154,.7), inset 0 -2px 0 rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -16px rgba(201,135,154,.85), inset 0 -2px 0 rgba(0,0,0,.06);
}
.btn:active { transform: translateY(0); }
.btn--primary { background: linear-gradient(180deg, var(--rose) 0%, var(--rose-deep) 100%); }
.btn--ghost {
  background: rgba(255,255,255,.85);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: #fff; box-shadow: var(--shadow-md); }
.btn--small { padding: .6rem 1rem; font-size: .9rem; }
.btn--whatsapp {
  background: linear-gradient(180deg, #25D366 0%, #1da851 100%);
  box-shadow: 0 18px 40px -14px rgba(37,211,102,.6), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn--whatsapp:hover { box-shadow: 0 26px 50px -16px rgba(37,211,102,.7), inset 0 -2px 0 rgba(0,0,0,.08); }
.btn--inline { margin-top: 1.25rem; }

/* ===== background decoration ===== */
.bg-decor {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  animation: float 18s ease-in-out infinite;
}
.blob--1 { width: 520px; height: 520px; background: var(--rose); top: -120px; left: -160px; }
.blob--2 { width: 440px; height: 440px; background: var(--lavender); top: 30%; right: -180px; animation-delay: -4s; }
.blob--3 { width: 380px; height: 380px; background: var(--sage); bottom: 5%; left: -140px; animation-delay: -8s; }
.blob--4 { width: 480px; height: 480px; background: var(--sand); bottom: -160px; right: -120px; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184,201,166,.25); }
  50%      { box-shadow: 0 0 0 9px rgba(184,201,166,.0); }
}

/* ===== nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(12px);
  background: rgba(251,246,240,.7);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.is-stuck {
  background: rgba(251,246,240,.92);
  border-bottom-color: var(--line);
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: .65rem;
  margin-right: auto;
}
.nav__logo {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--rose), var(--rose-deep));
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(201,135,154,.6);
}
.nav__logo svg { width: 22px; height: 22px; }
.nav__name { display: flex; flex-direction: column; line-height: 1; font-family: var(--serif); }
.nav__name small { font-family: var(--hand); color: var(--rose-deep); font-size: 1rem; }
.nav__name strong { font-weight: 500; font-size: 1.2rem; letter-spacing: .01em; }

.nav__links { display: flex; gap: 1.5rem; font-size: .95rem; color: var(--ink-soft); font-weight: 500; }
.nav__links a { position: relative; padding: .25rem 0; transition: color .2s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--rose-deep); border-radius: 2px;
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ===== hero ===== */
.hero { padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(4rem, 8vw, 7rem); position: relative; }
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.hero__title { margin-top: 1.4rem; font-weight: 500; }
.hero__title em { font-style: italic; }
.hero__lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 52ch; margin: 1.4rem 0 2rem; }
.hero__lead strong { color: var(--ink); font-weight: 600; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero__trust {
  margin-top: 2.5rem;
  display: inline-flex; align-items: center; gap: 1.2rem;
  padding: .9rem 1.4rem;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.trust-item { display: flex; flex-direction: column; line-height: 1.15; }
.trust-item strong { font-family: var(--serif); color: var(--rose-deep); font-weight: 600; font-size: 1.05rem; }
.trust-item span { font-size: .8rem; color: var(--ink-mute); letter-spacing: .03em; }
.trust-divider { width: 1px; height: 28px; background: var(--line); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--rose-deep);
  border-radius: 999px;
  display: grid; place-items: center;
  opacity: .65;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--rose-deep);
  border-radius: 2px;
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0%   { transform: translateY(-6px); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ===== hero portrait ===== */
.hero__visual { display: grid; place-items: center; }
.portrait {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 4 / 5;
}
.portrait__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--blush), var(--sand) 60%, var(--lavender));
  border-radius: 240px 240px 60px 60px / 280px 280px 60px 60px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.portrait__bg::before {
  content: "";
  position: absolute; inset: -10% -10% auto auto;
  width: 70%; height: 60%;
  background: radial-gradient(closest-side, rgba(255,255,255,.6), transparent 70%);
}
.portrait__ring {
  position: absolute; inset: -22px;
  border: 1px dashed rgba(201,135,154,.45);
  border-radius: 260px 260px 80px 80px / 300px 300px 80px 80px;
  animation: spin 38s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.portrait__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 240px 240px 60px 60px / 280px 280px 60px 60px;
  box-shadow: 0 18px 36px -18px rgba(74,58,77,.35);
  filter: saturate(1.02);
}
/* fallback gentil se a imagem ainda não estiver na pasta */
.portrait__art:not([src]),
.portrait__art[src=""] { display: none; }

.float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .9rem 1rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  animation: floaty 6s ease-in-out infinite;
}
.float-card--quote {
  top: 14%; left: -5%;
  max-width: 220px;
  display: flex; gap: .65rem;
}
.float-card--quote p { margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.45; }
.float-card__icon {
  flex-shrink: 0; width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--blush); color: var(--rose-deep);
  border-radius: 10px;
}
.float-card--heart {
  bottom: 8%; right: -8%;
  display: flex; align-items: center; gap: .65rem;
  animation-delay: -3s;
}
.float-card--heart span { font-size: 1.5rem; }
.float-card--heart strong { display: block; font-family: var(--serif); font-size: 1rem; color: var(--ink); }
.float-card--heart small { color: var(--ink-mute); font-size: .8rem; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .portrait { width: min(80%, 380px); }
  .float-card--quote { left: -2%; }
  .float-card--heart  { right: -2%; }
}

/* ===== sobre ===== */
.sobre { padding-top: clamp(3rem, 6vw, 6rem); }
.sobre .check-list {
  list-style: none; padding: 0;
  margin: 1.6rem 0 0;
  display: grid; gap: .65rem;
}
.check-list li {
  display: flex; align-items: center; gap: .7rem;
  color: var(--ink-soft);
}
.check-list .check {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--rose-deep);
  border-radius: 50%;
  font-size: .9rem;
}

.sobre__visual { display: grid; gap: 1.2rem; }
.cred-card, .quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.cred-card { background: linear-gradient(180deg, #fff, var(--cream-2)); }
.cred-card__tag {
  position: absolute; top: -.7rem; left: 1.4rem;
  background: var(--rose-deep); color: #fff;
  padding: .25rem .8rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cred-card ul { list-style: none; padding: 0; margin: .5rem 0 0; display: grid; gap: .55rem; }
.cred-card li { display: flex; gap: .6rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); padding-bottom: .55rem; }
.cred-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.cred-card li strong { color: var(--ink); font-weight: 600; min-width: 110px; font-family: var(--serif); }

.quote-card { background: linear-gradient(160deg, var(--blush), var(--sand)); border: 0; }
.quote-card p { margin: 0; font-family: var(--serif); font-size: 1.4rem; color: var(--ink); font-style: italic; line-height: 1.4; }
.quote-card__mark { position: absolute; top: .5rem; left: 1rem; font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--rose-deep); opacity: .3; }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ===== cuidado ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
}
.care-card {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.care-card::before {
  content: ""; position: absolute; inset: auto -30% -30% auto;
  width: 200px; height: 200px;
  background: radial-gradient(closest-side, var(--blush), transparent 70%);
  opacity: .55; transition: transform .5s ease;
}
.care-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.care-card:hover::before { transform: scale(1.2) translate(-10%, -10%); }
.care-card__emoji {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  background: linear-gradient(160deg, var(--cream-2), var(--blush));
  border-radius: 18px;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}
.care-card h3 { margin-bottom: .35rem; }
.care-card p { color: var(--ink-soft); margin: 0; }

/* ===== sessoes ===== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--rose) 0 8px, transparent 8px 16px);
  opacity: .5;
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  margin: -3rem auto 1rem;
  background: linear-gradient(180deg, var(--rose), var(--rose-deep));
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 14px 28px -10px rgba(201,135,154,.6);
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step__num { margin-top: -2.4rem; }
}

/* ===== agendar ===== */
.agendar {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(245,221,217,.45) 30%, rgba(199,184,224,.35));
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.agendar__decor {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 10% 50%, rgba(232,180,184,.35), transparent 60%),
    radial-gradient(600px 300px at 90% 30%, rgba(199,184,224,.35), transparent 60%);
  pointer-events: none;
}

.booking {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.8rem);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;             /* contém o scroll das datas */
}

.booking__steps {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  position: relative;
}
.booking__steps::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 8%; right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.booking__step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.booking__step span {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s ease;
}
.booking__step.is-active span,
.booking__step.is-done span {
  background: linear-gradient(180deg, var(--rose), var(--rose-deep));
  border-color: var(--rose-deep);
  color: #fff;
}
.booking__step.is-active { color: var(--ink); }

.booking__panel {
  border: 0; padding: 0; margin: 0;
  min-width: 0;                  /* fieldset shrink fix */
  width: 100%;
  display: none;
  animation: panelIn .4s ease both;
}
.booking__panel.is-active { display: block; }
.booking__panel legend {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  padding: 0;
  margin-bottom: .35rem;
}
.booking__hint {
  margin: 0 0 1.2rem;
  color: var(--ink-mute);
  font-size: .95rem;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.moods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: .65rem;
  margin-bottom: 1.4rem;
}
.mood {
  display: grid; gap: .2rem;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem .6rem .85rem;
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
}
.mood input { position: absolute; opacity: 0; pointer-events: none; }
.mood__face { font-size: 1.8rem; line-height: 1; transition: transform .25s; }
.mood__label {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.mood:hover { transform: translateY(-2px); border-color: var(--rose); }
.mood:hover .mood__face { transform: scale(1.15) rotate(-4deg); }
.mood:has(input:checked) {
  background: linear-gradient(160deg, var(--blush), var(--sand));
  border-color: var(--rose-deep);
  box-shadow: 0 12px 24px -12px rgba(201,135,154,.6);
}
.mood:has(input:checked) .mood__face { transform: scale(1.18); }

.field { display: block; margin-top: 1rem; }
.field > span {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: .45rem;
}
.field > span em { color: var(--ink-mute); font-weight: 500; font-size: .85rem; }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(232,180,184,.25);
}

.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.choice {
  position: relative;
  display: grid;
  gap: .15rem;
  text-align: center;
  padding: 1.3rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  transition: all .25s ease;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__icon { font-size: 1.8rem; }
.choice strong { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.choice small { color: var(--ink-mute); font-size: .82rem; }
.choice:hover { transform: translateY(-2px); border-color: var(--rose); }
.choice:has(input:checked) {
  background: linear-gradient(160deg, var(--blush), var(--sand));
  border-color: var(--rose-deep);
  box-shadow: 0 12px 24px -12px rgba(201,135,154,.6);
}

.dates {
  display: flex;
  gap: .55rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: .5rem .25rem 1.2rem;
  margin: 0 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--rose) transparent;
  -webkit-overflow-scrolling: touch;
  /* fade nas bordas, dica visual de que rola */
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}
.dates::-webkit-scrollbar { height: 6px; }
.dates::-webkit-scrollbar-track { background: transparent; }
.dates::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

.date-chip {
  flex-shrink: 0;
  width: 78px;
  text-align: center;
  padding: .85rem .25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: all .25s ease;
  scroll-snap-align: start;
  position: relative;
}
.date-chip input { position: absolute; opacity: 0; pointer-events: none; }
.date-chip__weekday { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--ink-mute); text-transform: uppercase; }
.date-chip__day { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); line-height: 1.1; margin: .15rem 0; }
.date-chip__month { display: block; font-size: .72rem; color: var(--ink-mute); }
.date-chip:hover { transform: translateY(-2px); border-color: var(--rose); }
.date-chip:has(input:checked) {
  background: linear-gradient(180deg, var(--rose), var(--rose-deep));
  border-color: var(--rose-deep);
  box-shadow: 0 14px 26px -12px rgba(201,135,154,.6);
}
.date-chip:has(input:checked) span { color: #fff !important; }

.periods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-bottom: .8rem;
}
.period {
  position: relative;
  text-align: center;
  padding: .85rem .6rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: all .25s;
}
.period input { position: absolute; opacity: 0; pointer-events: none; }
.period span { display: block; font-weight: 600; color: var(--ink); }
.period small { color: var(--ink-mute); font-size: .8rem; }
.period:hover { border-color: var(--rose); }
.period:has(input:checked) {
  background: linear-gradient(160deg, var(--blush), var(--sand));
  border-color: var(--rose-deep);
}

.booking__actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.booking__actions .btn--primary { margin-left: auto; }

.booking__assure {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--ink-mute);
}

@media (max-width: 600px) {
  .choices { grid-template-columns: 1fr; }
  .periods { grid-template-columns: 1fr; }
  .booking__step { font-size: .72rem; }
  .booking__step span { width: 28px; height: 28px; }
}

/* ===== depoimentos ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 980px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .testimonials { grid-template-columns: 1fr; }
}
.testimonial {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem 1.8rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.testimonial::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--rose);
  margin: 0 0 -.5rem -.1rem;
  height: 1.6rem;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial blockquote {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}
.testimonial figcaption {
  font-family: var(--hand);
  color: var(--rose-deep);
  font-size: 1.2rem;
}
.depoimentos__note {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--ink-mute);
}

/* ===== faq ===== */
.accordion {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .6rem;
}
.acc-item {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.acc-item.is-open {
  border-color: var(--rose);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  text-align: left;
  font-weight: 500;
}
.acc-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--rose-deep);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform .3s, background .3s, color .3s;
}
.acc-item.is-open .acc-icon { transform: rotate(45deg); background: var(--rose-deep); color: #fff; }
.acc-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > * { overflow: hidden; }
.acc-panel p { margin: 0 1.4rem 1.2rem; color: var(--ink-soft); }

/* ===== footer ===== */
.footer {
  margin-top: 3rem;
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, transparent, var(--cream-2));
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__tag {
  margin-top: .75rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 30ch;
}
.footer h4 {
  font-size: 1rem;
  color: var(--rose-deep);
  letter-spacing: .04em;
}
.footer p { color: var(--ink-soft); margin: 0 0 .6rem; }
.footer a:hover { color: var(--rose-deep); }

.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
  color: var(--ink-mute);
}
.footer__love { font-family: var(--hand); font-size: 1.1rem; color: var(--rose-deep); }
.footer__love a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(201,135,154,.5);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s, opacity .2s;
}
.footer__love a:hover { color: var(--ink); border-color: var(--ink); }

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ===== modal de aviso ===== */
.notice {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.notice.is-open {
  opacity: 1;
  pointer-events: auto;
}
.notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 58, 77, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.notice__card {
  position: relative;
  width: min(100%, 480px);
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(.92) translateY(16px);
  opacity: 0;
  transition:
    transform .5s cubic-bezier(.2,.7,.25,1),
    opacity   .35s ease;
}
.notice.is-open .notice__card {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.notice__close {
  position: absolute;
  top: .75rem;
  right: .9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-mute);
  transition: background .2s, color .2s, transform .2s;
}
.notice__close:hover {
  background: var(--blush);
  color: var(--rose-deep);
  transform: rotate(90deg);
}
.notice__icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(160deg, var(--blush), var(--sand));
  border-radius: 50%;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6),
              0 12px 26px -10px rgba(201,135,154,.4);
}
.notice__card h2 {
  font-size: 1.7rem;
  margin-bottom: .8rem;
}
.notice__card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.6;
}
.notice__card p strong { color: var(--ink); font-weight: 600; }
.notice__card a {
  color: var(--rose-deep);
  font-weight: 600;
  border-bottom: 1px dashed rgba(201,135,154,.5);
  transition: color .2s, border-color .2s;
}
.notice__card a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.notice__cta {
  margin-top: .8rem;
  width: 100%;
  justify-content: center;
}

body.notice-open { overflow: hidden; }

/* ===== floating WA ===== */
.float-wa {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  z-index: 60;
  box-shadow: 0 18px 36px -12px rgba(18,140,126,.55);
  transition: transform .3s ease, box-shadow .3s ease;
}
.float-wa:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 26px 46px -14px rgba(18,140,126,.7); }
.float-wa__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.5);
  animation: pulseWa 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulseWa {
  0%   { transform: scale(.95); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(48px) scale(.985);
  filter: blur(2px);
  transition:
    opacity     .9s cubic-bezier(.2,.7,.25,1),
    transform   .9s cubic-bezier(.2,.7,.25,1),
    filter      .9s cubic-bezier(.2,.7,.25,1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* stagger nos grids/listas — cada irmão entra um pouquinho depois */
.cards-grid > .reveal.is-visible:nth-child(1) { transition-delay: 0ms; }
.cards-grid > .reveal.is-visible:nth-child(2) { transition-delay: 80ms; }
.cards-grid > .reveal.is-visible:nth-child(3) { transition-delay: 160ms; }
.cards-grid > .reveal.is-visible:nth-child(4) { transition-delay: 240ms; }
.cards-grid > .reveal.is-visible:nth-child(5) { transition-delay: 320ms; }
.cards-grid > .reveal.is-visible:nth-child(6) { transition-delay: 400ms; }
.cards-grid > .reveal.is-visible:nth-child(7) { transition-delay: 480ms; }
.cards-grid > .reveal.is-visible:nth-child(8) { transition-delay: 560ms; }

.steps > .reveal.is-visible:nth-child(1) { transition-delay: 0ms; }
.steps > .reveal.is-visible:nth-child(2) { transition-delay: 140ms; }
.steps > .reveal.is-visible:nth-child(3) { transition-delay: 280ms; }

.testimonials > .reveal.is-visible:nth-child(1) { transition-delay: 0ms; }
.testimonials > .reveal.is-visible:nth-child(2) { transition-delay: 90ms; }
.testimonials > .reveal.is-visible:nth-child(3) { transition-delay: 180ms; }
.testimonials > .reveal.is-visible:nth-child(4) { transition-delay: 270ms; }
.testimonials > .reveal.is-visible:nth-child(5) { transition-delay: 360ms; }
.testimonials > .reveal.is-visible:nth-child(6) { transition-delay: 450ms; }

.accordion > .reveal.is-visible:nth-child(1) { transition-delay: 0ms; }
.accordion > .reveal.is-visible:nth-child(2) { transition-delay: 70ms; }
.accordion > .reveal.is-visible:nth-child(3) { transition-delay: 140ms; }
.accordion > .reveal.is-visible:nth-child(4) { transition-delay: 210ms; }
.accordion > .reveal.is-visible:nth-child(5) { transition-delay: 280ms; }

.footer__grid > .reveal.is-visible:nth-child(1) { transition-delay: 0ms; }
.footer__grid > .reveal.is-visible:nth-child(2) { transition-delay: 100ms; }
.footer__grid > .reveal.is-visible:nth-child(3) { transition-delay: 200ms; }

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