:root {
  /* Paleta principal — vermelho #AE0025 */
  --rose-50:  #FBF1F3;
  --rose-100: #F5DCE0;
  --rose-200: #ECBEC5;
  --rose-300: #DC8A95;
  --rose-500: #C44558;
  --rose-700: #AE0025;
  --rose-900: #780019;
  --gold-300: #E5CB97;
  --gold-400: #D7B570;
  --gold-500: #C9A961;
  --gold-700: #9C7E3F;
  --ink-900:  #1A1A1A;
  --ink-800:  #2A2024;
  --ink-700:  #3A3A3A;
  --ink-500:  #6B6B6B;
  --ink-300:  #B8B8B8;
  --ink-200:  #DCDCDC;
  --paper:    #FAF7F5;
  --cream:    #FBEFD6;
  --white:    #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(26,26,26,.06);
  --shadow-md: 0 8px 24px rgba(26,26,26,.08);
  --shadow-lg: 0 24px 60px rgba(120, 0, 25, .22);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --maxw: 1140px;
  --gutter: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5.8vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); }
h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

p  { margin: 0 0 1em; }
em { font-style: italic; color: var(--rose-700); font-weight: 700; }

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

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: .9em;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35em;
  padding: 16px 28px;
  font: 600 15px/1 'Roboto', sans-serif;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-700) 0%, var(--rose-500) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(174, 0, 37, .32);
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnShine 3.2s ease-in-out infinite;
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(174, 0, 37, .45);
}
.btn-lg { padding: 20px 36px; font-size: 17px; }

/* ---------- HEADER ---------- */
.site-header {
  background: rgba(250,247,245,.85);
  border-bottom: 1px solid var(--rose-100);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { flex: none; }
.logo-text {
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  letter-spacing: -0.015em;
}
.logo-text strong {
  color: var(--rose-700);
  font-weight: 900;
  font-style: italic;
}
.header-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-700);
  border: 1.5px solid var(--rose-300);
  padding: 9px 18px;
  border-radius: 999px;
  transition: all .2s;
}
.header-cta:hover {
  background: var(--rose-700);
  color: var(--white);
  border-color: var(--rose-700);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 48px 0 0;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

/* Mesh gradient animado — blobs de cor saturados que se deformam */
.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: -3;
  background:
    radial-gradient(38% 48% at 15% 25%, rgba(174,  0, 37, .42) 0%, transparent 60%),
    radial-gradient(42% 52% at 88% 12%, rgba(220,138,149, .65) 0%, transparent 60%),
    radial-gradient(50% 55% at 78% 82%, rgba(215,181,112, .55) 0%, transparent 60%),
    radial-gradient(55% 65% at 8% 95%, rgba(229,203,151, .80) 0%, transparent 65%),
    radial-gradient(35% 45% at 55% 50%, rgba(245,220,224, .60) 0%, transparent 70%);
  filter: blur(48px) saturate(130%);
  animation: meshFlow 18s ease-in-out infinite alternate;
}

/* Spotlight pulsante atrás da modelo — efeito "estrela" */
.hero-spotlight {
  position: absolute;
  top: 35%;
  right: 5%;
  width: 50vw;
  height: 50vw;
  max-width: 720px;
  max-height: 720px;
  background:
    radial-gradient(circle, rgba(174, 0, 37, .18) 0%, rgba(215,181,112, .14) 35%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: -2;
  pointer-events: none;
  animation: spotlightPulse 5s ease-in-out infinite alternate;
}

/* Pétalas/partículas caindo */
.petal {
  position: absolute;
  top: -8%;
  width: 12px;
  height: 18px;
  background: linear-gradient(135deg, var(--rose-300), var(--rose-200));
  border-radius: 80% 20% 80% 20% / 80% 80% 20% 20%;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  filter: blur(.4px);
  animation: petalFall var(--dur, 13s) linear infinite;
  animation-delay: var(--delay, 0s);
}
.petal.p-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  width: 10px;
  height: 14px;
}
.petal.p-red {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  width: 8px;
  height: 12px;
}

/* Curva dourada SVG-like atravessando o hero */
.hero-curve {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-curve::before,
.hero-curve::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--gold-400), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .55;
}
.hero-curve::before {
  width: 120%;
  height: 120%;
  top: -40%;
  left: -10%;
  animation: ringSpin 60s linear infinite;
}
.hero-curve::after {
  width: 80%;
  height: 80%;
  bottom: -30%;
  right: -20%;
  border-color: rgba(174, 0, 37, .12);
  background: none;
  border: 1.5px solid rgba(174, 0, 37, .15);
  -webkit-mask: none;
          mask: none;
  animation: ringSpinReverse 80s linear infinite;
}

