/* =========================================================
   Michele Kramer Estética — Landing Page
   Paleta: nude/rosé + verde botânico + dourado champagne
   ========================================================= */

:root {
  /* Paleta oficial Michele Kramer Estética */
  /* Base creme off-white */
  --bg:        #f1f0e8;
  --bg-soft:   #e6e2d6;
  --bg-card:   #ffffff;
  --rose:      #d8c4b5;
  --rose-deep: #a9745c;   /* terracota — acento da marca */

  /* Verde oliva botânico (cor do logo) */
  --green:       #4c5341;
  --green-deep:  #363b2d;
  --green-soft:  #5d6450;

  /* Terracota (substitui o dourado) */
  --gold:      #a9745c;
  --gold-soft: #c89a85;

  /* Texto */
  --ink:      #3a352e;
  --ink-soft: #6f6659;
  --line:     rgba(58,53,46,.12);

  --shadow-sm: 0 4px 18px rgba(58,50,46,.06);
  --shadow-md: 0 14px 40px rgba(58,50,46,.10);
  --radius:   18px;
  --radius-lg: 28px;
  --max: 1160px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--green-deep); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.muted { color: var(--ink-soft); }
.accent-green { color: var(--green); }
.accent-rose  { color: var(--rose-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(52,70,59,.22); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-wpp { background: #fff; color: var(--green); border-color: var(--line); }
.btn-wpp:hover { border-color: var(--green); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; transition: .3s ease;
}
.site-header.scrolled { background: rgba(241,240,232,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--green-deep); letter-spacing: .02em; }
.brand .tag  { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-deep); margin-top: 4px; }
.brand-logo { height: 48px; width: auto; display: block; transition: height .3s ease; }
.site-header.scrolled .brand-logo { height: 40px; }
.brand-logo--footer { height: 60px; }
@media (max-width: 560px) { .brand-logo { height: 40px; } }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a.navlink { font-size: .92rem; font-weight: 500; color: var(--ink); transition: color .2s; }
.nav a.navlink:hover { color: var(--rose-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--green-deep); transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 10%, var(--bg-soft) 0%, var(--bg) 55%);
  z-index: -2;
}
.hero-bgtext {
  position: absolute; top: 4%; right: -2%; z-index: -1;
  font-family: var(--serif); font-weight: 600; font-size: clamp(4rem, 13vw, 12rem);
  color: var(--rose); opacity: .28; line-height: .82; letter-spacing: -.02em;
  text-align: right; pointer-events: none; user-select: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-copy h1 { margin: 18px 0 20px; }
.hero-copy h1 .em { color: var(--rose-deep); font-style: italic; }
.hero-copy p.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 30ch; margin-bottom: 16px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 22px 0 30px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--green); font-weight: 500; }
.hero-meta svg { width: 18px; height: 18px; color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/5;
}
.hero-photo .badge {
  position: absolute; bottom: 22px; left: -18px; background: #fff;
  border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-photo .badge .ring { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--gold); }
.hero-photo .badge .ring svg { width: 22px; height: 22px; }
.hero-photo .badge b { font-family: var(--serif); font-size: 1.05rem; color: var(--green-deep); display: block; }
.hero-photo .badge small { font-size: .72rem; color: var(--ink-soft); }

/* ---------- Section shell ---------- */
section { position: relative; }
.section-pad { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Tratamentos ---------- */
.trat { background: var(--bg-soft); }
.trat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.trat-grid .feature { grid-column: span 1; }
.card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: .25s ease;
  display: flex; flex-direction: column; gap: 14px;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card .icon { width: 54px; height: 54px; border-radius: 16px; background: var(--green); color: var(--gold-soft); display: grid; place-items: center; }
.card .icon svg { width: 28px; height: 28px; }
.card.feature { background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%); color: #fff; }
.card.feature h3 { color: #fff; }
.card.feature .icon { background: rgba(255,255,255,.14); color: var(--gold-soft); }
.card.feature p { color: rgba(255,255,255,.82); }
.card .pill { align-self: flex-start; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--gold); color: var(--green-deep); }
.card p { color: var(--ink-soft); font-size: .96rem; }
.trat-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mini {
  background: var(--bg-card); border-radius: var(--radius); padding: 24px 22px;
  border: 1px solid var(--line); display: flex; gap: 16px; align-items: flex-start; transition: .25s;
}
.mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.mini .icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px; background: var(--bg-soft); color: var(--green); display: grid; place-items: center; }
.mini .icon svg { width: 22px; height: 22px; }
.mini h3 { font-size: 1.15rem; margin-bottom: 3px; }
.mini p { font-size: .86rem; color: var(--ink-soft); }

