/* ===================================================================
   Jaciara Araújo · Estética Avançada
   Paleta: nude / rosé / dourado / plum profundo
   =================================================================== */
:root {
  --plum:        #3a2a32;
  --plum-soft:   #5a4750;
  --nude:        #f6efe9;
  --nude-deep:   #ece0d6;
  --rose:        #c98c84;
  --rose-soft:   #e7c4bd;
  --gold:        #c8a86b;
  --gold-deep:   #b08d4e;
  --cream:       #fbf7f3;
  --white:       #ffffff;
  --ink:         #2c2228;
  --muted:       #8a7a80;
  --whats:       #25d366;
  --whats-deep:  #1da851;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", -apple-system, "Segoe UI", sans-serif;

  --shadow-sm: 0 6px 20px rgba(58,42,50,.08);
  --shadow-md: 0 18px 50px rgba(58,42,50,.14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; color: var(--plum); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
em { font-style: italic; color: var(--rose); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-sub { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: .92rem;
  letter-spacing: .02em; cursor: pointer; border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn .ico { width: 18px; height: 18px; fill: currentColor; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn-whats:hover { background: var(--whats-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.4); }
.btn-dark { background: var(--plum); color: var(--nude); }
.btn-dark:hover { background: var(--plum-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--plum); border: 1.5px solid var(--nude-deep); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,243,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,107,.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--plum);
  background: linear-gradient(135deg, var(--rose-soft), var(--gold));
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--plum); letter-spacing: .01em; }
.brand-text small { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); }
.brand--light .brand-text strong { color: var(--nude); }
.brand--light .brand-text small { color: var(--gold); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: .92rem; color: var(--plum-soft); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--plum); border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; background: var(--nude); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(231,196,189,.55), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(200,168,107,.28), transparent 40%),
    linear-gradient(160deg, var(--cream) 0%, var(--nude) 60%, var(--nude-deep) 100%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding-top: 70px; padding-bottom: 90px;
}
.hero-copy h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); margin: 8px 0 22px; }
.hero .lead { font-size: 1.15rem; color: var(--plum-soft); max-width: 30em; margin-bottom: 34px; }
.hero .lead strong { color: var(--plum); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-photo { position: relative; }
.hero-badge {
  position: absolute; bottom: 26px; left: -18px;
  background: var(--white); border-radius: 16px; padding: 16px 22px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(200,168,107,.25);
}
.hero-badge strong { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-deep); line-height: 1; }
.hero-badge span { font-size: .8rem; color: var(--muted); line-height: 1.2; }

/* ===== PHOTO SLOTS (placeholders p/ fotos reais) ===== */
.photo-slot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.35) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--rose-soft), var(--nude-deep) 55%, var(--gold));
  border: 1.5px dashed rgba(176,141,78,.5);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.photo-slot img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
}
.photo-slot .slot-hint {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--plum); background: rgba(255,255,255,.7);
  padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(3px);
}
.photo-portrait { aspect-ratio: 4/5; }
.photo-tall { aspect-ratio: 3/4; }

/* ===== STATS ===== */
.stats { background: var(--plum); color: var(--nude); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 44px 24px; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--gold); margin-bottom: 4px; }
.stat span { font-size: .85rem; color: rgba(246,239,233,.72); letter-spacing: .02em; }

/* ===== SOBRE ===== */
.sobre { background: var(--cream); }
.sobre-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.sobre-photo { position: relative; }
.sobre-photo-accent {
  position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 1.5px solid var(--gold); border-radius: var(--radius);
}
.sobre-copy h2 { margin: 6px 0 20px; }
.sobre-copy p { color: var(--plum-soft); margin-bottom: 18px; }
.sobre-copy .quote {
  font-family: var(--serif); font-style: italic; font-size: 1.35rem;
  color: var(--rose); line-height: 1.4; border-left: 3px solid var(--gold);
  padding-left: 20px; margin: 24px 0;
}
.check-list { list-style: none; margin: 0 0 28px; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--plum-soft); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: .7rem;
  display: grid; place-items: center;
}

/* ===== TRATAMENTOS ===== */
.tratamentos { background: linear-gradient(180deg, var(--nude) 0%, var(--cream) 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(200,168,107,.14);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-ico {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--nude), var(--rose-soft));
}
.card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ===== RESULTADOS ===== */
.resultados { background: var(--nude); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.photo-slot.gal { aspect-ratio: 3/4; }
.gallery-note { text-align: center; margin-top: 28px; color: var(--muted); }
.gallery-note a { color: var(--gold-deep); font-weight: 500; }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: var(--cream); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(200,168,107,.14);
}
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.quote-card blockquote {
  font-family: var(--serif); font-size: 1.3rem; font-style: italic;
  color: var(--plum); line-height: 1.45; margin-bottom: 16px;
}
.quote-card figcaption { font-size: .85rem; color: var(--plum-soft); letter-spacing: .04em; font-weight: 500; }
.quote-card figcaption span { color: var(--muted); font-weight: 300; }

/* ===== CTA BAND ===== */
.cta-band {
  background:
    radial-gradient(circle at 15% 30%, rgba(200,168,107,.4), transparent 50%),
    linear-gradient(135deg, var(--plum) 0%, var(--plum-soft) 100%);
  color: var(--nude); text-align: center;
}
.cta-inner { padding: 88px 24px; }
.cta-inner h2 { color: var(--nude); margin-bottom: 14px; }
.cta-inner p { color: rgba(246,239,233,.8); max-width: 34em; margin: 0 auto 30px; font-size: 1.1rem; }

