:root {
  --bg: #0a0a0a;
  --cream: #ece3d7;
  --rose: #c99a86;
  --rose-soft: #d4a894;
  --serif: "Playfair Display", Georgia, serif;

  /* paleta da identidade da cliente (Gral Nunes) */
  --wine: #511717;
  --ink: #150a08;
  --taupe: #bca39b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--serif);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 1rem clamp(1.5rem, 3.2vw, 3.5rem) clamp(2rem, 5vh, 4rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(6, 4, 5, 0.82) 0%,
    rgba(6, 4, 5, 0.6) 30%,
    rgba(6, 4, 5, 0.25) 55%,
    rgba(6, 4, 5, 0) 75%
  );
}

/* ============ NAV ============ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 20;
}

.brand { flex-shrink: 0; }
.brand img {
  width: clamp(150px, 15vw, 230px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.8rem);
  margin-left: auto;
}
.nav-links a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--cream);
  position: relative;
  transition: color .25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--rose-soft); }
.nav-links a:hover::after { width: 100%; }

.btn-outline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--cream);
  border: 1px solid var(--rose);
  border-radius: 999px;
  padding: 0.7em 1.6em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  transition: background .3s ease, color .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-outline:hover { background: var(--rose); color: #1a1512; }
.btn-outline .arrow { font-style: normal; }

/* hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ SELO / MARCA D'ÁGUA ============ */
.seal {
  position: absolute;
  top: clamp(8rem, 19vh, 13rem);
  right: clamp(1.5rem, 4vw, 5rem);
  width: clamp(120px, 15vw, 300px);
  height: auto;
  z-index: 5;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .seal { animation: none; }
}

/* ============ CONTEÚDO ============ */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 10;
  padding-top: 3vh;
}

.hero-block {
  position: relative;
  width: clamp(320px, 48vw, 1050px);
  /* espaço reservado embaixo da imagem pro botão flutuante */
  padding-bottom: clamp(4.2rem, 9vh, 6.4rem);
}

.hero-text {
  width: 100%;
  height: auto;
  display: block;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: #200508;
  background: var(--rose);
  border: 0;
  border-radius: 999px;
  padding: 0.85em 2em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s ease, background .3s ease, box-shadow .3s ease;
}
.btn-cta:hover { background: var(--rose-soft); transform: translateY(-2px); }
.btn-cta:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-cta .arrow { font-style: normal; }

/* posicionamento flutuante especifico da Hero */
.hero-block .btn-cta {
  position: absolute;
  /* 1.6% = borda esquerda real do texto dentro do PNG (medida em pixels) —
     a imagem tem uma margem transparente mínima antes do texto começar */
  left: 1.6%;
  top: calc(100% - clamp(4.2rem, 9vh, 6.4rem) + clamp(1.4rem, 3vh, 2.6rem));
}

/* ============ RESPONSIVO ============ */
@media (max-width: 820px) {
  .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 5.5rem;
    right: clamp(1.5rem, 4vw, 4rem);
    left: clamp(1.5rem, 4vw, 4rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    background: rgba(12,12,12,0.96);
    border: 1px solid rgba(201,154,134,0.25);
    border-radius: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
    padding-block: 0;
    z-index: 30;
  }
  .nav-links.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding: 1.8rem 1.6rem;
  }
  .nav-links a { font-size: 1.35rem; }

  .hero-block { width: min(78vw, 560px); }
  .seal { top: auto; bottom: 30vh; width: clamp(96px, 22vw, 150px); opacity: 0.9; }
}

@media (max-width: 480px) {
  .hero-block { width: 86vw; }
  .seal { bottom: 34vh; right: 1.2rem; }
}

/* ============ REVEAL CINEMATICO ============ */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.15s cubic-bezier(.16,1,.3,1), transform 1.15s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ TRABALHOS ============ */
.trabalhos {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #1e0f0c 45%, var(--ink) 100%);
  padding: clamp(5rem, 11vh, 8rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}
.trabalhos::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 50%;
  width: 130%;
  height: 65%;
  background: radial-gradient(circle, rgba(81,23,23,0.5), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.trabalhos-intro {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vh, 4.5rem);
  text-align: center;
}
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
}
.trabalhos-intro h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin: .6rem 0 1.2rem;
  line-height: 1.15;
}
.trabalhos-intro h2 em { font-style: italic; color: var(--rose-soft); }
.trabalhos-intro p {
  color: rgba(236,227,215,0.75);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.7;
}

