/* =========================================================
   Anna Clara — design system
   Bege quente, taupe e dourado. Paleta conforme diretrizes.
   ========================================================= */

:root {
  --background: #F4EEE7;   /* fundo principal - bege quente */
  --cream: #E9DDD0;        /* fundo alternativo - creme claro */
  --taupe: #B89E86;        /* cor de apoio */
  --foreground: #4B3B33;   /* texto principal - marrom escuro */
  --gold: #C79A3B;         /* dourado metálico */
  --gold-soft: #E5C26B;    /* dourado claro - hover/detalhes */
  --card: #FFFDF9;         /* branco quente */
  --muted: #8A7561;        /* texto secundário (taupe escurecido) */
  --border: #E0D3C4;

  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;

  --shadow-soft: 0 18px 50px -30px rgba(75, 59, 51, 0.35);
  --shadow-glow: 0 0 0 1px rgba(199, 154, 59, 0.4), 0 12px 30px -14px rgba(199, 154, 59, 0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--card); color: var(--foreground);
  padding: 0.75rem 1.25rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utilitários de layout ---------- */
.container { max-width: 72rem; margin: 0 auto; padding-inline: 1.25rem; }
.container-narrow { max-width: 48rem; margin: 0 auto; padding-inline: 1.25rem; }

.section { padding: 3.5rem 0; }
.section-cream { background: rgba(233, 221, 208, 0.6); }

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
  .container, .container-narrow { padding-inline: 2rem; }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #A07C3A;
}

.section-title { font-size: clamp(1.75rem, 4vw, 3rem); margin-top: 1.25rem; }
.section-head { max-width: 40rem; margin: 0 auto; text-align: center; }
.section-lead { margin-top: 1.5rem; font-size: 0.98rem; line-height: 1.7; color: rgba(75, 59, 51, 0.75); }

.gold-rule {
  height: 1px; margin-top: 2rem;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), var(--gold-soft), transparent);
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3rem; padding: 0 1.75rem; border-radius: 999px;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-sm { min-height: 2.75rem; padding: 0 1.5rem; font-size: 0.75rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  color: #FFFDF9;
  box-shadow: 0 10px 26px -16px rgba(199, 154, 59, 0.9);
}
.btn-gold:hover:not(:disabled) { box-shadow: var(--shadow-glow); filter: brightness(1.06); }
.btn-gold:disabled { opacity: 0.45; cursor: not-allowed; filter: none; }