/* ===== JORNADA / COMO FUNCIONA ===== */
.jornada { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 34px 26px 30px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,168,107,.14);
}
.step-num {
  display: inline-block; font-family: var(--serif); font-size: 2.4rem;
  font-weight: 600; line-height: 1; color: var(--rose-soft); margin-bottom: 12px;
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ===== EXPERIÊNCIA / RENOVIDAY ===== */
.experiencia { background: linear-gradient(180deg, var(--cream) 0%, var(--nude) 100%); }
.experiencia-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.experiencia-copy h2 { margin: 6px 0 18px; font-size: clamp(2.4rem, 4.5vw, 3.4rem); }
.experiencia-copy p { color: var(--plum-soft); margin-bottom: 16px; }
.experiencia-copy .quote {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--rose);
  line-height: 1.4; border-left: 3px solid var(--gold); padding-left: 20px; margin: 22px 0;
}
.experiencia-photo .photo-slot { max-width: 380px; margin-left: auto; }

/* ===== FAQ ===== */
.faq { background: var(--nude); }
.faq-inner { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: var(--white); border-radius: 14px; border: 1px solid rgba(200,168,107,.18);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.acc-item summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--serif); font-size: 1.22rem; color: var(--plum); font-weight: 500;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; font-weight: 300; color: var(--gold-deep);
  transition: transform .3s ease;
}
.acc-item[open] summary::after { content: "−"; }
.acc-item summary:hover { color: var(--gold-deep); }
.acc-body { padding: 0 24px 22px; }
.acc-body p { color: var(--muted); font-size: .98rem; }

/* ===== LOCALIZAÇÃO ===== */
.localizacao { background: var(--cream); }
.localizacao-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.localizacao-copy h2 { margin: 6px 0 16px; }
.localizacao-copy p { color: var(--plum-soft); margin-bottom: 24px; }
.loc-list { list-style: none; margin: 0 0 28px; }
.loc-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--plum-soft); }
.loc-ico { font-size: 1.1rem; }
.localizacao-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,168,107,.2);
}
.loc-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.localizacao-map .map-link { display: block; line-height: 0; }
.localizacao-map iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(.15); pointer-events: none; }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: var(--nude); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; padding: 70px 24px 50px; }
.footer-brand p { color: rgba(246,239,233,.6); margin-top: 18px; font-size: .94rem; max-width: 32em; }
.footer-col h4 { font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; color: rgba(246,239,233,.72); font-size: .94rem; }
.footer-contacts a { transition: color .2s; }
.footer-contacts a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(246,239,233,.12); padding: 22px 0; }
.footer-bottom span { font-size: .82rem; color: rgba(246,239,233,.45); }

/* ===== WHATSAPP FLOAT ===== */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whats); display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .25s ease;
  animation: pulse 2.4s infinite;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== BARRA FIXA DE AGENDAMENTO (MOBILE) ===== */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 210;
  align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px calc(15px + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, var(--whats), var(--whats-deep));
  color: #fff; font-family: var(--sans); font-weight: 600; font-size: 1.02rem;
  letter-spacing: .01em; box-shadow: 0 -8px 24px rgba(58,42,50,.18);
}
.mobile-cta .ico { width: 20px; height: 20px; fill: #fff; }

/* ===== REVEAL ON SCROLL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 420px; margin: 0 auto; width: 100%; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-photo { max-width: 420px; margin: 0 auto; width: 100%; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .experiencia-grid { grid-template-columns: 1fr; gap: 44px; }
  .experiencia-photo .photo-slot { margin: 0 auto; max-width: 420px; }
  .localizacao-grid { grid-template-columns: 1fr; gap: 36px; }
  .localizacao-map iframe { height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* menu */
  .nav-links {
    position: fixed; top: 76px; right: 0; width: 76%; max-width: 300px;
    height: calc(100vh - 76px); background: var(--cream);
    flex-direction: column; gap: 0; padding: 20px;
    box-shadow: var(--shadow-md); transform: translateX(110%); transition: transform .35s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 16px 4px; border-bottom: 1px solid rgba(200,168,107,.15); font-size: 1.05rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* hero centralizado e respirável */
  .hero-grid { padding-top: 48px; padding-bottom: 60px; gap: 34px; text-align: center; }
  .hero-copy h1 { font-size: 2.45rem; }
  .hero .lead { font-size: 1.06rem; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-photo { max-width: 320px; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }

  /* seções */
  .section-head { margin-bottom: 40px; }
  .cards, .quotes, .steps { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .sobre-copy .quote { font-size: 1.2rem; }
  .sobre-photo-accent { inset: 12px -12px -12px 12px; }
  .cta-inner { padding: 64px 22px; }
  .cta-inner .btn { width: 100%; justify-content: center; }

  /* barra fixa + float */
  .mobile-cta { display: flex; }
  .whats-float { display: none; }
  body { padding-bottom: 72px; }
}

@media (max-width: 380px) {
  .hero-copy h1 { font-size: 2.15rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery { gap: 12px; }
}