/* ============ FEATURE ROWS (produto / assinatura) ============ */
.feature-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  min-height: min(82vh, 680px);
  max-width: 1300px;
  margin: 0 auto clamp(2.4rem, 5vh, 3.6rem);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(188,163,155,0.15);
  background: rgba(255,255,255,0.02);
}
.feature-row.reverse { flex-direction: row-reverse; }

.feature-media { flex: 1 1 50%; position: relative; overflow: hidden; }
.feature-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
}
.feature-row:hover .feature-media img { transform: scale(1.05); }

.feature-copy {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(2rem, 4vw, 4.2rem);
}
.tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--rose-soft);
}
.feature-copy h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--cream);
  line-height: 1.25;
}
.feature-copy p {
  color: rgba(236,227,215,0.8);
  line-height: 1.75;
  font-size: clamp(.95rem, 1vw, 1.08rem);
}
.feature-copy .quote {
  font-style: italic;
  color: var(--cream);
  font-size: 1.05rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rose);
}
.signature { font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--taupe); }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin-top: .4rem; }
.chips li {
  font-size: .8rem;
  letter-spacing: .03em;
  padding: .45em 1em;
  border: 1px solid rgba(188,163,155,0.35);
  border-radius: 999px;
  color: var(--taupe);
}

/* ============ CARROSSEL INFINITO ============ */
.carousel-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: clamp(1rem, 3vh, 2rem) 0 clamp(3rem, 6vh, 4.5rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.carousel-track {
  display: flex;
  width: max-content;
  gap: clamp(1rem, 2vw, 1.8rem);
  animation: marquee 34s linear infinite;
}
.carousel-wrap:hover .carousel-track { animation-play-state: paused; }
.carousel-track img {
  height: clamp(260px, 36vw, 420px);
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trabalhos-cta { position: relative; z-index: 2; text-align: center; margin-top: clamp(1rem, 3vh, 2rem); }

@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { flex-direction: column; min-height: auto; }
  .feature-media { min-height: 320px; }
  .feature-copy { padding: 1.8rem; }
}

/* ============ CURSO ============ */
.curso {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #2a1310 50%, var(--ink) 100%);
  padding: clamp(5rem, 11vh, 8rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}
.curso::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 50%;
  width: 120%;
  height: 60%;
  background: radial-gradient(circle, rgba(81,23,23,0.5), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.curso-intro {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vh, 4.5rem);
  text-align: center;
}
.curso-intro h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin: .6rem 0 1.2rem;
  line-height: 1.15;
}
.curso-intro h2 em { font-style: italic; color: var(--rose-soft); }
.curso-intro p {
  color: rgba(236,227,215,0.75);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.7;
}

.curso-plans {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.curso-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(2rem, 3vw, 2.8rem);
  border: 1px solid rgba(188,163,155,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .35s ease;
}
.curso-card:hover { transform: translateY(-4px); border-color: rgba(188,163,155,0.35); }

.curso-card--vip {
  border-color: rgba(201,154,134,0.4);
  background: linear-gradient(160deg, rgba(81,23,23,0.35), rgba(255,255,255,0.02) 60%);
  box-shadow: 0 20px 50px -24px rgba(81,23,23,0.75);
}

.curso-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: var(--cream);
}
.curso-desc { color: rgba(236,227,215,0.8); line-height: 1.6; font-size: .98rem; }

.curso-checklist { display: flex; flex-direction: column; gap: .6rem; list-style: none; }
.curso-checklist li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(236,227,215,0.85);
  font-size: .96rem;
  line-height: 1.5;
}
.curso-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--rose-soft);
  font-weight: 700;
}

.curso-price { display: flex; align-items: baseline; gap: .4rem; margin-top: .4rem; }
.curso-price-label {
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-right: .6rem;
}
.curso-price-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  color: var(--rose-soft);
}
.curso-price-value small { font-size: .55em; font-weight: 400; }