.btn-outline-gold {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-outline-gold:hover { background: rgba(229, 194, 107, 0.16); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.375rem;
  min-height: 2.75rem; padding: 0 1rem; border: none; background: none;
  border-radius: 999px; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  transition: color 300ms ease;
}
.btn-ghost:hover:not(:disabled) { color: var(--gold); }
.btn-ghost:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- Card base ---------- */
.card {
  background: var(--card);
  border: 1px solid rgba(224, 211, 196, 0.7);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

/* ---------- Reveal ao scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background 500ms ease, box-shadow 500ms ease, backdrop-filter 500ms ease;
}
.site-header.solid {
  background: rgba(244, 238, 231, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
}
@media (min-width: 768px) { .header-inner { padding: 1rem 2rem; } }

.brand-name { display: block; font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.18em; text-transform: uppercase; }
.brand-sub { display: block; margin-top: 0.125rem; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 768px) { .brand-name { font-size: 1.25rem; } }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: 0.9rem; color: rgba(75, 59, 51, 0.8); transition: color 300ms ease; }
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop .btn { color: #FFFDF9; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.menu-toggle {
  display: grid; place-items: center; height: 2.75rem; width: 2.75rem; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 999px; background: none;
  color: var(--foreground); cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.nav-mobile { border-top: 1px solid var(--border); background: var(--card); padding: 0 1.25rem 1.5rem; }
.nav-mobile a { display: block; padding: 1rem 0; font-size: 0.9rem; letter-spacing: 0.02em; border-bottom: 1px solid rgba(224, 211, 196, 0.6); }
.nav-mobile .btn { margin-top: 1.25rem; color: #FFFDF9; }

/* =========================================================
   HERO — foto circular com moldura dourada, fundo bege limpo
   (inspirado no modelo escolhido pela Anna, na nossa paleta)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(229, 194, 107, 0.14), transparent 60%),
    var(--background);
}
.hero-content {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}
/* ---- Retrato circular com moldura dourada ---- */
.hero-portrait {
  position: relative;
  width: clamp(11rem, 42vw, 16rem);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 0.45rem;
  background: linear-gradient(140deg, var(--gold-soft), var(--gold) 55%, #a97e2e);
  box-shadow:
    0 22px 50px -24px rgba(199, 154, 59, 0.6),
    0 0 0 1px rgba(199, 154, 59, 0.25);
}
.hero-portrait-inner {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
  display: grid;
  place-items: center;
}
.hero-portrait-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  padding: 1rem;
  text-align: center;
}
.hero-portrait-placeholder svg { color: var(--gold); opacity: 0.75; }
.hero-portrait-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-title { margin-top: 1.75rem; font-size: clamp(2.5rem, 9vw, 4.5rem); line-height: 1.1; }
.hero-subtitle {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #A07C3A;
}
.hero-actions { margin-top: 2.25rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; }
.btn-block-sm { width: 100%; }
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .btn-block-sm { width: auto; }
}
.hero-scroll {
  display: none; /* seta de rolagem removida em todas as telas */
}
.hero-scroll:hover { background: rgba(199, 154, 59, 0.1); }
.bounce { animation: bounce 1.4s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* =========================================================
   SOBRE
   ========================================================= */
.about-grid {
  max-width: 72rem; margin: 0 auto; padding-inline: 1.25rem;
  display: grid; gap: 3.5rem; align-items: center;
}
@media (min-width: 768px) { .about-grid { padding-inline: 2rem; } }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-paragraphs { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.98rem; line-height: 1.7; color: rgba(75, 59, 51, 0.8); }

.differentials { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .differentials { grid-template-columns: 1fr 1fr; } }
.differentials .card { padding: 1.25rem; }
.differentials h3 { font-size: 1.125rem; }
.differentials p { margin-top: 0.375rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

.about-figure { max-width: 420px; margin-inline: auto; }
.about-figure figure { position: relative; }
.figure-bg { position: absolute; inset: -0.75rem; z-index: -1; border-radius: 24px; background: var(--cream); }
.about-figure img { aspect-ratio: 1 / 1; width: 100%; height: auto; border-radius: 24px; object-fit: cover; object-position: center; box-shadow: var(--shadow-soft); }
.about-figure figcaption { margin-top: 1rem; text-align: center; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 1024px) { .about-text { order: 1; } .about-figure { order: 2; max-width: none; } }

/* =========================================================
   SERVIÇOS — layout "ideia 2": foto em destaque + abas + carrossel
   ========================================================= */
.services-detail { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 2rem; }

.service-detail-card { padding: 2rem; }
@media (min-width: 640px) { .service-detail-card { padding: 2.75rem; } }

.service-detail-head { display: flex; align-items: flex-start; gap: 1.25rem; }
.service-detail-head .service-icon { flex-shrink: 0; }
.service-detail-head h3 { font-size: 1.75rem; }
.service-detail-head p { margin-top: 0.375rem; font-size: 0.9rem; line-height: 1.6; color: var(--muted); }

.service-detail-body {
  margin-top: 2rem; display: grid; gap: 1.75rem;
}
@media (min-width: 900px) {
  .service-detail-body { grid-template-columns: 15rem 1fr; align-items: start; }
}

/* Abas de subserviço (lista à esquerda no desktop, chips no mobile) */
.service-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid rgba(224, 211, 196, 0.7); padding-top: 1.5rem; }
@media (min-width: 900px) {
  .service-tabs { flex-direction: column; flex-wrap: nowrap; gap: 0.375rem; border-top: none; padding-top: 0; }
}
.service-tab {
  text-align: left; min-height: 2.75rem; padding: 0.6rem 1rem; border-radius: 14px;
  border: 1px solid transparent; background: none; color: rgba(75, 59, 51, 0.75);
  font-family: var(--font-sans); font-size: 0.875rem; cursor: pointer;
  transition: all 250ms ease;
}
@media (max-width: 899px) {
  .service-tab { border-radius: 999px; border-color: var(--border); }
}
.service-tab:hover { color: var(--gold); }
.service-tab.selected {
  color: var(--gold); background: rgba(199, 154, 59, 0.1); border-color: rgba(199, 154, 59, 0.35);
  font-weight: 600;
}

/* Painel de foto + carrossel */
.service-photo-panel { min-width: 0; }
.service-photo-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--cream);
  border: 1px solid rgba(224, 211, 196, 0.6); box-shadow: var(--shadow-soft);
}
.service-photo-frame img {
  position: absolute; inset: 0;
  height: 100%; width: 100%; object-fit: cover;
  opacity: 0; transition: opacity 450ms ease;
  user-select: none; -webkit-user-drag: none;
}
.service-photo-frame img.active { opacity: 1; }
.service-photo-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  font-size: 0.8rem; color: var(--muted); background: var(--cream);
}

