/* =============================================
   VARIÁVEIS E RESET
============================================= */
:root {
  --verde:         #2C9963;
  --verde-escuro:  #1B5E20;
  --verde-hover:   #259158;
  --fundo:         #FAF7F2;
  --fundo-alt:     #F0EAE0;
  --fundo-card:    #FFFFFF;
  --escuro:        #1C1208;
  --texto:         #1A1A1A;
  --texto-leve:    #5C5C5C;
  --laranja:       #E8833A;
  --azul-texto:    #1B5E20;
  --vermelho:      #E53E3E;
  --titulo:        #3D1F0A;
  --borda:         #E2D5C5;
}

/* alias para manter compatibilidade com variável legada */
:root { --fundo-dark: var(--fundo); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--fundo);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background-color: var(--vermelho);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: sticky;
  top: 0;
  z-index: 200;
}

/* =============================================
   HERO — fundo escuro
============================================= */
.hero-section {
  background: var(--escuro);
  padding: 56px 0 64px;
  text-align: center;
  overflow-x: hidden;
}

.collection-badge {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

.headline {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 0 12px;
}

.headline .destaque {
  color: var(--laranja);
}

.hero-section .container {
  max-width: 1050px;
}

.image-wrapper {
  max-width: 950px;
  margin: 0 auto 32px;
}

.mockup-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.40);
}

.hero-badges { margin-bottom: 28px; }

.hero-badges-text {
  font-size: 1rem;
  color: #C8B8A8;
  margin-bottom: 14px;
}

.hero-badges-text strong { color: #F0D9B8; }

.hero-badges-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  color: #F0D9B8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.subheadline {
  font-size: 1.05rem;
  color: #C8B8A8;
  max-width: 600px;
  margin: 0 auto 36px;
  padding: 0 12px;
}

.subheadline strong { color: #F0D9B8; }

/* =============================================
   CTA BUTTON — padrão global
============================================= */
.cta-container { text-align: center; }

.cta-button {
  display: inline-block;
  background: #39B574;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.3s;
  border: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #32A267;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.cta-price {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #7A6A5A;
}

.cta-price strong {
  color: #F0D9B8;
  font-size: 1.25rem;
}

.cta-subtitle {
  font-size: 0.82rem;
  color: #7A6A5A;
  margin-top: 8px;
}

/* ── HERO TRUST BADGES ── */
.trust-badges-hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #C8B8A8;
  font-size: 0.75rem;
  font-weight: 600;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: #F0D9B8;
  opacity: 0.95;
}

/* =============================================
   SECTION TITLE
============================================= */
.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--titulo);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 32px;
}

.underline-highlight {
  position: relative;
  display: inline-block;
}

.underline-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: var(--laranja);
  border-radius: 2px;
}

/* =============================================
   CAROUSEL — Projetos
============================================= */
.carousel-section {
  padding: 64px 0;
  background: var(--fundo-alt);
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 20px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}


.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.track-reverse {
  animation: scroll-right 36s linear infinite;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.carousel-item {
  flex-shrink: 0;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA dentro do carousel (fundo alt) */
.carousel-section .cta-container { background: transparent; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section {
  padding: 64px 0;
  background: var(--fundo);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--borda);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   SHOWCASE
============================================= */
.showcase-section {
  padding: 64px 0;
  background: #fff;
}

.showcase-container { text-align: center; }

.showcase-card {
  background: var(--fundo);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 0 auto;
  max-width: 720px;
  text-align: left;
  border: 1px solid var(--borda);
}

.artist-list {
  columns: 2;
  column-gap: 32px;
}

.artist-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--texto);
  padding: 8px 0;
  border-bottom: 1px solid var(--borda);
  break-inside: avoid;
}

.artist-bullet {
  color: var(--verde);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

/* =============================================
   MARKET PROOF
============================================= */
.market-proof-section {
  padding: 64px 0;
  background: var(--fundo);
}

.market-proof-container {
  text-align: center;
}

.market-proof-subtitle {
  font-size: 1.05rem;
  color: var(--texto-leve);
  margin-top: -16px;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.market-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.market-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--borda);
  background: #fff;
  transition: transform 0.3s;
}

.market-card img {
  width: 100%;
  height: auto;
  display: block;
}

.market-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .market-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .market-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   FEATURES
============================================= */
.features-section {
  padding: 64px 0;
  background: var(--fundo-alt);
  text-align: center;
}

.features-subtitle {
  font-size: 0.98rem;
  color: var(--texto-leve);
  margin-top: -18px;
  margin-bottom: 42px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid var(--borda);
  transition: transform 0.2s;
}

.feature-card:hover { transform: translateY(-3px); }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--fundo-alt);
  color: var(--titulo);
  margin: 0 auto 14px;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--titulo);
  line-height: 1.35;
}