.curso-note { color: rgba(236,227,215,0.65); font-size: .88rem; font-style: italic; line-height: 1.55; }

.curso-card .btn-cta, .curso-card .btn-outline { align-self: flex-start; margin-top: auto; }

@media (max-width: 760px) {
  .curso-plans { grid-template-columns: 1fr; }
}

/* ============ AGENDAMENTOS ============ */
.agendamentos {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--ink) 0%, #240f0c 50%, var(--ink) 100%);
  padding: clamp(5rem, 11vh, 8rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}
.agendamentos::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 70%;
  height: 55%;
  background: radial-gradient(circle, rgba(81,23,23,0.55), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ag-intro {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(3.5rem, 7vh, 5rem);
  text-align: center;
}
.ag-intro h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--cream);
  margin: .6rem 0 1.2rem;
  line-height: 1.15;
}
.ag-intro p { color: rgba(236,227,215,0.75); font-size: clamp(1rem, 1.1vw, 1.15rem); line-height: 1.7; }

.ag-wrap { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; }

.ag-step { margin-bottom: clamp(2.6rem, 5vh, 3.6rem); }
.ag-step-title {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--rose);
  color: var(--rose-soft);
  font-size: .95rem;
  font-style: normal;
  flex-shrink: 0;
}

/* --- Servicos --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(.8rem, 1.6vw, 1.2rem);
}
.service-card {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  color: var(--cream);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(188,163,155,0.22);
  border-radius: 14px;
  padding: clamp(1.4rem, 2.4vw, 1.9rem) 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .35s ease, background .4s ease, box-shadow .4s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--rose-soft); }
.service-card.selected {
  background: linear-gradient(135deg, var(--wine), #3a1210);
  border-color: var(--rose);
  box-shadow: 0 14px 34px -14px rgba(81,23,23,0.75), 0 0 0 1px rgba(212,168,148,0.4) inset;
  transform: translateY(-4px) scale(1.03);
}

/* --- Calendario --- */
.calendar {
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(188,163,155,0.18);
  border-radius: 18px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.calendar-header .cal-month {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  text-transform: capitalize;
}
.cal-nav {
  background: none;
  border: 1px solid rgba(188,163,155,0.3);
  color: var(--taupe);
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1rem;
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.cal-nav:hover:not(:disabled) { border-color: var(--rose); color: var(--rose-soft); transform: scale(1.08); }
.cal-nav:disabled { opacity: .25; cursor: not-allowed; }

.cal-weekdays, .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .3rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-bottom: .6rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: calIn .5s cubic-bezier(.16,1,.3,1) forwards;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}
.cal-day.empty { visibility: hidden; cursor: default; animation: none; }
.cal-day.disabled { color: rgba(236,227,215,0.22); cursor: not-allowed; }
.cal-day:not(.disabled):not(.empty):hover { background: rgba(188,163,155,0.18); }
.cal-day.selected {
  background: var(--rose);
  color: #200508;
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(201,154,134,0.22);
}
@keyframes calIn { to { opacity: 1; transform: translateY(0); } }

/* --- Horarios --- */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.6rem, 1.4vw, 1rem);
}
.time-slot {
  padding: .9em 0;
  border-radius: 12px;
  border: 1px solid rgba(188,163,155,0.25);
  background: rgba(255,255,255,0.02);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  animation: calIn .5s cubic-bezier(.16,1,.3,1) forwards;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}
.time-slot:hover:not(.unavailable):not(.selected) { border-color: var(--rose-soft); transform: translateY(-2px); }
.time-slot.selected {
  background: var(--rose);
  color: #200508;
  border-color: var(--rose);
  font-weight: 700;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 22px rgba(201,154,134,0.55), 0 10px 22px -10px rgba(0,0,0,0.55);
}
.time-slot:active:not(.unavailable) { transform: scale(.96); }
.time-slot.unavailable {
  opacity: .35 !important;
  cursor: not-allowed;
  text-decoration: line-through;
  animation: none;
}