.service-photo-caption { margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; color: rgba(75, 59, 51, 0.8); }

.service-photo-title { margin-top: 1.25rem; font-size: 1.125rem; }

/* Carrossel de miniaturas — rolagem nativa (arrastável no touch),
   com scroll-snap para os thumbs "encaixarem" e setas apenas no desktop. */
.service-carousel { margin-top: 1rem; position: relative; display: flex; align-items: center; gap: 0.5rem; }
.carousel-track-wrap { overflow: hidden; flex: 1; min-width: 0; }
.carousel-track {
  display: flex; gap: 0.625rem;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-bottom: 0.25rem; /* espaço p/ a barra de scroll não cobrir o thumb */
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-thumb {
  flex-shrink: 0; scroll-snap-align: center;
  height: 4.5rem; width: 4.5rem; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; padding: 0; cursor: pointer; background: var(--cream);
  transition: border-color 250ms ease, opacity 250ms ease;
  opacity: 0.65;
}
.carousel-thumb img { height: 100%; width: 100%; object-fit: cover; }
.carousel-thumb:hover { opacity: 1; }
.carousel-thumb.selected { border-color: var(--gold); opacity: 1; }
.carousel-nav {
  flex-shrink: 0; display: grid; place-items: center; height: 2.5rem; width: 2.5rem;
  border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: var(--gold);
  cursor: pointer; transition: all 250ms ease;
}
.carousel-nav:hover { border-color: var(--gold); background: rgba(199, 154, 59, 0.1); }
.carousel-nav:disabled { opacity: 0.35; cursor: not-allowed; }
/* No celular a rolagem é feita arrastando o dedo direto nas miniaturas,
   então as setas somem para dar todo o espaço ao carrossel. */
@media (max-width: 639px) {
  .carousel-nav { display: none; }
}

.service-detail-cta { margin-top: 1.75rem; }

/* Bloco de variações/preços abaixo do botão Agendar */
.service-variacoes {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.var-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(75, 59, 51, 0.85);
}
.var-nome {
  font-weight: 500;
  color: var(--color-espresso);
}
.var-preco {
  font-weight: 600;
  color: var(--color-gold, #b8972a);
}
.var-dur {
  opacity: 0.7;
  font-size: 0.82rem;
}
.var-nota {
  font-style: italic;
  opacity: 0.65;
  font-size: 0.82rem;
  width: 100%;
}

/* =========================================================
   GALERIA
   ========================================================= */
.gallery-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; grid-auto-rows: 320px; max-width: 56rem; margin-inline: auto; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 460px; } }
.gallery-item { height: 100%; width: 100%; overflow: hidden; border-radius: 24px; border: 1px solid rgba(224, 211, 196, 0.6); box-shadow: var(--shadow-soft); padding: 0; cursor: pointer; background: none; }
.gallery-item img { height: 100%; width: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-item:hover img { transform: scale(1.05); }
.span-2col { grid-column: span 1; }
.span-2row { grid-row: span 1; }
@media (min-width: 640px) {
  .span-2col { grid-column: span 2; }
  .span-2row { grid-row: span 2; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 1rem; background: rgba(75, 59, 51, 0.8); backdrop-filter: blur(4px); }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: 999px; border: 1px solid rgba(199, 154, 59, 0.5); background: none; color: var(--gold-soft); cursor: pointer; }
.lightbox img { max-height: 85vh; width: auto; max-width: 100%; border-radius: 16px; object-fit: contain; }

/* =========================================================
   AVALIAÇÕES
   ========================================================= */
.rating-line { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 0.1em; }
.reviews-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review { display: flex; flex-direction: column; height: 100%; padding: 2rem; }
.quote-mark { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--gold); height: 1.75rem; }
.review > p { margin-top: 1.25rem; flex: 1; font-size: 0.97rem; line-height: 1.7; color: rgba(75, 59, 51, 0.8); }
.review footer { margin-top: 1.75rem; border-top: 1px solid rgba(224, 211, 196, 0.7); padding-top: 1.25rem; }
.review-name { font-family: var(--font-display); font-size: 1.125rem; }
.review-service { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   AGENDAMENTO
   ========================================================= */
.booking { margin-top: 3rem; padding: 1.5rem; }
@media (min-width: 640px) { .booking { padding: 2.5rem; } }

.booking-steps { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.75rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; }
.booking-steps li { display: flex; align-items: center; gap: 0.75rem; }
.booking-steps .step-label { color: var(--muted); }
.booking-steps .step-label.active { color: var(--gold); }
.booking-steps .step-sep { height: 1px; width: 1rem; background: var(--border); }

.booking-body { margin-top: 2rem; min-height: 240px; }
.booking-body legend, .booking-body .field-title { font-family: var(--font-display); font-size: 1.25rem; }
.booking-body .field-title { display: block; }

.svc-group { margin-top: 1.5rem; }
.svc-group:first-child { margin-top: 1.5rem; }
.svc-group > p { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.chip-row { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  min-height: 2.75rem; padding: 0 1rem; border-radius: 999px;
  border: 1px solid var(--border); background: none; color: rgba(75, 59, 51, 0.8);
  font-family: var(--font-sans); font-size: 0.875rem; cursor: pointer;
  transition: all 300ms ease;
}
.chip:hover { border-color: rgba(199, 154, 59, 0.6); }
.chip.selected { border-color: var(--gold); background: rgba(199, 154, 59, 0.12); color: var(--gold); }

.field { margin-top: 1.5rem; }
.field label, .field .lbl { font-size: 0.875rem; color: var(--muted); }
.input, .textarea {
  margin-top: 0.5rem; width: 100%; min-height: 3rem; padding: 0 1rem;
  border: 1px solid var(--border); border-radius: 16px; background: var(--background);
  font-family: var(--font-sans); font-size: 1rem; color: var(--foreground);
}
.textarea { min-height: auto; padding: 1rem; resize: vertical; }
.hint { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); }

.slot-grid { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
@media (min-width: 640px) { .slot-grid { grid-template-columns: repeat(5, 1fr); } }
.slot { min-height: 2.75rem; border-radius: 12px; border: 1px solid var(--border); background: none; color: rgba(75, 59, 51, 0.8); font-family: var(--font-sans); font-size: 0.875rem; cursor: pointer; transition: all 300ms ease; }
.slot:hover { border-color: rgba(199, 154, 59, 0.6); }
.slot.selected { border-color: var(--gold); background: rgba(199, 154, 59, 0.12); color: var(--gold); }

.pretty-date { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); text-transform: capitalize; }

/* ---------- Calendário ---------- */
.cal { margin-top: 1.5rem; user-select: none; touch-action: pan-y; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.cal-title { font-family: var(--font-display); font-size: 1.25rem; text-transform: capitalize; }
.cal-nav { display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: var(--gold); cursor: pointer; transition: all 300ms ease; }
.cal-nav:hover:not(:disabled) { border-color: var(--gold); background: rgba(199, 154, 59, 0.1); }
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; color: var(--muted); }
.cal-weekdays { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.cal-weekdays span { text-align: center; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.cal-grid { margin-top: 0.5rem; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.cal-cell { display: grid; place-items: center; aspect-ratio: 1 / 1; border-radius: 12px; font-family: var(--font-sans); font-size: 0.9rem; border: 1px solid transparent; }
.cal-cell.empty { border: none; }
.cal-cell.disabled { color: var(--muted); background: rgba(184, 158, 134, 0.16); opacity: 0.7; }
.cal-cell.available { background: var(--card); border-color: var(--border); color: var(--foreground); cursor: pointer; transition: all 250ms ease; }
.cal-cell.available:hover { border-color: var(--gold); background: rgba(199, 154, 59, 0.1); }
.cal-cell.today { border-color: var(--gold-soft); font-weight: 600; }
.cal-cell.selected { background: linear-gradient(120deg, var(--gold-soft), var(--gold)); border-color: var(--gold); color: #FFFDF9; font-weight: 600; box-shadow: 0 8px 18px -10px rgba(199, 154, 59, 0.9); }

.cal-legend { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; font-size: 0.78rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.cal-legend .dot { display: inline-block; height: 0.7rem; width: 0.7rem; border-radius: 4px; }
.cal-legend .dot-free { background: var(--card); border: 1px solid var(--border); }
.cal-legend .dot-sel { background: linear-gradient(120deg, var(--gold-soft), var(--gold)); }
.cal-legend .dot-off { background: rgba(184, 158, 134, 0.3); }

.booking-confirm { text-align: center; }
.confirm-check { margin: 0 auto; display: grid; place-items: center; height: 3.5rem; width: 3.5rem; border-radius: 999px; background: rgba(199, 154, 59, 0.12); color: var(--gold); }
.booking-confirm h3 { margin-top: 1.5rem; font-size: 1.5rem; }
.booking-confirm p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(75, 59, 51, 0.8); }
.booking-confirm .btn { margin-top: 2rem; color: #FFFDF9; }
.booking-confirm .cap { text-transform: capitalize; }

.booking-nav { margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; border-top: 1px solid rgba(224, 211, 196, 0.7); padding-top: 1.5rem; }
.booking-nav.hidden { display: none; }

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.location-grid { max-width: 72rem; margin: 0 auto; padding-inline: 1.25rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .location-grid { padding-inline: 2rem; } }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1.2fr; align-items: center; } }
.location-info { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
.loc-row { display: flex; gap: 1rem; }
.loc-icon { margin-top: 0.125rem; flex-shrink: 0; color: var(--gold); }
.loc-row p { font-size: 0.97rem; line-height: 1.7; color: rgba(75, 59, 51, 0.8); }
.hours { display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.97rem; color: rgba(75, 59, 51, 0.8); }
.hours span { color: var(--muted); }
.map-wrap { overflow: hidden; border-radius: 24px; border: 1px solid rgba(224, 211, 196, 0.6); box-shadow: var(--shadow-soft); }
.map-wrap iframe { height: 340px; width: 100%; border: 0; display: block; }
@media (min-width: 768px) { .map-wrap iframe { height: 440px; } }

/* =========================================================
   RODAPÉ
   ========================================================= */
.site-footer { border-top: 1px solid var(--border); background: var(--background); padding: 3.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.footer-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-role { margin-top: 0.5rem; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: 999px; border: 1px solid rgba(199, 154, 59, 0.4); color: var(--gold); transition: background 300ms ease; }
.footer-social a:hover { background: rgba(199, 154, 59, 0.1); }
.footer-address { max-width: 28rem; font-size: 0.875rem; color: var(--muted); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted); }
.footer-bottom a { transition: color 300ms ease; }
.footer-bottom a:hover { color: var(--gold); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; gap: 1.5rem; } }

/* ---------- Preferência por menos movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   REFINO DESKTOP  (adicionado — não altera nada do mobile)
   Tudo daqui pra baixo só "liga" de 1024px pra cima.
   Escala: 1024 (notebook) · 1280 · 1440 · 1920 (monitor grande)
   ========================================================= */

/* ---- Containers ganham respiro progressivo em telas grandes ----
   Sem esticar demais: o conteúdo cresce até um limite confortável
   de leitura e depois fica centralizado com margens generosas. */
@media (min-width: 1280px) {
  .container { max-width: 76rem; }
  .about-grid, .location-grid { max-width: 76rem; }
}
@media (min-width: 1536px) {
  .container { max-width: 82rem; }
  .about-grid, .location-grid { max-width: 82rem; }
  .section { padding: 9rem 0; }
}

/* ---- HEADER: navegação com mais presença em desktop ---- */
@media (min-width: 1024px) {
  .header-inner { max-width: 76rem; padding: 1.15rem 2.5rem; }
  .nav-desktop { gap: 2.5rem; }
  .nav-desktop a { font-size: 0.95rem; position: relative; }
  /* sublinhado dourado sutil que cresce no hover */
  .nav-desktop a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
    height: 1.5px; background: var(--gold);
    transition: right 300ms ease;
  }
  .nav-desktop a:not(.btn):hover::after { right: 0; }
}

/* ---- HERO: ocupa a tela com elegância, tipografia maior ---- */
@media (min-width: 1024px) {
  .hero-content { max-width: 60rem; }
  .hero-title { font-size: clamp(3.5rem, 5.5vw, 5rem); }
  .hero-tagline { font-size: 1.15rem; max-width: 40rem; }
}
@media (min-width: 1440px) {
  .hero-title { font-size: 5.5rem; }
}

/* ---- SOBRE: duas colunas mais equilibradas e alinhadas ao topo ---- */
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: 5.5rem; align-items: center; }
  .about-paragraphs { font-size: 1.02rem; }
  .differentials { gap: 1.25rem; }
}
@media (min-width: 1440px) {
  .about-grid { gap: 7rem; }
  .about-figure { max-width: 480px; margin-left: auto; }
}

/* ---- SERVIÇOS: foto em destaque maior, abas com largura fixa ---- */
@media (min-width: 1024px) {
  .service-detail-card { padding: 3rem 3.25rem; }
  .service-detail-body { grid-template-columns: 17rem 1fr; gap: 2.5rem; }
  .service-detail-head h3 { font-size: 2rem; }
  .service-photo-title { font-size: 1.25rem; }
  .service-photo-caption { font-size: 0.97rem; }
}
@media (min-width: 1440px) {
  .service-detail-body { grid-template-columns: 19rem 1fr; gap: 3rem; }
  /* a foto respira mais: proporção levemente mais larga no desktop */
}

/* ---- GALERIA: aproveita a largura horizontal (3 colunas) ---- */
@media (min-width: 1024px) {
  .gallery-grid {
    max-width: 76rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
  }
  /* o "span 2" agora vale dentro de um grid de 3 colunas,
     criando um mosaico com peças de destaque */
  .span-2col { grid-column: span 2; }
  .span-2row { grid-row: span 2; }
}
@media (min-width: 1440px) {
  .gallery-grid { grid-auto-rows: 340px; gap: 1.75rem; }
}

/* ---- AVALIAÇÕES: três colunas com mais respiro ---- */
@media (min-width: 1024px) {
  .reviews-grid { gap: 2rem; }
  .review { padding: 2.5rem; }
  .review > p { font-size: 1.02rem; }
}

/* ---- AGENDAMENTO: card centralizado, largura confortável ----
   Não deixa o formulário esticar a tela toda (ruim de ler);
   limita a uma largura agradável e centraliza. */
@media (min-width: 1024px) {
  .booking { max-width: 52rem; margin-left: auto; margin-right: auto; padding: 3rem 3.5rem; }
  .booking-steps { font-size: 0.7rem; justify-content: center; }
  .slot-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ---- LOCALIZAÇÃO: mapa e informações lado a lado equilibrados ---- */
@media (min-width: 1024px) {
  .location-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
  .map-wrap iframe { height: 480px; }
}
@media (min-width: 1440px) {
  .map-wrap iframe { height: 520px; }
}

/* ---- RODAPÉ: distribuição horizontal em telas grandes ---- */
@media (min-width: 1024px) {
  .footer-inner { max-width: 76rem; margin-inline: auto; }
}

/* ---- Micro-interações só no desktop (mouse/hover fino) ----
   Cards sobem levemente no hover. No mobile (touch) isso não
   se aplica, então nada muda lá. */
@media (min-width: 1024px) and (hover: hover) {
  .service-detail-card:hover,
  .review:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px -32px rgba(75, 59, 51, 0.45);
  }
}


/* =========================================================
   AJUSTE NOTEBOOK  (faixa 1024–1366, telas mais baixas)
   Complementa o refino desktop. Alvo: notebook ~1366x768,
   inclusive com zoom do sistema (125–150%). Só liga nesta
   faixa — não toca no mobile nem nos monitores grandes.
   ========================================================= */

@media (min-width: 1024px) and (max-width: 1366px) {

  /* Seções com respiro vertical proporcional à tela baixa:
     o padding de 8rem do desktop rouba altura demais no notebook. */
  .section { padding: 5.5rem 0; }

  /* Hero: não force 100svh cheio de padding num notebook baixo.
     O conteúdo continua centralizado, mas com folga menor. */
  .hero-content { padding-top: 6rem; padding-bottom: 5rem; }
  .hero-title { font-size: clamp(3rem, 4.5vw, 4rem); }
  .hero-tagline { font-size: 1.08rem; margin-top: 1.5rem; }
  .hero-actions { margin-top: 2rem; }

  /* Sobre: colunas um pouco mais próximas para não sobrar vão no meio. */
  .about-grid { gap: 4rem; }

  /* Serviços: coluna de abas mais estreita libera espaço pra foto,
     que é o que interessa ver no notebook. */
  .service-detail-card { padding: 2.5rem 2.75rem; }
  .service-detail-body { grid-template-columns: 15rem 1fr; gap: 2rem; }

  /* Galeria: 3 colunas continuam, mas linhas mais baixas para
     caber mais peças na altura curta do notebook. */
  .gallery-grid { grid-auto-rows: 250px; gap: 1.25rem; }

  /* Agendamento: largura um tico menor, centralizado, cabe melhor. */
  .booking { max-width: 46rem; padding: 2.5rem 3rem; }

  /* Localização: mapa mais baixo para não empurrar a página. */
  .map-wrap iframe { height: 400px; }

  /* Avaliações: padding um pouco menor mantém as 3 colunas folgadas. */
  .review { padding: 2rem; }
}

/* Notebook em paisagem e baixo (altura curta de verdade):
   reduz ainda mais o respiro vertical das seções, independentemente
   da largura. Pega telas tipo 768px de altura. */
@media (min-width: 1024px) and (max-height: 800px) {
  .section { padding: 5rem 0; }
  .hero { min-height: 100svh; }
  .hero-content { min-height: auto; padding-top: 7rem; padding-bottom: 4.5rem; }
}


/* =========================================================
   FOTO DO SERVIÇO — versão final (quadrado uniforme, estilo feed)
   Toda foto (vertical, horizontal ou quadrada) vira um quadrado
   consistente que PREENCHE o quadro, sem faixa e sem estourar a
   tela. O corte é centralizado e suave (quadro pequeno, não é o
   paredão de antes). Padrão visual igual para qualquer proporção.
   Vale para todas as telas.
   ========================================================= */
.service-photo-frame {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  max-width: 400px !important;   /* teto: nunca maior que isso */
  max-height: none !important;
  margin-inline: auto !important; /* centraliza no espaço da coluna */
  background: var(--cream) !important;
}
.service-photo-frame img {
  object-fit: cover !important;   /* preenche o quadro, sem faixa */
  object-position: center !important; /* corte pelo centro (parte boa) */
}
@media (min-width: 1440px) {
  .service-photo-frame { max-width: 440px !important; }
}