/* Sparkles dourados — formato de estrela 4 pontas */
.sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: -1;
  opacity: 0;
  animation: sparkle 4.5s ease-in-out infinite;
  pointer-events: none;
}
.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, var(--gold-400) 50%, transparent 55%);
  filter: drop-shadow(0 0 6px rgba(215,181,112,.9));
}
.sparkle::after {
  background: linear-gradient(90deg, transparent 45%, var(--gold-400) 50%, transparent 55%);
}
.sparkle.sp1  { top:  14%; left:  6%; animation-delay: 0s;   }
.sparkle.sp2  { top:  32%; left: 20%; animation-delay: 1.2s; width: 10px; height: 10px; }
.sparkle.sp3  { top:  62%; left: 10%; animation-delay: 2.4s; width: 18px; height: 18px; }
.sparkle.sp4  { top:  10%; left: 44%; animation-delay: .6s;  width: 12px; height: 12px; }
.sparkle.sp5  { top:  82%; left: 38%; animation-delay: 3.1s; width: 14px; height: 14px; }
.sparkle.sp6  { top:  20%; left: 92%; animation-delay: 1.8s; width: 16px; height: 16px; }
.sparkle.sp7  { top:  50%; left: 96%; animation-delay: 2.7s; width: 10px; height: 10px; }
.sparkle.sp8  { top:  88%; left: 80%; animation-delay: .3s;  width: 14px; height: 14px; }
.sparkle.sp9  { top:  45%; left: 35%; animation-delay: 3.6s; width: 8px;  height: 8px; }
.sparkle.sp10 { top:  72%; left: 60%; animation-delay: 1.5s; width: 12px; height: 12px; }

@keyframes meshFlow {
  0%   { transform: translate(0, 0)     scale(1)    rotate(0deg);   }
  25%  { transform: translate(-4%, 3%)  scale(1.12) rotate(2deg);   }
  50%  { transform: translate(3%, -4%)  scale(1.08) rotate(-1deg);  }
  75%  { transform: translate(-2%, 4%)  scale(1.15) rotate(1.5deg); }
  100% { transform: translate(2%, -2%)  scale(1.1)  rotate(-2deg);  }
}

@keyframes spotlightPulse {
  0%, 100% { transform: scale(1)    translate(0, 0);     opacity: .85; }
  50%      { transform: scale(1.18) translate(-2%, -3%); opacity: 1;   }
}

@keyframes sparkle {
  0%, 100% { opacity: 0;   transform: scale(.3) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.2) rotate(180deg); }
}

@keyframes petalFall {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg);            opacity: 0; }
  8%   {                                                           opacity: .7; }
  50%  { transform: translate3d(var(--drift, 30px), 60vh, 0) rotate(180deg); opacity: .7; }
  92%  {                                                           opacity: .4; }
  100% { transform: translate3d(calc(var(--drift, 30px) * -.7), 115vh, 0) rotate(360deg); opacity: 0; }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
@keyframes ringSpinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes btnShine {
  0%   { left: -75%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: end;
}
.hero-content { padding-bottom: 56px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { display: inline-block; }
.hero .lede {
  font-size: 1.05rem;
  color: var(--ink-700);
  max-width: 540px;
  margin-bottom: 28px;
}

.trust-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-avatars {
  display: inline-flex;
}
.trust-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  object-fit: cover;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-700);
  line-height: 1.4;
}
.trust-text strong { color: var(--ink-900); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-photo {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(120, 0, 25, .14));
  position: relative;
  z-index: 1;
}
/* Faixa de brilho mascarada pela silhueta da PNG */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background-image: linear-gradient(110deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,.95) 50%,
    rgba(255,255,255,0) 70%);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: -100% 0;

  -webkit-mask: url('magnific__adjust__15146.png') no-repeat center / 100% 100%;
          mask: url('magnific__adjust__15146.png') no-repeat center / 100% 100%;

  opacity: 0;
}
.hero-photo.shine::after,
.hero-photo:hover::after {
  animation: heroShine 1.2s ease-out;
}
@keyframes heroShine {
  0%   { background-position: -100% 0; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { background-position: 200% 0; opacity: 0; }
}
/* Halo gradient sutil atrás da foto, sem caixa visível */
.hero-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 88%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--rose-100) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
}

