/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blush: #f8e4e8;
  --blush-soft: #fdf3f1;
  --rose: #c98a9c;
  --rose-dark: #a8677c;
  --gold: #c9a05c;
  --plum: #2c2129;
  --ink: #3a2c33;
  --cream: #fffaf7;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;
  --shadow: 0 20px 40px -20px rgba(44, 33, 41, 0.25);
  --radius: 20px;
  --container: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.6);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose-dark);
}
.btn--ghost:hover { background: var(--blush); }

.btn--outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }

.btn--large { padding: 16px 32px; font-size: 1rem; }
.btn--small { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--plum);
  color: var(--blush);
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44,33,41,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--rose-dark); font-style: italic; }
.logo__icon {
  height: 40px;
  width: auto;
  display: block;
}
.logo--footer .logo__icon { height: 34px; }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rose-dark);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 88px;
  background: radial-gradient(circle at 15% 20%, var(--blush-soft), transparent 55%),
              radial-gradient(circle at 85% 0%, #fbeee5, transparent 45%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 16px;
}
.eyebrow--center { display: block; text-align: center; }

.hero__content h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 20px;
}
.hero__content h1 span { color: var(--rose-dark); font-style: italic; }

.hero__lead {
  font-size: 1.05rem;
  color: #5c4c54;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust__item { display: flex; flex-direction: column; }
.trust__item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--plum);
}
.trust__item span { font-size: 0.8rem; color: #7a6a70; }
.trust__divider {
  width: 1px;
  height: 32px;
  background: rgba(44,33,41,0.15);
}

.hero__visual { position: relative; }
.hero__portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-width: 460px;
  margin: 0 auto;
}
.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.collage__badge {
  position: absolute;
  bottom: 6%;
  left: 6%;
  right: 6%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
}
.collage__badge-emoji { font-size: 1.4rem; }
.collage__badge strong { display: block; font-size: 0.85rem; color: var(--plum); }
.collage__badge span { font-size: 0.78rem; color: #7a6a70; }

/* ---------- Section generic ---------- */
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 16px;
}
.section-title--left { text-align: left; }
.section-title--light { color: #fff; }
.section-lead {
  text-align: center;
  color: #6b5a61;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-lead--light { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.section-lead a { color: var(--gold); font-weight: 600; }

/* ---------- Services ---------- */
.services { padding: 100px 0; }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 30px -18px rgba(44,33,41,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -18px rgba(44,33,41,0.28);
}
.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--plum);
}
.service-card p {
  font-size: 0.9rem;
  color: #6b5a61;
  margin-bottom: 18px;
  min-height: 66px;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-dark);
}

.services__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #7a6a70;
}

/* ---------- Carro-chefe: os alongamentos ----------
   Sem caixa. Três faixas no fundo creme, preço em número grande de Playfair e a
   pincelada como divisória. O destaque vem da escala e do ar, não de um botão. */
.grupo-destaque { margin-top: 48px; }
.grupo-destaque .preco-grupo__head { margin-bottom: 8px; }
.destaque { max-width: 760px; margin: 0 auto; }

.destaque__linha {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 28px;
  align-items: start;
  width: 100%;
  padding: 26px 12px 24px;
  border: 0;
  border-radius: 14px;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: background-color 0.25s ease;
}
button.destaque__linha, a.destaque__linha { cursor: pointer; }

