/* ===== Derma Lift — estilos ===== */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,500;0,600;1,400&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #FAF8F4;
  --bg-alt: #F1EEE6;
  --surface: #FFFFFF;
  --text: #262E28;
  --text-soft: #5C6660;
  --text-faint: #9AA39C;
  --border: #E3DFD3;
  --accent: #6F8F72;
  --accent-dark: #435846;
  --accent-darker: #20261F;
  --accent-soft: #E8EEE5;
  --font-serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-sans: 'Work Sans', system-ui, -apple-system, sans-serif;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; color: #20261F; margin: 0; }

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

.eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12.5px;
  letter-spacing: 0.10em;
  font-weight: 600;
  text-transform: uppercase;
}
.eyebrow-dark { background: rgba(38,46,40,0.06); }
.eyebrow-light { background: rgba(232,238,229,0.12); color: #DCE5D9; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-lead { font-size: 16px; color: var(--text-soft); line-height: 1.6; margin: 12px 0 0; }
.placeholder-note { font-size: 13px; font-style: italic; color: var(--text-faint); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 17px 32px;
  border-radius: 12px;
  background: var(--accent-dark);
  color: var(--bg);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover { background: #526B55; transform: translateY(-1px); }
.btn-highlight { animation: btn-pulse 0.5s ease-in-out 2; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111,143,114,0.6); }
  50% { box-shadow: 0 0 0 14px rgba(111,143,114,0); }
}
.btn-full { width: 100%; }
.btn-light { background: var(--bg); color: var(--accent-darker); }
.btn-light:hover { background: #EFEBE0; }

/* Top bar */
.topbar { width: 100%; padding: 28px 24px 0; text-align: center; }
.topbar .logo { font-family: var(--font-serif); font-size: 22px; letter-spacing: 0.06em; font-weight: 600; }

/* Hero */
.hero { width: 100%; padding: 56px 0 64px; }
.hero-inner { max-width: 820px; text-align: center; }
.hero h1 { font-size: clamp(30px, 4.6vw, 54px); line-height: 1.14; margin: 24px 0 0; }
.hero .subhead { font-size: clamp(16px, 1.8vw, 19px); color: var(--text-soft); margin: 20px auto 0; max-width: 600px; }
.scroll-cue { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-faint); font-size: 13px; }
.scroll-cue:hover { color: var(--accent-dark); }

/* VSL */
.vsl { width: 100%; padding: 0 0 72px; }
.vsl-inner { max-width: 900px; text-align: center; }
.vsl h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.video-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('../images/video-poster.png'), linear-gradient(135deg, #E8EEE5 0%, #F1EEE6 45%, #DCE5D9 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(38,46,40,0.12);
  margin: 24px auto 0;
}
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; display: block; position: relative; z-index: 1; }
.video-sound-overlay {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  z-index: 3; width: 84%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: #3DE83D; border: none; border-radius: 14px;
  padding: 20px 16px; cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  transition: transform 0.15s ease;
}
.video-sound-overlay:hover { transform: translate(-50%, -50%) scale(1.03); }
.video-sound-overlay svg { color: #111; }
.video-sound-overlay span { color: #111; font-weight: 800; font-size: 17px; text-align: center; }
.video-pause-btn {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(32,38,31,0.55); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.15s ease, transform 0.15s ease;
}
.video-pause-btn:hover { background: rgba(32,38,31,0.75); transform: scale(1.06); }
.vsl-cta-btn { max-width: 420px; margin: 22px auto 0; }
.video-note { font-size: 13px; color: var(--text-faint); margin-top: 14px; }
.video-note code { background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; }

/* CTA block */
.cta-block { width: 100%; padding: 0 24px 80px; }
.offer-card {
  max-width: 520px; margin: 0 auto; text-align: center;
  padding: 36px 32px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 18px;
}
.offer-card-featured {
  position: relative; padding-top: 44px;
  border: 2px solid var(--accent); border-radius: 22px;
  box-shadow: 0 28px 64px rgba(38,46,40,0.16);
}
.offer-ribbon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--accent-dark); color: var(--bg);
  padding: 7px 20px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(38,46,40,0.25);
}
.price-old { font-size: 14px; color: var(--text-faint); }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; }
.rating-row .stars { margin-bottom: 0; font-size: 15px; }
.rating-row .rating-count { font-size: 13px; color: var(--text-soft); }
.price-new { font-family: var(--font-serif); font-weight: 600; font-size: 44px; margin-top: 4px; }
.price-display { display: flex; align-items: flex-start; justify-content: center; gap: 3px; margin-top: 6px; }
.price-currency { font-family: var(--font-serif); font-weight: 600; font-size: 22px; color: var(--text-soft); margin-top: 10px; }
.price-main { font-family: var(--font-serif); font-weight: 700; font-size: 64px; line-height: 1; color: var(--accent-darker); }
.price-cents { font-family: var(--font-serif); font-weight: 600; font-size: 28px; color: var(--text-soft); align-self: flex-end; margin-bottom: 6px; }
.price-note { font-size: 14px; color: var(--text-soft); margin-top: 2px; }
.countdown-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  padding: 8px 16px; border-radius: 999px; background: #FBEAEA; border: 1px solid #F0C9C9;
}
.countdown-badge-strong { background: #FBEAEA; border: 1px solid #E8A9A9; }
.countdown-badge-strong svg { color: #C0392B; flex-shrink: 0; }
.countdown-label { font-size: 12px; color: #A34A4A; }
.countdown-timer { font-family: var(--font-serif); font-weight: 700; font-size: 16px; color: #C0392B; letter-spacing: 0.03em; min-width: 48px; }
.countdown-badge-light { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); }
.countdown-badge-light .countdown-label { color: #F3B8B8; }
.countdown-badge-light .countdown-timer { color: #FF9B9B; }
.offer-card .btn-primary { margin-top: 22px; }
.btn-cta-glow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 10px 28px rgba(67,88,70,0.35);
}
.btn-cta-glow:hover { box-shadow: 0 14px 34px rgba(67,88,70,0.45); }
.no-invasive-badges { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.no-invasive-badges span {
  background: var(--accent-soft); color: var(--accent-dark);
  padding: 6px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700;
}
.trust-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 18px; margin-top: 18px; color: #7C8880; font-size: 12.5px;
}
.trust-row span { display: flex; align-items: center; gap: 5px; }

/* Sinais de idade */
.signs { width: 100%; padding: 72px 0; background: var(--bg-alt); }
.signs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.signs h2 { font-size: clamp(26px, 3vw, 36px); margin: 16px 0 20px; }
.signs-list { margin: 0 0 20px; padding-left: 20px; color: var(--text-soft); font-size: 15px; line-height: 1.9; }
.signs-lead { font-size: 15px; color: var(--text-soft); line-height: 1.6; margin: 0; }
.signs-image img { border-radius: 16px; border: 1px solid var(--border); }

/* Story */
.story { width: 100%; padding: 80px 0; }
.story-inner { max-width: 700px; text-align: center; }
.story h2 { font-size: clamp(24px, 3vw, 32px); margin: 16px 0 32px; }
.story-text { text-align: left; }
.story-text p { font-size: 15.5px; color: var(--text-soft); line-height: 1.75; margin: 0 0 18px; }
.story-quote {
  font-family: var(--font-serif); font-style: italic; font-size: 19px !important;
  color: #20261F !important; padding-left: 18px; border-left: 3px solid var(--accent);
}
.story-signature { text-align: right; font-size: 14px !important; color: var(--text-faint) !important; margin-top: 24px !important; }

/* Benefits */
.benefits { width: 100%; padding: 80px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.benefit-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 24px; transition: box-shadow 0.15s ease;
}
.benefit-card:hover { box-shadow: 0 12px 32px rgba(38,46,40,0.10); }
.icon-circle {
  width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; color: var(--accent-dark);
}
.icon-circle-alt { border-radius: 50%; width: 64px; height: 64px; margin: 0 auto; }
.benefit-card h3 { font-size: 18px; margin: 18px 0 8px; }
.benefit-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* Formula */
.formula { width: 100%; padding: 80px 0; background: var(--bg-alt); }
.formula-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; margin-bottom: 56px; }
.formula-item { text-align: center; padding: 8px; }
.formula-item h4 { font-size: 17px; margin: 16px 0 8px; }
.formula-item h4 span { display: block; font-family: var(--font-sans); font-weight: 400; font-size: 13px; color: var(--text-faint); margin-top: 2px; }
.formula-item p { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; margin: 0; }
.formula-photo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.formula-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.formula-photo-caption { padding: 32px; }
.formula-photo-caption h4 { font-size: 20px; margin: 0 0 10px; }
.formula-photo-caption p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* Results */
.results { width: 100%; padding: 80px 0; text-align: center; }
.results h2 { font-size: clamp(26px, 3vw, 36px); }
.results-image { max-width: 560px; margin: 32px auto 0; }
.results-image img { border-radius: 16px; border: 1px solid var(--border); }
.results-disclaimer { font-size: 12.5px; color: var(--text-faint); margin-top: 14px; }

/* How-to */
.how-to { width: 100%; padding: 80px 0; background: var(--bg-alt); }
.how-to-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px; }
.how-to-step { text-align: center; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent-dark); color: var(--bg);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 600;
  margin: 0 auto 16px;
}
.how-to-step h4 { font-size: 16.5px; margin: 0 0 8px; }
.how-to-step p { font-size: 14px; color: var(--text-soft); margin: 0; }

/* Testimonials */
.testimonials { width: 100%; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.stars { color: var(--accent-dark); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 15px; color: #3B443D; line-height: 1.65; margin: 0 0 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 600; font-size: 15px;
}
.testimonial-author div:last-child { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 14.5px; color: #20261F; }
.testimonial-author span { font-size: 12.5px; color: var(--text-faint); }

/* Comments */
.comments { width: 100%; padding: 0 0 80px; }
.comments-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.comment-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px;
}
.comment-avatar {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 600; font-size: 13px;
}
.comment-stars { font-size: 11px; letter-spacing: 1px; margin-bottom: 4px; }
.comment-body strong { font-size: 13.5px; color: #20261F; }
.comment-body p { font-size: 13.5px; color: var(--text-soft); line-height: 1.5; margin: 4px 0 0; }

/* Investment */
.investment { width: 100%; padding: 80px 0; background: var(--bg); }
.investment-inner { display: flex; justify-content: center; }
.investment-card {
  position: relative; max-width: 620px; width: 100%; text-align: center;
  background: #1B1D1A; border: 2px solid #E85C4A; border-radius: 24px;
  padding: 52px 40px 40px;
  box-shadow: 0 28px 64px rgba(0,0,0,0.35);
}
.investment-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: #E85C4A; color: #fff;
  padding: 8px 22px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.investment-card h2 { color: #fff; font-size: clamp(22px, 3vw, 28px); margin: 0 0 26px; }
.investment-price { font-family: var(--font-serif); font-weight: 700; font-size: 44px; color: #FF7A63; line-height: 1.15; }
.investment-price-note { color: #8FD19E; font-size: 14.5px; font-weight: 600; margin-top: 8px; }
.investment-list { list-style: none; margin: 32px 0 0; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 14px; }
.investment-list li { position: relative; padding-left: 22px; color: #D8DAD5; font-size: 14.5px; line-height: 1.6; }
.investment-list li::before { content: "•"; position: absolute; left: 0; color: #8FD19E; font-weight: 700; }
.investment-product-img { width: 130px; height: 130px; object-fit: contain; margin: 4px auto 18px; border-radius: 12px; background: var(--bg); padding: 10px; }
.investment-spec { color: #9AA39C; font-size: 13px; margin: 0 0 24px; }
.investment-highlight { color: #fff; font-weight: 700; font-size: 16px; line-height: 1.5; margin: 30px 0 0; }
.investment-risk { color: #FF7A63; font-weight: 700; font-size: 14.5px; line-height: 1.6; margin: 20px 0 0; }
.investment-btn {
  background: #22C55E; color: #0B1F13; margin-top: 28px;
  font-size: 17px; padding: 19px 32px;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
  animation: investment-btn-pulse 2.2s ease-in-out infinite;
}
.investment-btn:hover { background: #1EA753; }
@keyframes investment-btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.stock-warning-dark { font-size: 12.5px; color: #D9C58A; line-height: 1.5; margin: 14px 0 0; max-width: 420px; margin-left: auto; margin-right: auto; }
.investment-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; color: #7C8078; font-size: 12px; }

/* FAQ */
.faq { width: 100%; padding: 0 0 88px; }
.faq-inner { max-width: 760px; }
.faq h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 36px; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; font-size: 16px; font-weight: 600; color: #20261F; font-family: var(--font-sans);
}
.faq-chevron { color: var(--text-faint); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer p { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; margin: 0; padding: 0 26px 22px; }

/* Final CTA */
.final-cta { width: 100%; padding: 0 24px 72px; text-align: center; }
.final-cta h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 26px; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { padding: 18px 40px; font-size: 16.5px; }

/* Footer */
.footer { width: 100%; padding: 36px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer .logo { font-family: var(--font-serif); font-weight: 600; font-size: 16px; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 22px; font-size: 13px; }
.footer-legal { font-size: 12px; color: var(--text-faint); line-height: 1.6; margin-top: 18px; }

/* Gate: o resto da página fica oculto até o clique no play */
#rest-of-page.gated { display: none; }
#rest-of-page.revealed { display: block; animation: dl-fade-in 0.6s ease; }
@keyframes dl-fade-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Barra fixa de compra (mobile) */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  display: none;
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(38,46,40,0.12);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.mobile-cta-bar.show { transform: translateY(0); }
.mobile-cta-bar .btn-primary { padding: 13px 22px; font-size: 14.5px; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .formula-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .comments-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .how-to-grid { grid-template-columns: 1fr; gap: 40px; }
  .signs-inner { grid-template-columns: 1fr; gap: 32px; }
  .signs-image { order: -1; }
  .formula-photo { grid-template-columns: 1fr; }
  .formula-photo img { min-height: 220px; }
}

@media (max-width: 680px) {
  .mobile-cta-bar { display: flex; }
  body.has-mobile-cta { padding-bottom: 78px; }
}

@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .formula-grid { grid-template-columns: 1fr; }
  .comments-grid { grid-template-columns: 1fr; }
  .investment-card { padding: 44px 22px 32px; }
  .investment-price { font-size: 34px; }
  .price-main { font-size: 50px; }
  .price-cents { font-size: 22px; }
  .price-currency { font-size: 18px; }
  .countdown-badge { flex-wrap: wrap; justify-content: center; text-align: center; }
  .trust-row { flex-direction: column; gap: 12px; }
  .topbar { padding: 18px 20px 0; }
  .container { padding: 0 20px; }

  /* espaçamento vertical mais enxuto no mobile */
  .hero { padding: 32px 0 40px; }
  .vsl { padding: 0 0 48px; }
  .cta-block { padding: 0 20px 56px; }
  .signs, .benefits, .formula, .results, .how-to, .testimonials, .investment { padding: 56px 0; }
  .faq { padding: 0 0 64px; }
  .final-cta { padding: 0 20px 56px; }
  .section-head { margin-bottom: 36px; }
  .formula-grid { margin-bottom: 40px; }
  .benefit-card, .testimonial-card { padding: 24px 20px; }
  .offer-card { padding: 28px 24px; }
  .offer-card-featured { padding: 44px 22px 28px; }
  .price-new { font-size: 36px; }
}
