/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark:      #9B1E1E;
  --card-dark: #1e0a0a;
  --light:     hsl(348, 35%, 97%);
  --accent:    #22C55E;
  --check:     #9B1E1E;
  --danger:    hsl(0, 80%, 52%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: hsl(345, 12%, 18%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: inline-block;
}

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

/* =============================================
   CTA BUTTON
   ============================================= */
.btn-cta {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 16px 40px;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-cta 1.4s ease-in-out infinite;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

@keyframes pulse-cta {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.30);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.50);
  }
}

/* =============================================
   BADGES
   ============================================= */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-danger {
  background: var(--danger);
  color: #fff;
}

.badge-accent {
  background: var(--check);
  color: #fff;
}

.badge-colecao {
  background: var(--check);
  color: #fff;
  border: 1px solid var(--check);
}

/* =============================================
   SECTION TITLES
   ============================================= */
.sec-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.sec-title-light { color: hsl(345, 12%, 18%); }
.sec-title-dark  { color: #fff; }
.highlight-lime  { color: var(--check); }
.hl-accent       { color: var(--check); }
.sec-title-dark .highlight-lime,
.sec-title-dark .hl-accent { color: #ffd6d6; }

/* CHECK CIRCLE */
.check-circle {
  color: var(--check);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-banner {
  background: var(--danger);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: #fff;
  color: hsl(345, 12%, 18%);
  padding: 32px 20px 72px;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-bullet {
  display: inline-block;
  background: hsl(348, 30%, 93%);
  color: hsl(345, 12%, 38%);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.hero-dtf-mark {
  background: var(--check);
  color: #fff;
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 900;
  font-style: normal;
}

.hero-cartelas-line {
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  font-weight: 600;
  color: hsl(345, 10%, 42%);
  text-align: center;
  margin-bottom: 32px;
}

.cartelas-destaque {
  color: var(--check);
  font-weight: 800;
  font-style: normal;
}

.hero-title .accent { color: var(--check); }

.hero-underline {
  text-decoration: underline;
  text-decoration-color: rgba(183, 28, 28, 0.45);
  text-underline-offset: 4px;
}

.hero-mockup {
  margin: 0 auto 32px;
  max-width: 560px;
}

.hero-mockup img {
  border-radius: 12px;
  width: 100%;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.pill {
  background: hsl(348, 30%, 93%);
  color: hsl(345, 12%, 32%);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.hero-sub {
  font-size: 1rem;
  color: hsl(345, 10%, 40%);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-sub strong { color: hsl(345, 12%, 18%); }

.hero-delivery-text {
  font-size: 0.82rem;
  color: hsl(345, 10%, 44%);
  margin-bottom: 12px;
}

.hero-delivery-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.delivery-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: hsl(348, 30%, 93%);
  border: 1px solid hsl(345, 15%, 82%);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: hsl(345, 12%, 30%);
}

/* =============================================
   PARA QUEM E
   ============================================= */
.forwhom-section {
  background: var(--light);
  padding: 60px 20px;
}

.forwhom-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.forwhom-inner .sec-title {
  margin-bottom: 36px;
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 680px) {
  .forwhom-grid { grid-template-columns: 1fr; }
}

.forwhom-card {
  background: #fff;
  border: 1px solid hsl(345, 15%, 88%);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.forwhom-icon {
  font-size: 2rem;
}

.forwhom-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: hsl(345, 12%, 16%);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.forwhom-card p {
  font-size: 0.82rem;
  color: hsl(345, 10%, 45%);
  line-height: 1.65;
}

/* =============================================
   CAROUSEL
   ============================================= */
.carousel-section {
  background: var(--dark);
  padding: 60px 0 60px;
}

.carousel-header {
  text-align: center;
  padding: 0 24px 40px;
}

.carousel-wrap {
  overflow: hidden;
  position: relative;
}

.carousel-gap {
  height: 10px;
}

.carousel-track {
  display: flex;
  gap: 14px;
  animation: scroll-l 38s linear infinite;
  width: max-content;
  padding: 8px 0;
}

.carousel-track.reverse {
  animation: scroll-r 42s linear infinite;
}

.carousel-item {
  flex-shrink: 0;
  width: 240px;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scroll-l {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-r {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.carousel-cta {
  text-align: center;
  padding: 44px 24px 0;
}

/* =============================================
   ANTES E DEPOIS
   ============================================= */
.before-after-section {
  background: #fff;
  padding: 70px 20px;
}

.ba-inner {
  max-width: 860px;
  margin: 0 auto;
}

.ba-title {
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  color: hsl(345, 12%, 18%);
}

.hl-red   { color: var(--danger); }
.hl-green { color: var(--check); }

.ba-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.ba-img-wrap img {
  width: 100%;
  max-width: 860px;
  border-radius: 10px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .ba-grid { grid-template-columns: 1fr; }
}

.ba-card {
  border-radius: 14px;
  padding: 28px 24px;
}

.ba-card-no {
  background: hsl(0, 30%, 97%);
  border: 1px solid hsl(0, 30%, 88%);
}

.ba-card-yes {
  background: hsl(345, 40%, 97%);
  border: 1px solid hsl(345, 30%, 83%);
}

.ba-label {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.ba-label-no  { color: var(--danger); }
.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.87rem;
  font-weight: 600;
  color: hsl(345, 12%, 18%);
  line-height: 1.45;
}

.ba-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-dot-no  { background: hsl(0, 80%, 92%); color: var(--danger); }
.ba-dot-yes { background: hsl(345, 60%, 93%); color: var(--check); }

.ba-cta {
  text-align: center;
  margin-top: 44px;
}

/* =============================================
   COMO FAZER
   ============================================= */
.howto-section {
  background: #fff;
  padding: 70px 20px;
}

.howto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.howto-inner .sec-title {
  margin-bottom: 8px;
}

.howto-sub {
  font-size: 0.92rem;
  color: hsl(345, 10%, 48%);
  font-weight: 600;
  margin-bottom: 48px;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .howto-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .howto-grid { grid-template-columns: 1fr; }
}

.howto-step {
  background: var(--light);
  border: 1px solid hsl(345, 15%, 88%);
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.howto-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--check);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.howto-content h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: hsl(345, 12%, 16%);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.howto-content p {
  font-size: 0.81rem;
  color: hsl(345, 10%, 45%);
  line-height: 1.6;
}

.howto-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   FEATURES
   ============================================= */
.features-section {
  background: #FBDEDA;
  padding: 70px 20px;
}

.features-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.features-inner .sec-title {
  margin-bottom: 44px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 800px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(155, 30, 30, 0.10);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 0.87rem;
  font-weight: 800;
  color: hsl(345, 12%, 18%);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.77rem;
  color: hsl(345, 10%, 42%);
  line-height: 1.55;
}

.features-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   URGENCIA
   ============================================= */
.urgency-section {
  background: #FBDEDA;
  padding: 0 20px 70px;
}

.urgency-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid hsl(345, 30%, 85%);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(155, 30, 30, 0.10);
}

.urgency-inner h3 {
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 700;
  color: hsl(345, 12%, 18%);
  line-height: 1.45;
}

.urgency-inner h3 strong { color: var(--check); }

.urgency-inner p {
  font-size: 0.9rem;
  color: hsl(345, 10%, 42%);
  line-height: 1.65;
  max-width: 560px;
}

.payment-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
  font-size: 0.77rem;
  font-weight: 700;
  color: hsl(345, 10%, 42%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.testimonials-section {
  background: var(--light);
  padding: 70px 0;
}

.testimonials-header {
  text-align: center;
  padding: 0 24px 36px;
}

.test-wrap {
  overflow: hidden;
}

.test-track {
  display: flex;
  gap: 14px;
  animation: scroll-l 28s linear infinite;
  width: max-content;
  padding: 8px 0;
}

.test-item {
  flex-shrink: 0;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.test-item img {
  width: 100%;
  height: auto;
  display: block;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.test-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ENTREGAVEIS
   ============================================= */
.deliverables-section {
  background: var(--light);
  padding: 0 20px 70px;
}

.deliverables-inner {
  max-width: 720px;
  margin: 0 auto;
}

.deliverables-top {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.deliverables-box {
  background: #fff;
  border: 1px solid hsl(345, 15%, 88%);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.del-tag {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--check);
  background: hsl(345, 50%, 97%);
  border: 1px solid hsl(345, 40%, 87%);
  border-radius: 6px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.del-mockup {
  width: 100%;
  max-width: 440px;
  border-radius: 10px;
  margin-bottom: 28px;
}

.del-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.del-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(345, 12%, 18%);
  line-height: 1.45;
}

.bonus-bridge {
  text-align: center;
  margin-top: 48px;
  padding: 36px 24px;
  background: hsl(345, 15%, 97%);
  border-radius: 12px;
  border: 1px dashed hsl(345, 15%, 83%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bonus-bridge h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  line-height: 1.25;
}

.bonus-bridge h3 strong { color: var(--danger); }

.bonus-bridge p {
  font-size: 0.9rem;
  color: hsl(215, 10%, 45%);
}

/* =============================================
   BONUS
   ============================================= */
.bonus-section {
  background: #FBDEDA;
  padding: 70px 20px;
}

.bonus-inner {
  max-width: 900px;
  margin: 0 auto;
}

.bonus-inner .sec-title {
  text-align: center;
  margin-bottom: 44px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 760px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .bonus-grid { grid-template-columns: 1fr; }
}

.bonus-card {
  background: #fff;
  border: 1px solid hsl(345, 30%, 85%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(155, 30, 30, 0.10);
}

.bonus-card-destaque {
  border-color: var(--accent);
}

.bonus-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bonus-num {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--check);
  margin-bottom: 6px;
}

.bonus-card-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: hsl(345, 12%, 18%);
  margin-bottom: 8px;
  line-height: 1.35;
}

.bonus-card-desc {
  font-size: 0.78rem;
  color: hsl(345, 10%, 42%);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.bonus-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: hsl(345, 10%, 52%);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.riscado {
  text-decoration: line-through;
  color: var(--danger);
}

.gratis {
  background: var(--check);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.bonus-somente-hoje {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--danger);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.bonus-titulo-hoje {
  color: var(--danger);
  font-size: 0.75em;
  font-weight: 800;
}

.bonus-total-box {
  text-align: center;
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--check);
  border: 1px solid var(--check);
  border-radius: 12px;
}

.bonus-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.bonus-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   PLANOS
   ============================================= */
.plans-section {
  background: var(--light);
  padding: 70px 20px;
}

.plans-inner {
  max-width: 900px;
  margin: 0 auto;
}

.plans-top {
  text-align: center;
  margin-bottom: 40px;
}

.plans-urgency-bar {
  background: var(--danger);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 680px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* Plano Basico */
.plan-basic {
  background: hsl(345, 20%, 96%);
  border-radius: 20px;
  padding: 28px 24px;
}

/* Plano Completo */
.plan-complete {
  background: #fff;
  border: 2px solid var(--check);
  border-radius: 20px;
  overflow: hidden;
}

.plan-badge-top {
  display: block;
  width: 100%;
  background: var(--check);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-badge-danger {
  display: block;
  width: 100%;
  background: var(--danger);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-body {
  padding: 20px 24px 28px;
}

.plan-badge-colecao-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: hsl(345, 12%, 32%);
  margin-bottom: 16px;
  text-align: center;
}

.plan-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 18px;
  border-radius: 8px;
  display: block;
}

.plan-basic .plan-img { max-width: 220px; }

.plan-incl-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(345, 10%, 48%);
  margin-bottom: 12px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.plan-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: hsl(345, 12%, 18%);
  padding: 8px 0;
  border-bottom: 1px solid hsl(345, 15%, 88%);
  line-height: 1.4;
}

.plan-feat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.plan-feat-item.gift {
  color: hsl(345, 12%, 18%);
  font-weight: 600;
}

.plan-feat-riscado {
  color: hsl(345, 10%, 55%);
  font-size: 0.82rem;
  gap: 6px;
}

/* Precos */
.plan-price-box {
  background: transparent;
  border: none;
  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: 4px;
}

.price-main {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1FAD6B;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.price-inst {
  font-size: 0.82rem;
  color: hsl(0, 0%, 8%);
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.price-save {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1FAD6B;
  display: block;
}

/* CTAs dos planos */
.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.plan-cta-basic {
  background: hsl(345, 15%, 32%);
  color: #fff;
}

.plan-cta-complete {
  background: var(--accent);
  color: #fff;
  animation: pulse-cta 1.4s ease-in-out infinite;
}

.plan-urgency {
  text-align: center;
  color: var(--danger);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

.plan-guarantee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 4px;
  color: hsl(345, 12%, 18%);
}

.hotmart-seal {
  display: block;
  margin: 8px auto 0;
  max-width: 160px;
}

/* Caixa 92% */
.plan-popular-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: #DD2C2C;
  font-weight: 700;
  background: hsl(0, 80%, 97%);
  border: 2px solid hsl(0, 72%, 80%);
  border-radius: 10px;
  padding: 14px 16px;
  line-height: 1.55;
}

.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); }
}

/* Circulo animado no preco */
.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); }
  100% { transform: scale(1.06, 0.96) rotate(2deg); }
}

/* =============================================
   GARANTIA
   ============================================= */
.guarantee-section {
  background: #fff;
  padding: 70px 20px;
  border-top: 1px solid hsl(345, 15%, 90%);
}

.guarantee-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

@media (max-width: 600px) {
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
  }
}

.guarantee-seal {
  width: 140px;
  flex-shrink: 0;
}

.guarantee-text { flex: 1; }

.guarantee-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: hsl(345, 12%, 18%);
  line-height: 1.3;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: hsl(345, 10%, 38%);
  line-height: 1.75;
  margin-bottom: 12px;
}

.guarantee-text p strong { color: hsl(345, 12%, 18%); }

.guarantee-risk {
  font-size: 1rem;
  font-weight: 800;
  color: var(--check);
  margin-bottom: 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background: var(--light);
  padding: 70px 20px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-inner .sec-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid hsl(345, 15%, 88%);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: hsl(345, 12%, 18%);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  gap: 16px;
  line-height: 1.45;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: hsl(345, 10%, 48%);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.88rem;
  color: hsl(345, 10%, 38%);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 18px;
}

/* =============================================
   CTA FINAL
   ============================================= */
.footer-cta-section {
  background: var(--dark);
  padding: 70px 20px;
}

.footer-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-cta-inner h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

.footer-cta-inner p {
  font-size: 0.92rem;
  color: hsl(345, 10%, 60%);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: hsl(345, 28%, 8%);
  padding: 36px 20px;
}

.footer-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.72rem;
  color: hsl(345, 10%, 40%);
  line-height: 1.85;
}

/* =============================================
   MODAIS
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 22px 24px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform .25s;
  margin: auto;
  box-sizing: border-box;
  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: .12em;
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.modal-badge-exit {
  background: #8b1a3a;
}

.modal-card-exit {
  border-top: 4px solid #8b1a3a;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.modal-title-sub {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--danger);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

.modal-sete-reais {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--check);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.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(--danger);
  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: 200px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.modal-bonus-box {
  background: #fff8e1;
  border: 2px solid #facc15;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: left;
}

.modal-bonus-title {
  font-size: .78rem;
  font-weight: 900;
  color: #92400e;
  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: .8rem;
  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: 8px;
  margin-bottom: 10px;
}

.modal-price-box {
  background: #f8f8f8;
  border-radius: 12px;
  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;
  text-decoration-thickness: 2px;
}

.modal-price-main {
  font-size: 2.6rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
}

.modal-price-inst {
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(345, 10%, 52%);
}

@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, .7); }
}

.modal-btn-sim {
  display: block;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 14px;
  border-bottom: 4px solid #15803d;
  animation: modal-cta-pulse 1.6s ease-in-out infinite;
  line-height: 1.2;
}

.modal-btn-nao {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: .8rem;
  text-decoration: underline;
  padding: 4px 8px;
  font-family: inherit;
  transition: color .15s;
  display: block;
  margin: 0 auto;
}

.modal-btn-nao:hover { color: #666; }

@media (max-width: 480px) {
  .modal-overlay { padding: 10px; align-items: center; }
  .modal-card { padding: 18px 14px 16px; border-radius: 14px; }
  .modal-badge { font-size: .62rem; padding: 4px 12px; margin-bottom: 8px; }
  .modal-title { font-size: 1rem; margin-bottom: 8px; }
  .modal-title-sub { font-size: .8rem; margin-top: 2px; }
  .modal-highlight-300 { gap: 4px; padding: 4px 0; margin-bottom: 8px; }
  .modal-num-300 { font-size: 2.4rem; letter-spacing: -2px; }
  .modal-label-300 { font-size: .68rem; }
  .modal-bonus-box { padding: 10px; margin-bottom: 10px; }
  .modal-bonus-title { font-size: .68rem; margin-bottom: 6px; }
  .modal-bonus-list { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 6px; }
  .modal-bonus-list li { font-size: .66rem; }
  .modal-desconto-faixa { font-size: .65rem; padding: 6px 10px; margin-bottom: 8px; }
  .modal-price-box { padding: 10px; margin-bottom: 12px; }
  .modal-price-from { font-size: .75rem; }
  .modal-price-main { font-size: 1.7rem; }
  .modal-btn-sim { font-size: .78rem; padding: 12px 14px; margin-bottom: 10px; }
  .modal-btn-nao { font-size: .74rem; }
}

/* =============================================
   RESPONSIVO GERAL
   ============================================= */
@media (max-width: 480px) {
  .btn-cta {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .urgency-inner {
    padding: 28px 20px;
  }

  .deliverables-box {
    padding: 24px 18px;
  }

  .plan-basic,
  .plan-body {
    padding: 20px 18px;
  }

  .guarantee-inner {
    gap: 24px;
  }
}
