@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { -webkit-user-select: none; -moz-user-select: none; user-select: none; }

:root {
  /* Paleta Suave */
  --dark:          hsl(335, 18%, 15%);
  --card-dark:     hsl(335, 14%, 21%);
  --card-black:    hsl(335, 22%, 11%);
  --light:         hsl(340, 32%, 97%);
  --white:         hsl(0, 0%, 100%);

  /* Destaque principal — rosa suave */
  --accent:        #B87890;
  --accent-bg:     rgba(184, 120, 144, 0.10);
  --accent-border: rgba(184, 120, 144, 0.25);

  --muted:         hsl(335, 8%, 54%);
  --subtle:        hsl(335, 8%, 68%);
  --check:         hsl(145, 48%, 40%);
  --danger:        hsl(0, 80%, 45%);

  /* Tipografia */
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: hsl(335, 14%, 14%);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── TOP BANNER ── */
.top-banner {
  background: var(--danger);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.badge-accent  { background: var(--accent); color: #fff; }
.badge-danger  { background: var(--danger); color: #fff; }
.badge-outline {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: #ffadc9;
}
.badge-colecao {
  background: hsl(145, 40%, 92%);
  border: 1.5px solid #1FAD6B;
  color: #1FAD6B;
}

/* ── SECTION TITLES ── */
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1px;
}
.sec-title-dark  { color: #fff; }
.sec-title-light { color: hsl(335, 18%, 14%); }

.highlight-accent {
  background: var(--accent);
  color: #fff;
  padding: 0 8px 3px;
  border-radius: 6px;
}
/* alias para manter compatibilidade com HTML existente */
.highlight-lime { background: var(--accent); color: #fff; padding: 0 8px 3px; border-radius: 6px; }

/* ── CTA BUTTON ── */
.btn-cta {
  display: inline-block;
  background: #22C55E;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 17px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(34,197,94,0.35);
  animation: pulse-cta 1.6s ease-in-out infinite;
}
.btn-cta:hover { opacity: 0.9; transform: translateY(-3px); }

@keyframes pulse-cta {
  0%, 100% { transform: translateY(0);    box-shadow: 0 6px 20px rgba(34,197,94,0.35); }
  50%       { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(34,197,94,0.55); }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, hsl(340, 75%, 97%) 0%, hsl(330, 55%, 93%) 100%);
  padding: 28px 24px 64px;
  text-align: center;
}
@media (min-width: 768px) { .hero { padding: 40px 60px 80px; } }

.hero-inner { max-width: 820px; margin: 0 auto; }

.hero-bullet {
  display: inline-block;
  background: rgba(184, 120, 144, 0.12);
  border: 1px solid var(--accent-border);
  color: hsl(335, 38%, 38%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  color: hsl(335, 30%, 18%);
  margin-bottom: 24px;
  letter-spacing: 0.1px;
}
.hero-title .accent { color: var(--accent); }

.hero-underline {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.hero-mockup {
  margin: 0 auto 28px;
  max-width: 580px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(184,120,144,0.22);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.pill {
  background: #fff;
  border: 1.5px solid var(--accent-border);
  color: hsl(335, 25%, 28%);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

.hero-sub {
  color: hsl(335, 14%, 38%);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-sub strong { color: hsl(335, 28%, 20%); }

.hero-delivery { margin-top: 22px; text-align: center; }
.hero-delivery-text {
  font-size: 0.78rem;
  color: hsl(335, 12%, 46%);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-delivery-chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.delivery-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--accent-border);
  padding: 9px 18px;
  border-radius: 50px;
}
.delivery-chip span { font-size: 0.8rem; font-weight: 700; color: hsl(335, 25%, 25%); }

/* ── CAROUSEL ── */
.carousel-section {
  background: #fff;
  overflow: hidden;
  padding: 64px 0;
}
.carousel-section-dark {
  background: var(--dark);
}
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  gap: 14px;
  animation: scroll-l 38s linear infinite;
  width: max-content;
}
.carousel-track.reverse { animation: scroll-r 42s linear infinite; }

@keyframes scroll-l {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-r {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.carousel-item {
  flex-shrink: 0;
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: hsl(340, 30%, 92%);
}
.carousel-item img { width: 100%; height: auto; display: block; }

/* ── PRINCESAS ── */
.princesas-section {
  background: var(--light);
  padding: 64px 0 56px;
  overflow: hidden;
}
.princesas-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.princesas-carousel-wrap {
  overflow: hidden;
}
.princesas-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-l 28s linear infinite;
}
.princesa-chip {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--accent-border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(335, 18%, 18%);
  box-shadow: 0 2px 10px rgba(184,120,144,0.08);
}
.princesa-chip span { line-height: 1; }

/* ── BEFORE / AFTER ── */
.before-after-section {
  background: #fff;
  padding: 0 24px 64px;
}
@media (min-width: 768px) { .before-after-section { padding: 0 60px 72px; } }
.ba-inner { max-width: 860px; margin: 0 auto; }

.ba-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.3;
  color: hsl(330, 38%, 12%);
}
.ba-title .hl-red   { background: hsl(350, 70%, 52%); color: #fff; padding: 0 7px 2px; border-radius: 5px; }
.ba-title .hl-green { background: var(--check); color: #fff; padding: 0 7px 2px; border-radius: 5px; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) { .ba-grid { grid-template-columns: 1fr 1fr; } }

.ba-card { border-radius: 18px; padding: 26px 28px; }
.ba-card-no  {
  background: hsl(0, 0%, 98%);
  border: 1.5px solid hsl(0, 30%, 88%);
}
.ba-card-yes {
  background: hsla(145, 48%, 40%, 0.06);
  border: 1.5px solid hsla(145, 48%, 40%, 0.28);
}
.ba-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 20px;
}
.ba-label-no  { color: hsl(350, 65%, 50%); }
.ba-label-yes { color: var(--check); }
.ba-list { display: flex; flex-direction: column; gap: 12px; }
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: hsl(330, 15%, 18%);
}
.ba-dot {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
}
.ba-dot-no  { color: hsl(350, 50%, 60%); }
.ba-dot-yes { color: var(--check); }

/* ── FEATURES ── */
.features-section { background: var(--dark); padding: 64px 24px; }
@media (min-width: 768px) { .features-section { padding: 72px 60px; } }
.features-inner { max-width: 1100px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
@media (min-width: 960px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 175px;
  transition: transform 0.25s;
  background: var(--card-dark);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon-box {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.feature-card h3 {
  font-size: 0.84rem;
  font-weight: 700;
  color: hsl(330, 12%, 82%);
  line-height: 1.5;
}

/* ── URGENCY ── */
.urgency-section { background: var(--dark); padding: 8px 24px 64px; }
.urgency-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px;
  border-radius: 24px;
  background: var(--card-black);
  border: 1px solid hsl(330, 25%, 20%);
}
.urgency-card h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.45;
  margin: 16px 0 0;
}
.urgency-card h3 strong { color: var(--accent); }
.payment-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  color: hsl(330, 8%, 54%);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--light);
  padding: 64px 0;
  overflow: hidden;
}
.test-track {
  display: flex;
  gap: 14px;
  animation: scroll-l 36s linear infinite;
  width: max-content;
}
.test-track-reverse {
  animation: scroll-r 36s linear infinite;
}
.test-item {
  flex-shrink: 0;
  width: 270px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(184,120,144,0.07);
}
.test-item img { width: 100%; height: auto; object-fit: cover; }

/* ── DELIVERABLES ── */
.deliverables-section { background: var(--light); padding: 0 24px 64px; }
@media (min-width: 768px) { .deliverables-section { padding: 0 60px 72px; } }
.deliverables-inner { max-width: 860px; margin: 0 auto; }

.deliverables-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  margin-top: 36px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(184,120,144,0.07);
}
.del-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.del-mockup {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 28px;
  border-radius: 12px;
}
.del-list {
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.del-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: hsl(330, 20%, 18%);
  line-height: 1.55;
}
.check-circle {
  width: 20px; height: 20px;
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  color: #1FAD6B;
}

/* ── BONUS BRIDGE ── */
.bonus-bridge {
  text-align: center;
  padding: 44px 24px 0;
  border-top: 2px dashed hsl(340, 40%, 88%);
  margin-top: 48px;
}
.bonus-bridge h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
  color: hsl(330, 38%, 14%);
}
.bonus-bridge h3 strong { color: var(--accent); }
.bonus-bridge p { color: hsl(330, 10%, 48%); font-size: 0.94rem; margin-bottom: 18px; }

/* ── BONUS SECTION ── */
.bonus-section { background: var(--dark); padding: 64px 24px; }
@media (min-width: 768px) { .bonus-section { padding: 72px 60px; } }
.bonus-inner { max-width: 1100px; margin: 0 auto; }

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) { .bonus-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }

.bonus-card {
  background: var(--card-dark);
  border: 1px solid hsl(330, 20%, 22%);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s;
}
.bonus-card:hover { transform: translateY(-4px); }
.bonus-card-img { width: 100%; height: auto; display: block; }
.bonus-card-body { padding: 18px 20px 22px; }
.bonus-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.bonus-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}
.bonus-card-desc {
  font-size: 0.82rem;
  color: hsl(330, 10%, 62%);
  line-height: 1.65;
  margin-bottom: 12px;
}
.bonus-value { font-size: 0.78rem; color: hsl(330, 8%, 52%); font-weight: 600; }
.riscado { text-decoration: line-through; }
.gratis  { color: hsl(145, 60%, 48%); font-weight: 800; margin-left: 4px; }

/* ── PLANS ── */
.plans-urgency-bar {
  background: var(--danger);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.plans-section { background: var(--light); padding: 64px 24px 72px; }
@media (min-width: 768px) { .plans-section { padding: 72px 60px 80px; } }
.plans-inner { max-width: 900px; margin: 0 auto; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 640px) { .plans-grid { grid-template-columns: 1fr 1fr; } }

.plan-basic {
  background: hsl(340, 20%, 94%);
  border: 1.5px solid hsl(340, 20%, 87%);
  border-radius: 22px;
  padding: 28px 24px;
}
.plan-complete {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 22px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 8px 32px rgba(255,79,135,0.12);
}
.plan-badge-top {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.plan-badge-danger {
  display: block;
  width: 100%;
  background: var(--danger);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  color: hsl(330, 38%, 14%);
}
.plan-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 18px;
  border-radius: 10px;
  display: block;
}
.plan-basic .plan-img { max-width: 220px; }
.plan-incl-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(330, 10%, 52%);
  margin-bottom: 12px;
}
.plan-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.plan-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
  color: hsl(330, 20%, 20%);
  padding-bottom: 9px;
  border-bottom: 1px solid hsl(330, 15%, 90%);
}
.plan-feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.plan-feat-item.gift { font-weight: 700; color: hsl(330, 25%, 22%); }

.plan-price-box { background: transparent; padding: 14px 0; text-align: center; margin-bottom: 18px; }
.price-from {
  font-size: 0.82rem;
  color: var(--danger);
  font-weight: 700;
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}
.price-main {
  font-size: 2.9rem;
  font-weight: 900;
  color: #1FAD6B;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.price-inst {
  font-size: 0.82rem;
  color: hsl(330, 15%, 20%);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.price-save { font-size: 0.88rem; font-weight: 700; color: #1FAD6B; }

.price-circle-wrap {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  margin: 6px 0;
}
.animated-circle { animation: wobble-circle 1.8s ease-in-out infinite alternate; }
.circle-path, .circle-path-delay { stroke-dasharray: 1; stroke-dashoffset: 1; }
.draw-active .circle-path { animation: drawCircle 1.5s ease-out forwards; }
.draw-active .circle-path-delay { animation: drawCircle 1.5s ease-out forwards; animation-delay: 0.3s; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes wobble-circle {
  0%   { transform: scale(1) rotate(0deg); opacity: 0.9; }
  100% { transform: scale(1.06, 0.96) rotate(2deg); opacity: 1; }
}

.plan-urgency {
  text-align: center;
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 14px;
  line-height: 1.4;
}
.plan-guarantee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: hsl(330, 20%, 22%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.plan-cta {
  display: block; width: 100%; border: none;
  font-family: var(--font-body);
  text-decoration: none; text-align: center;
  font-size: 0.88rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 16px 20px; border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}
.plan-cta-basic { background: hsl(330, 15%, 40%); color: #fff; }
.plan-cta-basic:hover { background: hsl(330, 15%, 46%); }
.plan-cta-complete {
  background: #22C55E;
  color: #fff;
  animation: pulse-cta 1.6s ease-in-out infinite;
  box-shadow: 0 6px 24px rgba(34,197,94,0.35);
}
.plan-popular-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: hsl(350, 65%, 45%);
  font-weight: 700;
  background: hsl(0, 80%, 97%);
  border: 2px solid hsl(350, 60%, 82%);
  border-radius: 12px;
  padding: 12px 16px 14px;
}
.arrow-down {
  display: flex; justify-content: center;
  margin-top: 10px;
  animation: bounce-arrow 0.7s ease-in-out infinite alternate;
}
@keyframes bounce-arrow {
  0%   { transform: translateY(0); }
  100% { transform: translateY(8px); }
}
.hotmart-seal { max-width: 150px; margin: 6px auto 0; }

/* ── DEPOIMENTOS ESTÁTICOS ── */
.dep-static-section {
  background: var(--light);
  padding: 64px 24px;
}
.dep-static-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.dep-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dep-static-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(184,120,144,0.09);
}
.dep-static-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 640px) {
  .dep-static-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ── GUARANTEE ── */
.guarantee-section {
  background: var(--light);
  padding: 64px 24px;
  border-top: 1px solid hsl(340, 40%, 90%);
}
.guarantee-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
}
@media (max-width: 640px) { .guarantee-inner { flex-direction: column; text-align: center; } }
.guarantee-seal { max-width: 180px; flex-shrink: 0; }
.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: hsl(330, 38%, 12%);
  line-height: 1.3;
}
.guarantee-text { font-size: 0.9rem; line-height: 1.8; color: hsl(330, 10%, 42%); margin-bottom: 10px; }
.guarantee-risk { font-size: 0.95rem; font-weight: 800; color: var(--accent); margin-top: 8px; }

/* ── FAQ ── */
.faq-section { background: #fff; padding: 64px 24px; }
@media (min-width: 768px) { .faq-section { padding: 72px 60px; } }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(340, 30%, 90%); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 700;
  color: hsl(330, 30%, 14%); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; line-height: 1.45;
}
.faq-q .faq-icon { flex-shrink: 0; font-size: 1.1rem; transition: transform 0.25s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem; line-height: 1.8;
  color: hsl(330, 10%, 44%); padding-bottom: 18px; display: none;
}
.faq-a.open { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--card-black);
  padding: 40px 24px;
  text-align: center;
}
.footer-text {
  font-size: 0.72rem;
  color: hsl(330, 8%, 40%);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .bonus-section, .features-section { padding: 44px 20px; }
  .urgency-card { padding: 36px 20px; }
  .plans-section { padding: 44px 20px 60px; }
  .deliverables-box { padding: 28px 20px; }
}

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.68);
  display: flex; align-items: flex-start; justify-content: center;
  z-index: 9999; padding: 16px; overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: #fff; border-radius: 22px;
  padding: 32px 24px 24px; max-width: 460px; width: 100%;
  text-align: center; transform: translateY(20px);
  transition: transform .25s; margin: auto; overflow: hidden;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-badge {
  background: var(--danger); color: #fff;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .10em; padding: 6px 18px;
  border-radius: 50px; display: inline-block;
  margin-bottom: 16px; text-transform: uppercase;
}
.modal-badge-exit { background: #b45309; }
.modal-card-exit  { border-top: 4px solid #b45309; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 900; color: #111;
  line-height: 1.2; margin-bottom: 14px;
}
.modal-title-sub {
  display: block; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  color: var(--danger); letter-spacing: 0; margin-top: 4px;
}
.modal-leve-texto { font-size: .9rem; font-weight: 600; color: #555; margin-bottom: 4px; }
.modal-leve-texto strong { color: #111; font-weight: 800; }
.modal-highlight-300 {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; margin-bottom: 14px; padding: 8px 0;
}
.modal-num-300   { font-size: 4rem; font-weight: 900; color: var(--accent); line-height: 1; letter-spacing: -3px; }
.modal-label-300 {
  font-size: .8rem; font-weight: 700; color: #444;
  text-align: center; line-height: 1.3; max-width: 220px;
  text-transform: uppercase; letter-spacing: .04em;
}
.modal-bonus-box {
  background: #fff5f8; border: 2px solid hsl(340,60%,85%);
  border-radius: 14px; padding: 14px 16px;
  margin-bottom: 16px; text-align: left;
}
.modal-bonus-title {
  font-size: .78rem; font-weight: 900; color: hsl(330,50%,30%);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.modal-bonus-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.modal-bonus-list li { font-size: .82rem; color: #333; font-weight: 600; line-height: 1.3; }
.modal-desconto-faixa {
  background: var(--danger); color: #fff;
  font-size: .72rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 10px; margin-bottom: 10px;
}
.modal-price-box {
  background: #fdf5f7; border-radius: 14px;
  padding: 16px 12px; margin-bottom: 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.modal-price-from { font-size: 1rem; font-weight: 800; color: var(--danger); text-decoration: line-through; }
.modal-price-main { font-size: 2.6rem; font-weight: 900; color: #16a34a; line-height: 1; }
.modal-price-inst { font-size: .73rem; color: #888; }
@keyframes modal-cta-pulse {
  0%, 100% { transform: scale(1);      box-shadow: 0 4px 18px rgba(34,197,94,.45); }
  50%       { transform: scale(1.045); box-shadow: 0 8px 28px rgba(34,197,94,.70); }
}
.modal-btn-sim {
  display: block;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff; font-weight: 900; font-size: 1rem;
  letter-spacing: .05em; text-decoration: none; text-transform: uppercase;
  padding: 20px 24px; border-radius: 50px; margin-bottom: 14px;
  border-bottom: 4px solid #15803d;
  animation: modal-cta-pulse 1.6s ease-in-out infinite;
  line-height: 1.2;
}
.modal-btn-sim:hover { background: linear-gradient(180deg, #16a34a 0%, #15803d 100%); animation: none; transform: scale(1.02); }
.modal-btn-nao {
  background: none; border: none; cursor: pointer;
  color: #bbb; font-size: .8rem; text-decoration: underline;
  padding: 4px 8px; font-family: var(--font-body);
}
.modal-btn-nao:hover { color: #777; }

@media (max-width: 480px) {
  .modal-overlay { padding: 10px; align-items: center; }
  .modal-card { padding: 18px 14px 16px; border-radius: 16px; }
  .modal-title { font-size: 1.1rem; margin-bottom: 8px; }
  .modal-num-300 { font-size: 2.4rem; }
  .modal-label-300 { font-size: .68rem; }
  .modal-bonus-list { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 6px; }
  .modal-bonus-list li { font-size: .66rem; }
  .modal-price-main { font-size: 1.7rem; }
  .modal-btn-sim { font-size: .8rem; padding: 14px 16px; }
}