.destaque__nome {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 600;
  color: var(--plum);
  line-height: 1.22;
}
.destaque__desc {
  font-size: 0.92rem;
  color: #6b5a61;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 44ch;
}
/* o sublinhado que cresce é o mesmo gesto do menu do topo */
.destaque__cta {
  display: inline-block;
  position: relative;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose-dark);
}
.destaque__cta i { font-style: normal; margin-left: 6px; transition: translate 0.2s ease; }
.destaque__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  /* scale em vez de width: width recalcula layout, scale roda na GPU */
  scale: 0 1;
  transform-origin: left center;
  transition: scale 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.destaque__preco {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Playfair Display', serif;
  color: var(--rose-dark);
  line-height: 1;
  white-space: nowrap;
}
.destaque__preco span { font-size: 1rem; opacity: 0.7; }
.destaque__preco strong {
  font-size: clamp(2.1rem, 5.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* divisória entre as faixas: a mesma pincelada, no comprimento todo */
.destaque__risco {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-dark) 38%, #b8804f 74%, var(--gold) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  opacity: 0.72;
  transform-origin: left center;
}
.destaque__item:last-child .destaque__risco { display: none; }

@media (hover: hover) {
  button.destaque__linha:hover, a.destaque__linha:hover { background-color: var(--blush-soft); }
  .destaque__linha:hover .destaque__cta::after { scale: 1 1; }
  .destaque__linha:hover .destaque__cta i { translate: 4px 0; }
}
.destaque__linha:focus-visible {
  outline: none;
  background-color: var(--blush-soft);
  box-shadow: 0 0 0 3px rgba(201, 138, 156, 0.3);
}
.destaque__linha:focus-visible .destaque__cta::after { scale: 1 1; }

/* ---------- Tabela de preços ----------
   Cada seção do catálogo é um painel, com a mesma linguagem dos .service-card.
   O momento autoral é a PINCELADA: um traço de esmalte em rosa->dourado que se
   pinta da esquerda pra direita quando a seção entra na tela. Uma vez, por seção. */
.precos { max-width: 760px; margin: 56px auto 0; }

.preco-grupo {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px 14px;
  box-shadow: 0 12px 30px -18px rgba(44, 33, 41, 0.18);
}
.preco-grupo + .preco-grupo { margin-top: 22px; }

.preco-grupo__head { text-align: center; margin-bottom: 22px; }
.preco-grupo__titulo {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--plum);
  line-height: 1.25;
  text-wrap: balance;
}
/* o traço: gradiente da marca, pontas esfumadas pela máscara e levemente torto,
   pra ler como pincelada e não como barra de progresso */
.preco-grupo__pincel {
  display: block;
  width: 124px;
  height: 9px;
  margin: 14px auto 0;
  border-radius: 999px;
  /* duas camadas: o brilho de gel em cima, a cor do esmalte embaixo */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(90deg, var(--rose) 0%, var(--rose-dark) 38%, #b8804f 74%, var(--gold) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  rotate: -0.7deg;
  transform-origin: left center;
}

.preco-lista { margin: 0; padding: 0; list-style: none; }
.preco-item + .preco-item { border-top: 1px solid var(--blush); }
.preco-item__linha {
  display: grid;
  grid-template-columns: 1fr auto 14px;
  column-gap: 14px;
  align-items: baseline;
  width: 100%;
  padding: 15px 10px;
  border: 0;
  border-radius: 12px;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: background-color 0.2s ease;
}
button.preco-item__linha { cursor: pointer; }

.preco-item__nome { grid-column: 1; font-weight: 600; font-size: 0.97rem; line-height: 1.35; }
.preco-item__desc {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.84rem;
  color: #6b5a61;
  line-height: 1.5;
  margin-top: 3px;
  max-width: 46ch;
}
.preco-item__valor {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--rose-dark);
  white-space: nowrap;
}
/* seta discreta: diz que a linha é tocável, sem repetir "Agendar" 17 vezes */
.preco-item__seta {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  color: var(--rose-dark);
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s ease, translate 0.2s ease;
}
@media (hover: hover) {
  button.preco-item__linha:hover { background-color: var(--blush-soft); }
  button.preco-item__linha:hover .preco-item__seta { opacity: 1; translate: 3px 0; }
}
button.preco-item__linha:focus-visible {
  outline: none;
  background-color: var(--blush-soft);
  box-shadow: 0 0 0 3px rgba(201, 138, 156, 0.3);
}
button.preco-item__linha:focus-visible .preco-item__seta { opacity: 1; translate: 3px 0; }
button.preco-item__linha:active { background-color: var(--blush); }

/* extras: não se agenda sozinho, então nem seta nem resposta ao toque */
.preco-item--extra .preco-item__nome { font-weight: 500; }
.preco-item--extra .preco-item__valor { color: var(--rose); font-size: 1.05rem; }