/* =============================================
   URGÊNCIA — fundo claro com card
============================================= */
.urgency-section {
  padding: 56px 0;
  background: #fff;
}

.urgency-container { text-align: center; }

.urgency-card {
  max-width: 660px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--fundo);
  border-radius: 16px;
  border: 1px solid var(--borda);
}

.promo-tag {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.urgency-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--titulo);
  line-height: 1.45;
}

.urgency-card h3 strong {
  color: #7B4A28;
}

.payment-icons-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.payment-icons-inline span {
  font-size: 0.82rem;
  color: var(--texto);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =============================================
   ENTREGÁVEIS
============================================= */
.deliverables-section {
  padding: 64px 0;
  background: var(--fundo-alt);
  text-align: center;
}

.deliverables-box {
  background: var(--escuro);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 660px;
  margin: 0 auto;
}

.deliverables-tag {
  display: inline-block;
  background: var(--verde);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.deliverables-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin: 0 auto 28px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.30);
}

.deliverables-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.deliverables-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  font-weight: 600;
  color: #D8C8B0;
}

.check-icon {
  color: var(--verde);
  flex-shrink: 0;
}

.bonus-transition {
  text-align: center;
  margin-top: 52px;
  padding: 42px 24px 0;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-transition h3 {
  font-size: 1.55rem;
  color: var(--titulo);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
}

.bonus-transition h3 strong { color: #7B4A28; }

.bonus-transition p {
  color: var(--texto-leve);
  font-size: 1rem;
  margin-bottom: 22px;
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* =============================================
   BÔNUS
============================================= */
.bonus-section {
  padding: 64px 0;
  background: var(--fundo);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  border: 1.5px solid var(--borda);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44,153,99,0.14);
}

.bonus-img-wrap {
  width: 100%;
  min-height: 280px;
  padding: 30px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--fundo-alt) 0%, var(--fundo) 100%);
}

.bonus-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.25));
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-img {
  transform: scale(1.04) translateY(-4px);
}

.bonus-content {
  padding: 16px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.bonus-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--titulo);
  line-height: 1.35;
  text-transform: none;
}

.bonus-desc {
  font-size: 0.82rem;
  color: var(--texto-leve);
  line-height: 1.6;
}

.bonus-value {
  width: 100%;
  margin-top: 12px;
  padding: 12px 22px;
  border-top: 1.5px solid var(--borda);
  font-size: 0.85rem;
  color: var(--texto-leve);
  font-weight: 600;
  text-align: center;
}

.riscado {
  text-decoration: line-through;
  color: #A0A0A0;
}

.gratis {
  color: var(--verde);
  font-size: 0.95rem;
}

/* =============================================
   PLANOS
============================================= */
.plans-section {
  padding: 64px 0;
  background: var(--fundo-alt);
}

.plans-header {
  text-align: center;
  padding: 0 20px 32px;
}

.promo-tag-red {
  display: inline-block;
  background: var(--vermelho);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.plans-divider {
  border: none;
  border-top: 2px solid var(--borda);
  max-width: 200px;
  margin: 20px auto 0;
}

.plans-container { max-width: 900px; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.plan-card {
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.plan-basic {
  background: #fff;
  border: 1px solid var(--borda);
}

.plan-complete {
  background: #fff;
  border: 2px solid var(--verde);
}

.plan-title {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--titulo);
  text-align: center;
  margin-bottom: 20px;
}

.text-white { color: #F0D9B8 !important; }

.plan-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.plan-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texto-leve);
  margin-bottom: 12px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--borda);
}

.plan-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.plan-features.text-white li { color: #C8B8A8; }

.check-icon-sm {
  min-width: 20px;
  color: #0b8c2d;
  margin-top: 2px;
}

.gift-item {
  color: var(--texto) !important;
  font-size: 0.8rem !important;
}

.gift-item strong {
  color: var(--titulo);
  margin-right: 4px;
}

.plan-price-box {
  background: transparent;
  padding: 12px 0;
  text-align: center;
  margin-bottom: 20px;
  border: none;
}

.price-complete {
  background: transparent;
  border: none;
}

.price-old {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--vermelho);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--verde);
  margin: 4px 0;
  display: block;
}

.price-installments {
  display: block;
  font-size: 0.76rem;
  color: var(--texto-leve);
  margin-top: 4px;
}