/* --- Formulario de reserva --- */
.ag-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 560px;
  margin: 0 auto;
}
.ag-field { display: flex; flex-direction: column; gap: .5rem; }
.ag-field label {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--taupe);
}
.ag-field input, .ag-field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(188,163,155,0.28);
  border-radius: 10px;
  padding: .85em 1em;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.ag-field input:focus, .ag-field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,154,134,0.18);
}
.ag-field textarea { resize: vertical; min-height: 90px; }
.ag-summary {
  font-size: .95rem;
  color: var(--taupe);
  font-style: italic;
}
.ag-submit-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ag-msg { font-size: .92rem; line-height: 1.6; }
.ag-msg.error { color: #e2a3a3; }
.ag-msg.success { color: var(--rose-soft); }

.ag-confirmation {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(188,163,155,0.25);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.ag-confirmation h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); margin-bottom: .8rem; }
.ag-confirmation p { color: rgba(236,227,215,0.8); line-height: 1.7; }

/* --- Buscar / cancelar agendamento (botão compacto no topo) --- */
.ag-lookup-toggle-wrap { margin-top: clamp(1.6rem, 3vh, 2.2rem); display: flex; flex-direction: column; align-items: center; }
.ag-lookup-toggle {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--taupe);
  background: none;
  border: 1px solid rgba(188,163,155,0.35);
  border-radius: 999px;
  padding: .55em 1.4em;
  cursor: pointer;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.ag-lookup-toggle:hover { border-color: var(--rose); color: var(--rose-soft); }
.ag-lookup-toggle.active { background: rgba(188,163,155,0.12); border-color: var(--rose); color: var(--rose-soft); }

.ag-lookup-panel {
  max-width: 480px;
  width: 100%;
  margin-top: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(188,163,155,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  animation: calIn .45s cubic-bezier(.16,1,.3,1) forwards;
}
.ag-lookup-panel > p { color: rgba(236,227,215,0.7); margin-bottom: 1.2rem; }
.ag-lookup-row { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.ag-lookup-row input {
  flex: 1 1 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(188,163,155,0.28);
  border-radius: 10px;
  padding: .85em 1em;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
}
.ag-lookup-row input:focus { outline: none; border-color: var(--rose); }

.ag-appointment-card {
  margin-top: 1.6rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(188,163,155,0.25);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  text-align: left;
}
.ag-appointment-card dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; margin-bottom: 1.2rem; }
.ag-appointment-card dt { color: var(--taupe); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.ag-appointment-card dd { color: var(--cream); font-family: var(--serif); }
.ag-cancel-confirm { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }

.btn-ghost {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  border: 1px solid var(--rose);
  border-radius: 999px;
  padding: .7em 1.6em;
  background: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.btn-ghost:hover { background: var(--rose); color: #1a1512; }

@media (prefers-reduced-motion: reduce) {
  .cal-day, .time-slot { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 620px) {
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .ag-lookup-row { flex-direction: column; }
}

/* ============ CONTATO ============ */
.contato {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #240f0c 50%, var(--ink) 100%);
  padding: clamp(5rem, 11vh, 8rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}
.contato::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(81,23,23,0.5), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contato-intro {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vh, 4.5rem);
  text-align: center;
}
.contato-intro h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin: .6rem 0 1.2rem;
  line-height: 1.15;
}
.contato-intro h2 em { font-style: italic; color: var(--rose-soft); }
.contato-intro p {
  color: rgba(236,227,215,0.75);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.7;
}

.contato-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  max-width: 1000px;
  margin: 0 auto;
}

.contato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-align: center;
  padding: clamp(1.8rem, 2.6vw, 2.4rem) 1.4rem;
  border: 1px solid rgba(188,163,155,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .35s ease;
}
a.contato-card:hover { transform: translateY(-4px); border-color: rgba(188,163,155,0.4); }
.contato-card--static { cursor: default; }

.contato-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--rose-soft);
}
.contato-icon svg { width: 100%; height: 100%; }

.contato-card-label {
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--taupe);
}
.contato-card-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
}

.contato-cta { position: relative; z-index: 2; text-align: center; margin-top: clamp(2.4rem, 5vh, 3.2rem); }