/* ---- entrada: o padrão é VISÍVEL; o JS "arma" a animação só quando vai animar ---- */
.is-armed .preco-grupo__pincel { scale: 0 1; }
.is-armed .preco-item { opacity: 0; translate: 0 10px; }
.is-armed .destaque__item { opacity: 0; translate: 0 14px; }
.is-armed .destaque__risco { scale: 0 1; }

.is-armed [data-preco-grupo].is-in .preco-grupo__pincel {
  scale: 1 1;
  transition: scale 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.is-armed [data-preco-grupo].is-in .preco-item {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 45ms + 0.22s),
              translate 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 45ms + 0.22s);
}
.is-armed [data-preco-grupo].is-in .destaque__item {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 110ms + 0.2s),
              translate 0.6s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 110ms + 0.2s);
}
.is-armed [data-preco-grupo].is-in .destaque__risco {
  scale: 1 1;
  transition: scale 0.8s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 110ms + 0.42s);
}

@media (prefers-reduced-motion: reduce) {
  .is-armed .preco-grupo__pincel,
  .is-armed .destaque__risco { scale: 1 1; }
  .is-armed .preco-item,
  .is-armed .destaque__item { opacity: 1; translate: none; }
  .preco-item__linha, .preco-item__seta, .destaque__linha, .destaque__cta::after { transition: none; }
}

/* cabeçalho de seção dentro do menu customizado de serviço */
.cselect__grupo {
  padding: 10px 14px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rose-dark);
  opacity: 0.75;
}

@media (max-width: 560px) {
  .preco-grupo { padding: 26px 18px 10px; }
  .preco-item__linha { column-gap: 10px; padding: 14px 6px; }
  .preco-item__desc { font-size: 0.8rem; }
  .preco-item__valor { font-size: 1.08rem; }
  .destaque__linha { column-gap: 14px; padding: 22px 4px 20px; }
  .destaque__desc { font-size: 0.86rem; }
}

/* ---------- Por que a Millena ---------- */
.why { padding: 90px 0; background: var(--blush-soft); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 12px 30px -18px rgba(44,33,41,0.18);
}
.why-card__icon { font-size: 2.1rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; color: var(--plum); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: #6b5a61; line-height: 1.5; }

/* escassez no agendamento */
.booking__scarcity {
  text-align: center;
  max-width: 520px;
  margin: -30px auto 44px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rose-dark);
}

/* ---------- Booking ---------- */
.booking { padding: 100px 0; }
.booking__card {
  background: #fff;
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.booking__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.booking__field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum);
}
.booking__opt { font-weight: 400; color: #9a8a90; }
.booking__field select,
.booking__field input {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid rgba(44,33,41,0.14);
  border-radius: 14px;
  background: var(--cream);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking__field select:focus,
.booking__field input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,138,156,0.15);
}
.booking__error {
  color: var(--rose-dark);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: none;
}
.booking__error.is-visible { display: block; }
.booking__ok {
  color: #1a8f4c;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 14px;
  display: none;
}
.booking__ok.is-visible { display: block; }
.booking__wa {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--whatsapp-dark);
  text-decoration: underline;
}

