/* ============================================================
   VIP ESTETIC — Landing Page Preenchimento Labial
   CSS — Identidade Visual Oficial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --noir-black:       #1a1a1a;
  --silk-beige:       #c9b99a;
  --silk-beige-light: #e8dccc;
  --pearl-white:      #f5f2ed;

  --blush-pink:       #e8d5cb;
  --soft-terracotta:  #c4826a;
  --rose-mauve:       #c08a9e;
  --sage-green:       #8a9e8c;

  --white:      #ffffff;
  --off-white:  #faf8f5;
  --light-gray: #eeebe6;
  --mid-gray:   #999087;
  --dark-gray:  #3d3830;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   28px;
  --radius-pill: 100px;

  --shadow-soft: 0 4px 30px rgba(26,26,26,0.07);
  --shadow-card: 0 8px 40px rgba(26,26,26,0.12);

  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--noir-black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--noir-black);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
p  { font-size: clamp(0.93rem, 1.4vw, 1.05rem); color: var(--dark-gray); line-height: 1.85; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silk-beige);
}

/* ---------- Layout ---------- */
.container        { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem); }
.container--narrow{ max-width: 820px; margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem); }
.section          { padding: var(--space-xl) 0; }
.section--alt     { background: var(--off-white); }
.section--blush   { background: var(--blush-pink); }
.section--dark    { background: var(--noir-black); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--pearl-white); }
.section--dark p  { color: var(--light-gray); }
.text-center      { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.divider       { width: 56px; height: 1px; background: var(--silk-beige); margin: 1.4rem auto; }
.divider--left { margin-left: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95rem 2.2rem; border-radius: var(--radius-pill);
  transition: var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--silk-beige); color: var(--noir-black); }
.btn--primary:hover { background: var(--soft-terracotta); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,130,106,0.35); }
.btn--rose    { background: var(--rose-mauve); color: var(--white); }
.btn--rose:hover { background: #b07590; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,138,158,0.35); }
.btn--outline { background: transparent; color: var(--silk-beige); border: 1.5px solid var(--silk-beige); }
.btn--outline:hover { background: var(--silk-beige); color: var(--noir-black); transform: translateY(-2px); }
.btn--outline-dark { background: transparent; color: var(--noir-black); border: 1.5px solid var(--noir-black); }
.btn--outline-dark:hover { background: var(--noir-black); color: var(--white); transform: translateY(-2px); }
.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn--lg { padding: 1.15rem 3rem; font-size: 0.88rem; }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.3rem 0; transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo {
  display: flex; align-items: center; height: 32px; transition: var(--transition);
}
.header__logo:hover { opacity: 0.8; }
.header__logo-img { height: 100%; width: auto; object-fit: contain; }
.header__logo-light { display: block; }
.header__logo-dark  { display: none; }
.header.scrolled .header__logo-light { display: none; }
.header.scrolled .header__logo-dark  { display: block; }
.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav-link {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: var(--transition);
}
.header__nav-link:hover { color: var(--silk-beige); }
.header.scrolled .header__nav-link { color: var(--mid-gray); }
.header.scrolled .header__nav-link:hover { color: var(--noir-black); }
.header__cta .btn { padding: 0.65rem 1.5rem; font-size: 0.75rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--noir-black);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%; opacity: 0.52;
}
.hero__gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(26,26,26,0.96) 0%,
    rgba(26,26,26,0.72) 45%,
    rgba(26,26,26,0.28) 100%
  );
}
/* Detalhe rosé no canto — exclusivo desta LP */
.hero__accent {
  position: absolute; bottom: 0; right: 0;
  width: 45%; height: 45%;
  background: radial-gradient(ellipse at bottom right, rgba(192,138,158,0.18) 0%, transparent 65%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2; max-width: 640px;
  padding-top: 80px;
}
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero__title   { color: var(--white); margin-bottom: 1.4rem; font-weight: 300; }
.hero__title em { font-style: italic; color: var(--silk-beige); }
.hero__subtitle { color: var(--light-gray); max-width: 510px; margin-bottom: 1rem; font-size: 1.05rem; }
.hero__note {
  color: rgba(255,255,255,0.45); font-size: 0.8rem;
  letter-spacing: 0.06em; margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 3.5rem; }
.hero__stats   { display: flex; gap: 3rem; }
.hero__stat span { display: block; }
.hero__stat-num {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--silk-beige); line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid-gray); margin-top: 0.3rem;
}

/* ---------- TRUST BAR ---------- */
.trust-bar { background: var(--silk-beige); padding: 1.1rem 0; }
.trust-bar__inner {
  display: flex; align-items: center;
  justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--noir-black);
}
.trust-item svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ---------- O QUE É ---------- */
.what__image-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.what__image-wrap img { width: 100%; height: 580px; object-fit: cover; object-position: center top; }
.what__ribbon {
  position: absolute; top: 2rem; right: -1px;
  background: var(--silk-beige); color: var(--noir-black);
  padding: 0.6rem 1.4rem 0.6rem 1rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
.what__text .eyebrow { margin-bottom: 1rem; }
.what__text h2       { margin-bottom: 1rem; }
.what__text p        { margin-bottom: 1.2rem; }
.what__highlight {
  background: var(--blush-pink); border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem; margin: 1.5rem 0;
  border-left: 3px solid var(--rose-mauve);
}
.what__highlight p { margin: 0; font-size: 0.95rem; color: var(--dark-gray); }

/* ---------- PROTOCOLOS ---------- */
.protocols__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.protocol__card {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl); padding: 2.2rem 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.protocol__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--silk-beige), var(--rose-mauve));
  opacity: 0; transition: var(--transition);
}
.protocol__card:hover { border-color: var(--silk-beige); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.protocol__card:hover::before { opacity: 1; }
.protocol__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--blush-pink); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.3rem;
}
.protocol__icon svg { width: 24px; height: 24px; color: var(--soft-terracotta); }
.protocol__card h4 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.protocol__tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill); background: var(--blush-pink);
  color: var(--dark-gray);
}