.price-economy,
.price-economy strong,
.price-economy .green-dot {
  color: var(--verde) !important;
}

.price-economy {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 8px;
}

.green-dot {
  color: var(--verde);
  font-size: 1.2rem;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 12px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: transform 0.18s, opacity 0.18s;
}

.plan-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.missed-item {
  margin-top: 6px;
  color: #A0A0A0;
}

.missed-item s, .missed-item strong {
  color: #A0A0A0;
  text-decoration: line-through;
}

.btn-basic {
  background: #E5DDD0;
  color: var(--azul-texto);
  border: 2px solid var(--azul-texto);
}

.btn-complete {
  background: #39B574;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  animation: pulse-button-cta 2s infinite;
}

.btn-complete:hover {
  animation-play-state: paused;
  transform: scale(1.02) translateY(-2px);
  background: #32A267;
  box-shadow: 0 6px 20px rgba(50,162,103,0.5);
}

@keyframes pulse-button-cta {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(57,181,116,0.6); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(57,181,116,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(57,181,116,0); }
}

.tag-bestseller {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD54F;
  color: #1B4D0E;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.promo-tag-red-inner {
  background: rgba(229,62,62,0.15);
  color: #FF8A80;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(229,62,62,0.25);
}

.tag-2x {
  background: rgba(44,153,99,0.15);
  color: #5DCC6A;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(44,153,99,0.30);
}

.plan-popular-alert {
  text-align: center;
  margin-top: 22px;
  padding: 18px 16px;
  background: #FFF9EB;
  border-radius: 12px;
  border: 1.5px dashed rgba(232, 131, 58, 0.7);
}

.plan-popular-alert p {
  font-size: 0.85rem;
  color: #A05E2B;
  font-weight: 800;
  margin-bottom: 14px;
}

.arrow-down-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--laranja);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin: 0 auto;
  animation: bounce-arrow 0.7s ease-in-out infinite alternate;
  box-shadow: 0 4px 10px rgba(232, 131, 58, 0.3);
}

@keyframes bounce-arrow {
  from { transform: translateY(-4px); }
  to   { transform: translateY(4px); }
}

.urgency-seal-text {
  font-size: 0.82rem;
  color: #E53E3E;
  margin-top: 14px;
  margin-bottom: 6px;
  text-align: center;
}

.hotmart-seal {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
}

.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; }
}

/* =============================================
   FAQ
============================================= */
.faq-section {
  padding: 64px 0;
  background: var(--fundo-alt);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.faq-item[open] {
  border-color: var(--verde);
}

.faq-item summary {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--titulo);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--verde);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--texto-leve);
  line-height: 1.6;
}

/* =============================================
   GARANTIA — fundo escuro
============================================= */
.guarantee-section {
  padding: 64px 0;
  background: var(--escuro);
}

.guarantee-container {
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 760px;
}

.guarantee-img-col { flex-shrink: 0; }

.guarantee-seal { width: 160px; }

.guarantee-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #F0D9B8;
  margin-bottom: 14px;
  line-height: 1.3;
}

.guarantee-content p {
  font-size: 0.93rem;
  color: #9A8878;
  line-height: 1.7;
  margin-bottom: 10px;
}

.guarantee-content strong { color: #F0D9B8; }

.guarantee-risk {
  font-weight: 800 !important;
  color: var(--verde) !important;
  font-size: 1rem !important;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.55);
  padding: 32px 0;
  text-align: center;
}

.footer-container { max-width: 700px; }

.site-footer p { font-size: 0.78rem; margin-bottom: 10px; }

.footer-disclaimer {
  font-size: 0.70rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.36);
}

/* =============================================
   RESPONSIVO
============================================= */
@media (max-width: 700px) {
  .headline        { font-size: 1.55rem; }
  .section-title   { font-size: 1.25rem; }
  .plans-grid      { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .artist-list     { columns: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guarantee-container { flex-direction: column; text-align: center; }
  .bonus-grid      { grid-template-columns: 1fr; }
  .bonus-img-wrap  { min-height: 220px; }
  .plan-complete   { margin-top: 22px; }
  .cta-button      { padding: 16px 28px; font-size: 0.9rem; }
  .urgency-card    { padding: 36px 24px; }
  .deliverables-box { padding: 32px 20px; }
  .image-wrapper   { 
     transform: scale(1.18); 
     margin-bottom: 48px; 
     margin-top: 10px;
  }
}

@media (max-width: 450px) {
  .features-grid       { grid-template-columns: 1fr; }
  .hero-badges-pills   { gap: 8px; }
  .headline            { font-size: 1.35rem; }
}