/* Pequenos pontos decorativos espalhados (cara de "feito à mão") */
.hero-visual .deco-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-400);
  opacity: .55;
  z-index: 0;
}
.hero-visual .deco-dot.d1 { top: 8%; right: 12%; width: 14px; height: 14px; background: var(--rose-300); }
.hero-visual .deco-dot.d2 { bottom: 14%; left: 6%; width: 7px;  height: 7px; }
.hero-visual .deco-dot.d3 { top: 42%; right: -2%; width: 12px; height: 12px; opacity: .35; }

@keyframes blobMorph {
  0%   { border-radius: 64% 36% 52% 48% / 44% 58% 42% 56%; }
  50%  { border-radius: 56% 44% 60% 40% / 50% 50% 50% 50%; }
  100% { border-radius: 60% 40% 46% 54% / 56% 42% 58% 44%; }
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  z-index: 2;
}
.hero-badge-1 {
  top: 24px;
  left: -8px;
  transform: rotate(-3deg);
  color: var(--ink-900);
}
.hero-badge-1 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-700);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-badge-2 {
  bottom: 26px;
  right: -10px;
  transform: rotate(3deg);
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 18px;
}
.hero-badge-num {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--rose-700), var(--gold-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-badge-cap {
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--ink-500);
  font-weight: 500;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

/* ---------- BENEFITS ---------- */
.benefits {
  padding: 80px 0;
  background: var(--white);
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-300);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose-100), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  line-height: 1;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { color: var(--ink-700); font-size: .94rem; margin: 0; line-height: 1.55; }

/* ---------- HOW ---------- */
.how {
  padding: 80px 0;
  background: var(--paper);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
.steps li {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--rose-100);
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--rose-700), var(--gold-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  line-height: 1;
}
.steps h3 { margin-bottom: 6px; }
.steps p  { margin: 0; color: var(--ink-700); font-size: .94rem; }
.how-cta { text-align: center; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--rose-50) 100%);
}
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.t-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rose-100);
  display: flex;
  flex-direction: column;
}
.t-card-feat {
  background: linear-gradient(160deg, var(--white) 0%, var(--rose-50) 100%);
  border-color: var(--rose-200);
  box-shadow: var(--shadow-md);
}
.t-stars {
  color: var(--gold-500);
  letter-spacing: .12em;
  font-size: .9rem;
  margin-bottom: 14px;
}
.t-card p {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: .98rem;
  font-weight: 400;
  color: var(--ink-800);
  line-height: 1.55;
  margin: 0 0 22px;
  flex: 1;
}
.t-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--rose-100);
}
.t-card footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.t-card footer strong {
  display: block;
  font-size: .92rem;
  color: var(--ink-900);
  line-height: 1.2;
}
.t-card footer span {
  display: block;
  font-size: .78rem;
  color: var(--ink-500);
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 80px 0;
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--paper);
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] {
  border-color: var(--rose-300);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--rose-700);
  font-weight: 400;
  transition: transform .2s;
  flex: none;
}
.faq details[open] summary::after { content: "−"; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-700);
  font-size: .94rem;
  line-height: 1.55;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at 50% 0%, var(--rose-100) 0%, transparent 65%),
    var(--paper);
  text-align: center;
}
.final-inner { max-width: 720px; margin: 0 auto; }
.final-cta p {
  color: var(--ink-700);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.final-cta small {
  display: block;
  margin-top: 18px;
  color: var(--ink-500);
  font-size: .8rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 40px 0;
  background: var(--ink-900);
  color: var(--ink-300);
  font-size: .85rem;
}
.footer-inner { text-align: center; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text strong { color: var(--gold-400); }
.footer-disclaimer {
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.5;
}
.footer-copy { margin: 0; color: var(--ink-500); }

/* ---------- RESPONSIVE ---------- */
@media (min-width: 720px) {
  .cards  { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(3, 1fr); }
  .t-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .hero { padding: 72px 0 0; }
  .hero-inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
  }
  .hero-content { padding-bottom: 96px; }
  .hero-visual { min-height: 560px; }
  .hero-photo { max-width: 460px; }
  .hero-badge-1 { left: 0; top: 80px; }
  .hero-badge-2 { right: 0; bottom: 200px; }
  .cards  { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .header-cta { padding: 8px 14px; font-size: 12px; }
  .btn-lg { padding: 18px 28px; font-size: 16px; }
  .hero-photo { max-width: 320px; }
  .hero-badge-1 { left: 0; top: 30px; }
  .hero-badge-2 { right: 0; bottom: 140px; }
  .hero-badge { font-size: .78rem; padding: 10px 12px; }
  .hero-badge-num { font-size: 1.2rem; }
  .t-card p { font-size: .98rem; }
}

/* ---------- A11Y ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