/* ---------- COMO FUNCIONA ---------- */
.steps__wrap { margin-top: 3rem; position: relative; }
.steps__line {
  position: absolute; left: 24px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--silk-beige) 0%, transparent 100%);
}
.step {
  display: flex; gap: 2rem; padding-bottom: 2.5rem; position: relative;
}
.step__num {
  width: 48px; height: 48px; background: var(--silk-beige); color: var(--noir-black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.step__body { padding-top: 0.7rem; }
.step__body h4 { margin-bottom: 0.4rem; }

/* ---------- DIFERENCIAIS ---------- */
.diffs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem; margin-top: 3rem;
}
.diff__item {
  text-align: center; padding: 2.2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,185,154,0.22);
  transition: var(--transition);
}
.diff__item:hover {
  border-color: var(--silk-beige);
  background: rgba(201,185,154,0.08);
  transform: translateY(-4px);
}
.diff__item svg { width: 36px; height: 36px; color: var(--silk-beige); margin: 0 auto 1rem; display: block; }
.diff__item h4  { color: var(--pearl-white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.diff__item p   { color: var(--mid-gray); font-size: 0.88rem; line-height: 1.7; }

/* ---------- RESULTADOS ---------- */
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.result__card {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-soft); background: var(--white);
  border: 1px solid var(--light-gray); transition: var(--transition);
}
.result__card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.result__images { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.result__images img { width: 100%; height: 260px; object-fit: cover; object-position: center top; }
.result__label {
  position: absolute; top: 0.7rem;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill); color: var(--white);
}
.result__label--before { left: 0.7rem; background: rgba(0,0,0,0.5); }
.result__label--after  { right: 0.7rem; background: var(--rose-mauve); }
.result__info { padding: 1.2rem 1.5rem; }
.result__info p { font-size: 0.85rem; color: var(--mid-gray); }

/* ---------- DEPOIMENTOS ---------- */
.testis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi__card {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl); padding: 2.2rem;
  transition: var(--transition); display: flex; flex-direction: column;
}
.testi__card:hover { box-shadow: var(--shadow-card); border-color: var(--silk-beige); transform: translateY(-4px); }
.testi__quote { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--blush-pink); margin-bottom: 1rem; }
.testi__text  { font-style: italic; color: var(--dark-gray); line-height: 1.75; margin-bottom: auto; font-size: 0.97rem; }
.testi__footer { margin-top: 1.8rem; display: flex; align-items: center; gap: 0.9rem; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--blush-pink); overflow: hidden; flex-shrink: 0; }
.testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi__name  { font-weight: 500; font-size: 0.9rem; }
.testi__proc  { font-size: 0.76rem; color: var(--mid-gray); }
.testi__stars { display: flex; gap: 3px; color: var(--rose-mauve); margin-bottom: 0.3rem; }
.testi__stars svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- FAQ ---------- */
.faq__list { margin-top: 3rem; display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--light-gray); }
.faq__btn {
  width: 100%; text-align: left; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 400;
  color: var(--noir-black); transition: var(--transition);
}
.faq__btn:hover { color: var(--soft-terracotta); }
.faq__icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--silk-beige);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--silk-beige);
}
.faq__item.open .faq__icon {
  background: var(--silk-beige); color: var(--noir-black); transform: rotate(45deg);
}
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.open .faq__answer { max-height: 400px; padding-bottom: 1.5rem; }
.faq__answer p { font-size: 0.95rem; line-height: 1.85; color: var(--dark-gray); }

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative; overflow: hidden; text-align: center;
  padding: var(--space-xl) 0;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--noir-black) 0%, #221a1d 100%);
}
.cta-final__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,138,158,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(201,185,154,0.12) 0%, transparent 55%);
}
.cta-final__content { position: relative; z-index: 1; }
.cta-final h2      { color: var(--white); margin-bottom: 1rem; }
.cta-final h2 em   { font-style: italic; color: var(--silk-beige); }
.cta-final p       { color: var(--light-gray); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.cta-final__note   { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
}
.wa-float a {
  width: 62px; height: 62px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float a:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 42px rgba(37,211,102,0.65); }
}

/* ---------- Footer ---------- */
.footer {
  background: #111111; color: var(--mid-gray);
  padding: 3rem 0 2rem; text-align: center;
}
.footer__logo { font-family: var(--font-display); font-size: 1.9rem; color: var(--silk-beige); letter-spacing: 0.07em; margin-bottom: 1rem; display: none; }
.footer__logo-img { display: block; margin: 0 auto 1rem; opacity: 0.8; }
.footer__bottom-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; align-items: center; }
.what__tall-img { height: 640px; object-fit: cover; object-position: center top; }
.footer__info { font-size: 0.85rem; line-height: 2; margin-bottom: 1.5rem; }
.footer__divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1.5rem 0; }
.footer__bottom { font-size: 0.74rem; color: rgba(255,255,255,0.22); }

/* ---------- Animações ---------- */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .header__nav { display: none; }
}
@media (max-width: 600px) {
  :root { --space-xl: 4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats   { gap: 1.5rem; flex-wrap: wrap; }
  .trust-bar__inner { gap: 1.2rem; justify-content: flex-start; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .wa-float { bottom: 1.2rem; right: 1.2rem; }
}