/* ---------- Sobre / Premium ---------- */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sobre-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.sobre-photos img { border-radius: var(--radius); box-shadow: var(--shadow-sm); object-fit: cover; width: 100%; height: 100%; }
.sobre-photos .tall { grid-row: span 2; aspect-ratio: 3/5; }
.sobre-photos .wide { aspect-ratio: 4/3; }
.sobre-copy h2 { margin: 14px 0 18px; }
.sobre-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.sobre-list { list-style: none; display: grid; gap: 12px; margin: 22px 0 8px; }
.sobre-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.sobre-list li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--green); margin-top: 2px; }

/* ---------- Vídeo ---------- */
.video { background: var(--green-deep); color: #fff; }
.video .section-head h2 { color: #fff; }
.video .section-head p { color: rgba(255,255,255,.7); }
.video .eyebrow { color: var(--gold-soft); }
.video .eyebrow::before { background: var(--gold); }
.video-frame {
  max-width: 360px; margin: 0 auto; position: relative;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 9/16; background: #000;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame .play {
  position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer;
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,.05)); border: 0; transition: .25s;
}
.video-frame .play .circle { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; }
.video-frame .play .circle svg { width: 30px; height: 30px; color: var(--green-deep); margin-left: 4px; }
.video-frame.playing .play { opacity: 0; pointer-events: none; }

/* ---------- Jornada (passos) ---------- */
.steps { background: var(--bg-soft); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--bg-card); border-radius: var(--radius); padding: 30px 24px;
  border: 1px solid var(--line); position: relative;
}
.step .num { font-family: var(--serif); font-size: 2.6rem; color: var(--rose); line-height: 1; }
.step h3 { font-size: 1.2rem; margin: 8px 0 8px; }
.step p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Agendamento ---------- */
.agenda-card {
  background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 56px 48px; text-align: center;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.agenda-card::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(201,169,106,.16); top: -120px; right: -100px; }
.agenda-card h2 { color: #fff; position: relative; }
.agenda-card p { color: rgba(255,255,255,.82); max-width: 50ch; margin: 16px auto 8px; position: relative; }
.agenda-hours { display: inline-flex; align-items: center; gap: 10px; margin: 18px 0 30px; padding: 10px 20px; border-radius: 999px; background: rgba(255,255,255,.1); font-size: .92rem; position: relative; }
.agenda-hours svg { width: 18px; height: 18px; color: var(--gold-soft); }
.agenda-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cal-embed { margin-top: 34px; background: #fff; border-radius: var(--radius); min-height: 120px; padding: 8px; position: relative; }

/* ---------- Contato ---------- */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: stretch; }
.contato-info { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; background: var(--bg-soft); color: var(--green); display: grid; place-items: center; }
.info-row .icon svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--serif); font-size: 1.2rem; color: var(--green-deep); display: block; margin-bottom: 2px; }
.info-row span { color: var(--ink-soft); font-size: .95rem; }
.contato-media { display: grid; gap: 14px; }
.contato-media img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.contato-media iframe { width: 100%; border: 0; border-radius: var(--radius); min-height: 220px; box-shadow: var(--shadow-sm); }

/* ---------- Disclaimer ---------- */
.disclaimer { background: var(--bg); padding: 26px 0; }
.disclaimer p { max-width: 760px; margin: 0 auto; text-align: center; font-size: .8rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.78); padding: 56px 0 26px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand .name { color: #fff; }
.site-footer .brand .tag { color: var(--gold-soft); }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: rgba(255,255,255,.74); margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; font-size: .8rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: var(--gold-soft); }

/* ---------- WhatsApp float ---------- */
.wpp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: .25s;
}
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .sobre-photos { max-width: 480px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: var(--bg); flex-direction: column; justify-content: center; gap: 26px; transform: translateX(100%); transition: .3s; box-shadow: var(--shadow-md); padding: 40px; }
  .nav.open { transform: none; }
  .nav .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; z-index: 101; }
  .hero-bgtext { font-size: 22vw; opacity: .18; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section-pad { padding: 62px 0; }
  .trat-grid, .trat-mini { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .agenda-card { padding: 40px 24px; }
  .hero { padding: 120px 0 60px; }
}
