/* ========================================================================
   Lucélia Oliveira — Estética e Micropigmentação
   Paleta rosê / nude / dourado
   ======================================================================== */

:root {
  --rose:        #b76e79;
  --rose-dark:   #8b5a5f;
  --rose-deep:   #6e4b4e;
  --blush:       #f7e7e4;
  --blush-soft:  #fbeeeb;
  --cream:       #fdf7f4;
  --gold:        #c9a15a;
  --ink:         #4a3a3b;
  --muted:       #8a7476;
  --white:       #ffffff;
  --whatsapp:    #25d366;
  --whatsapp-dk: #1da851;

  --shadow-sm: 0 4px 14px rgba(139, 90, 95, .10);
  --shadow-md: 0 12px 34px rgba(139, 90, 95, .16);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Montserrat", system-ui, -apple-system, sans-serif;
  --script:"Great Vibes", cursive;

  --radius: 18px;
  --maxw: 1160px;
}

* { 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;
}

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

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

.section { padding: 92px 0; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--rose-deep);
  margin-bottom: 18px;
}

.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-lead { margin: 0 auto; }

/* ---------- Brand mark (monograma) ---------- */
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}
.brand-mark-lg { width: 86px; height: 86px; font-size: 2.8rem; margin: 0 auto 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn:hover { transform: translateY(-2px); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.32); }
.btn-whatsapp:hover { background: var(--whatsapp-dk); }

.btn-ghost { background: transparent; color: var(--rose-deep); border-color: var(--rose); }
.btn-ghost:hover { background: var(--rose); color: #fff; }

/* ========================================================================
   HEADER
   ======================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 247, 244, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(183, 110, 121, .14);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; color: var(--rose-deep); }
.brand-sub { font-size: .6rem; text-transform: uppercase; letter-spacing: .22em; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .9rem; font-weight: 400; color: var(--ink); transition: color .2s; }
.nav a:hover { color: var(--rose); }
.nav .nav-cta { color: #fff; }

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

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.7), transparent 60%),
    linear-gradient(135deg, var(--blush) 0%, var(--blush-soft) 40%, var(--cream) 100%);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
}
.hero::before {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,161,90,.20), transparent 70%);
  top: -80px; right: -60px;
}
.hero::after {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(183,110,121,.18), transparent 70%);
  bottom: -140px; left: -100px;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; padding: 60px 24px; }

.hero-eyebrow {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--rose);
  margin-bottom: 4px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--rose-dark);
  margin-bottom: 22px;
}
.hero-desc { color: var(--muted); font-size: 1.05rem; max-width: 56ch; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========================================================================
   SOBRE
   ======================================================================== */
.sobre { background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.sobre-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.sobre-text p { color: var(--muted); margin-bottom: 18px; }
.sobre-text strong { color: var(--rose-deep); font-weight: 600; }

.feature-list { list-style: none; margin: 8px 0 28px; }
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .96rem;
}
.feature-list li::before {
  content: "❀";
  position: absolute; left: 0; top: 0;
  color: var(--rose);
}
.feature-list strong { color: var(--rose-deep); }

/* ========================================================================
   SERVIÇOS
   ======================================================================== */
.servicos { background: linear-gradient(180deg, var(--cream), var(--blush-soft)); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(183,110,121,.10);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 1.6rem;
  background: var(--blush);
  margin-bottom: 18px;
}
.card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--rose-deep); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .94rem; margin-bottom: 18px; flex: 1; }
.card-price {
  align-self: flex-start;
  font-weight: 600;
  color: var(--rose);
  background: var(--blush);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .9rem;
}
.servicos-note { text-align: center; margin-top: 40px; color: var(--muted); font-size: .9rem; font-style: italic; }

/* ========================================================================
   PROTOCOLO (Limpeza de pele)
   ======================================================================== */
.protocolo { background: var(--white); }
.protocolo-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.steps { list-style: none; margin: 26px 0; }
.steps li { display: flex; gap: 16px; margin-bottom: 18px; align-items: flex-start; }
.steps li span {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff; font-weight: 600; font-size: .9rem;
}
.steps li strong { color: var(--rose-deep); display: block; }
.steps li p { color: var(--muted); font-size: .9rem; }
.protocolo-price {
  display: inline-flex; flex-direction: column;
  border: 2px solid var(--rose);
  border-radius: 14px;
  padding: 14px 28px;
  margin-top: 8px;
}
.protocolo-price span { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.protocolo-price strong { font-family: var(--serif); font-size: 2rem; color: var(--rose-deep); }
.protocolo-photo img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ========================================================================
   GALERIA
   ======================================================================== */
.galeria { background: linear-gradient(180deg, var(--blush-soft), var(--cream)); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }

/* ========================================================================
   CONTATO
   ======================================================================== */
.contato { background: var(--white); }
.contato-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.contato-list { list-style: none; margin: 26px 0 30px; }
.contato-list li { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.contato-ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--blush);
  border-radius: 14px;
  font-size: 1.3rem;
}
.contato-list strong { display: block; color: var(--rose-deep); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.contato-list a { color: var(--rose); font-size: 1.15rem; font-weight: 500; }
.contato-list a:hover { text-decoration: underline; }

.contato-card {
  text-align: center;
  background: linear-gradient(160deg, var(--blush), var(--blush-soft));
  border-radius: var(--radius);
  padding: 44px 30px;
  box-shadow: var(--shadow-sm);
}
.contato-card h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--rose-deep); }
.contato-card p { color: var(--muted); font-size: .9rem; }
.contato-tag { font-family: var(--serif); font-style: italic; color: var(--rose); margin-top: 14px !important; font-size: 1.05rem !important; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer { background: var(--rose-deep); color: rgba(255,255,255,.86); padding-top: 50px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; padding-bottom: 34px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { display: block; font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.footer-brand small { color: rgba(255,255,255,.7); font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; }
.footer-nav, .footer-social { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a, .footer-social a { font-size: .9rem; color: rgba(255,255,255,.82); transition: color .2s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.6); }

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

/* ========================================================================
   REVEAL (animação de entrada)
   ======================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ========================================================================
   RESPONSIVO
   ======================================================================== */
@media (max-width: 900px) {
  .sobre-grid, .protocolo-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .protocolo-photo { order: -1; }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(183,110,121,.14);
    transform: translateY(-140%);
    transition: transform .32s ease;
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