/* menu customizado (substitui o dropdown feio do sistema) */
.cselect { position: relative; }
.cselect__btn {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid rgba(44,33,41,0.14);
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cselect__btn:focus-visible { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,138,156,0.15); }
.cselect.is-open .cselect__btn { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,138,156,0.15); }
.cselect__btn[data-placeholder="true"] .cselect__label { color: #9a8a90; }
.cselect__chev { flex: none; color: var(--rose-dark); transition: transform 0.2s ease; }
.cselect.is-open .cselect__chev { transform: rotate(180deg); }
.cselect__menu {
  position: absolute;
  z-index: 30;
  left: 0; right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid rgba(44,33,41,0.10);
  border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(44,33,41,0.35);
  padding: 6px;
  max-height: 264px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.cselect.is-open .cselect__menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cselect__opt {
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cselect__opt:hover { background: var(--blush-soft); }
.cselect__opt[aria-selected="true"] { color: var(--rose-dark); font-weight: 600; }
.cselect__opt.is-disabled { color: #c3b6bb; cursor: not-allowed; background: none; }
.cselect__opt .tag-ocup {
  font-size: 0.72rem;
  color: #b58b98;
  background: #f6e7ea;
  padding: 2px 8px;
  border-radius: 20px;
}

/* calendário customizado (substitui o input date nativo) */
.cdate__ico { flex: none; font-size: 1rem; line-height: 1; }
.cal {
  padding: 14px;
  max-height: none;
  right: auto;
  width: 300px;
  max-width: calc(100vw - 48px);
}
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal__title { font-weight: 600; color: var(--plum); font-size: 0.95rem; text-transform: capitalize; }
.cal__nav {
  width: 30px; height: 30px;
  border: 0; border-radius: 8px;
  background: var(--blush-soft); color: var(--rose-dark);
  font-size: 1.15rem; line-height: 1; cursor: pointer;
}
.cal__nav:disabled { opacity: 0.35; cursor: not-allowed; }
.cal__nav:not(:disabled):hover { background: var(--blush); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { text-align: center; font-size: 0.72rem; font-weight: 600; color: #a89aa0; padding-bottom: 4px; }
.cal__day {
  aspect-ratio: 1;
  border: 0; border-radius: 50%;
  background: none; color: var(--ink);
  font-family: inherit; font-size: 0.85rem;
  cursor: pointer; position: relative;
  transition: background 0.15s ease;
}
/* estados coloridos do dia */
.cal__day--free { color: #2e7d52; background: #e9f6ee; font-weight: 600; }
.cal__day--free:hover { background: #d3edde; }
.cal__day--full { color: #c0564b; background: #fdeceb; cursor: not-allowed; }
.cal__day--closed { color: #c9bcc2; cursor: not-allowed; }
.cal__day--past { color: #e2dade; cursor: not-allowed; }
.cal__day.is-today { font-weight: 700; }
.cal__day.is-today::after {
  content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--rose-dark);
}
.cal__day.is-selected {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff; font-weight: 600;
}
.cal__day.is-selected::after { background: #fff; }

/* legenda do calendário */
.cal__legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f0e6ea;
  font-size: 0.72rem;
  color: #7a6a70;
}
.cal__legend span { display: flex; align-items: center; gap: 5px; }
.cal__legend .lg { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.lg-free { background: #7fc79b; }
.lg-full { background: #e39a92; }
.lg-closed { background: #d8ccd0; }
.booking__submit { width: 100%; margin-top: 4px; }
.booking__hint {
  text-align: center;
  font-size: 0.8rem;
  color: #7a6a70;
  margin-top: 16px;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 100px 0;
  background: var(--blush-soft);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery__item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px -18px rgba(44,33,41,0.2);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover { transform: scale(1.03); }
.gallery__item:hover img { transform: scale(1.08); }

.gallery__cta {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Course ---------- */
.course { padding: 100px 0; }
.course__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.course__visual {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.course__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course__content p {
  color: #5c4c54;
  margin-bottom: 20px;
}
.course__list {
  margin-bottom: 28px;
}
.course__list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}
.course__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-dark);
  font-weight: 700;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum), #4a2f3a);
  text-align: center;
}
.contact__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.contact__location {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--plum);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 100px;
}
.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.logo--footer { color: #fff; }
.logo--footer span { color: var(--gold); }
.footer__socials {
  display: flex;
  gap: 18px;
  margin: 4px 0;
}
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
}
.footer__socials a:hover { background: rgba(255,255,255,0.18); }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ---------- Floating WhatsApp button ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6);
  z-index: 60;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45), 0 14px 30px -8px rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 14px 30px -8px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 14px 30px -8px rgba(37,211,102,0.6); }
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,250,247,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(44,33,41,0.08);
  z-index: 55;
  display: none;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 980px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .course__grid { grid-template-columns: 1fr; }
  .course__visual { order: -1; height: 260px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: 0 20px 30px -20px rgba(0,0,0,0.2);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; }
  .nav__toggle { display: flex; }
  .header__actions .btn--small { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__portrait { max-width: 320px; }

  .fab-whatsapp { bottom: 90px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; }
}

@media (max-width: 600px) {
  .why__grid { grid-template-columns: 1fr; }
  .booking__card { padding: 28px 20px; }
  .booking__row { grid-template-columns: 1fr; gap: 0; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .header__inner { height: 68px; }
  .hero { padding: 40px 0 56px; }
}
