/* === FONTES LOCAIS (Poppins) === */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/poppins-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/poppins-900.woff2') format('woff2');
}

/* === RESET E BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === ANIMAÇÕES GLOBAIS === */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(120%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(120%); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.btn-completo-shine {
  display: block;
  width: 100%;
  padding: 17px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  animation: pulse 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.btn-completo-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shine 2.5s ease-in-out infinite;
}

/* === UPSELL POPUP (ORDER BUMP) === */
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
#upsell-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 10000;
  overflow-y: auto;
}
#upsell-overlay.active { display: block; }
#upsell-modal {
  background: #FFFFFF;
  border-radius: 14px;
  max-width: 500px;
  width: 90%;
  max-height: 92vh;
  overflow-y: auto;
  margin: 16px auto;
  padding: 26px 24px 20px;
  position: relative;
}
#upsell-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: #4A4A4A;
  cursor: pointer;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
#upsell-close:hover { color: #7B6FD4; }
.upsell-title {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 6px;
}
.upsell-plus-badge {
  display: block;
  background: #EFEDFB;
  color: #5A4FB0;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 auto 10px;
  width: fit-content;
}
.upsell-old-price {
  color: #dc2626;
  text-decoration: line-through;
  font-size: 13px;
  text-align: center;
  margin-bottom: 2px;
}
.upsell-promo-price {
  font-size: 40px;
  font-weight: 900;
  color: #16a34a;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 10px;
}
#upsell-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 10px;
  padding: 8px 0;
  margin: 0 0 12px;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}
#upsell-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 11px;
  line-height: 1.25;
  color: #1A1A1A;
  padding: 3px 0;
}
#upsell-list li .plan-check { width: 15px; height: 15px; margin-top: 0; }
#upsell-list li .plan-check svg { width: 9px; height: 9px; }
.upsell-btn-main {
  display: block;
  width: 100%;
  padding: 17px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
}
.upsell-btn-main:hover { opacity: 0.92; }
.upsell-btn-secondary {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid #CCCCCC;
  background: transparent;
  color: #4A4A4A;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.upsell-btn-secondary:hover { background: #F5F5F5; }
@media (max-width: 480px) {
  #upsell-modal { padding: 20px 16px 16px; margin: 10px auto; max-height: 96vh; }
  .upsell-title { font-size: 18px; }
  .upsell-promo-price { font-size: 34px; }
  .upsell-btn-main { font-size: 15px; }
}

/* === UTILITÁRIOS === */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.section-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #7B6FD4;
  margin: 12px auto 40px;
  border-radius: 2px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #5A4FB0, #7B6FD4);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 48px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(90,79,176,0.35);
  animation: pulse 2.5s ease-in-out infinite;
  transition: 0.3s;
  text-align: center;
}
.btn-cta:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-arrow { display: inline-block; transition: transform 0.25s ease; }
.btn-cta:hover .btn-arrow { transform: translateX(4px); }
.badge-green {
  display: inline-block;
  background: #EFEDFB;
  border: 1px solid #7B6FD4;
  color: #5A4FB0;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 999px;
}
.plan-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: #7B6FD4;
  color: #FFFFFF;
}

/* === FAIXA DE URGÊNCIA === */
.urgency-bar {
  width: 100%;
  background: #7B6FD4;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: 0.5px;
}

/* === HERO === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes dotFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(12deg); }
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(123,111,212,0.16) 1.5px, transparent 1.5px),
    linear-gradient(180deg, #F3F1FC 0%, #FFFFFF 65%);
  background-size: 24px 24px, 100% 100%;
  padding: 64px 20px 84px;
  text-align: center;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-shape-1 { width: 420px; height: 420px; background: rgba(123,111,212,0.32); top: -180px; left: -140px; }
.hero-bg-shape-2 { width: 360px; height: 360px; background: rgba(123,111,212,0.26); bottom: -140px; right: -130px; }
.hero-content { position: relative; z-index: 1; }
.hero-content > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFEDFB;
  border: 1px solid rgba(123,111,212,0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #5A4FB0;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.05s both;
}
.hero-eyebrow-icon { animation: bounceDown 1.6s ease-in-out infinite; }
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.15s both;
}
.hero h1 .accent {
  background: linear-gradient(120deg, #5A4FB0, #9B8FF0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: #52525B;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
  letter-spacing: 0.1px;
  animation: fadeUp 0.7s ease 0.25s both;
}
.hero-sub strong { color: #1A1A1A; font-weight: 700; }
.hero-sub-punch {
  color: #5A4FB0;
  position: relative;
  white-space: nowrap;
}
.hero-sub-punch::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 7px;
  background: rgba(123,111,212,0.22);
  z-index: -1;
  border-radius: 3px;
}
.hero-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 4px 0 20px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border-radius: 14px;
  min-width: 150px;
}
.hero-stat-num { font-size: 28px; font-weight: 900; line-height: 1.1; }
.hero-stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; margin-top: 2px; }
.hero-stat-ready { background: #DCFCE7; box-shadow: 0 6px 16px rgba(22,163,74,0.18); }
.hero-stat-ready .hero-stat-num { color: #16a34a; }
.hero-stat-ready .hero-stat-label { color: #166534; }
.hero-stat-edit { background: #EFEDFB; box-shadow: 0 6px 16px rgba(90,79,176,0.14); }
.hero-stat-edit .hero-stat-num { color: #7B6FD4; }
.hero-stat-edit .hero-stat-label { color: #5A4FB0; }
.hero-img {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeUp 0.7s ease 0.35s both, floatY 5s ease-in-out 1.1s infinite;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center, rgba(123,111,212,0.35) 0%, rgba(123,111,212,0) 68%);
  filter: blur(10px);
  z-index: -1;
}
.hero-img img { width: 100%; height: auto; display: block; border-radius: 18px; filter: drop-shadow(0 26px 40px rgba(90,79,176,0.28)); }
.hero-dot {
  position: absolute;
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}
.hero-dot-1 { width: 22px; height: 22px; background: #7B6FD4; top: 4%; left: -4%; border-radius: 50%; animation: dotFloat 3.4s ease-in-out infinite; }
.hero-dot-2 { width: 16px; height: 16px; background: #FFC857; top: 62%; right: -3%; transform: rotate(20deg); animation: dotFloat 4s ease-in-out 0.4s infinite; }
.hero-dot-3 { width: 14px; height: 14px; background: #5A4FB0; bottom: 6%; left: 4%; border-radius: 50%; animation: dotFloat 3.7s ease-in-out 0.8s infinite; }
.hero-sticker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 90%;
  aspect-ratio: 640 / 170;
  margin: -10px auto 26px;
  transform: rotate(-2deg);
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero-sticker-brush {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.22));
}
.hero-sticker-text {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  padding: 0 12%;
}
.hero-content .btn-cta { animation: fadeUp 0.7s ease 0.45s both, pulse 2.5s ease-in-out 1.15s infinite; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  background: #FFFFFF;
  border: 1px solid #EDEBFA;
  border-radius: 14px;
  padding: 8px 16px;
  margin: 22px auto 0;
  box-shadow: 0 4px 14px rgba(90,79,176,0.08);
  font-size: 12px;
  font-weight: 500;
  color: #8A8A8A;
  text-align: left;
  line-height: 1.4;
  animation: fadeUp 0.7s ease 0.55s both;
}
.hero-trust strong { color: #5A4FB0; font-weight: 700; }
.hero-trust-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFEDFB;
  border-radius: 50%;
  font-size: 11px;
}

/* === GANCHOS DE DOR === */
.hooks-section {
  background: #F5F5F5;
  padding: 80px 20px;
}
.hooks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hook-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hook-card:hover {
  border-color: #7B6FD4;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(90,79,176,0.1);
}
.hook-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFEDFB, #E3DFF9);
  color: #5A4FB0;
  border-radius: 12px;
}
.hook-content { min-width: 0; }
.hook-card h3 { font-size: 16px; font-weight: 700; color: #1A1A1A; margin-bottom: 6px; line-height: 1.3; }
.hook-card p { font-size: 14px; color: #4A4A4A; line-height: 1.6; }

/* === APP EXCLUSIVO === */
.app-section {
  background: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}
.app-section .badge-green { margin-bottom: 16px; }
.app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 12px;
}
.app-img {
  position: relative;
  width: 100%;
  max-width: 260px;
  animation: floatY 5s ease-in-out infinite;
}
.app-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 26px 40px rgba(90,79,176,0.28));
}
.app-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 620px;
}
.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EFEDFB;
  border: 1px solid rgba(123,111,212,0.35);
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
}
.app-chip:nth-child(2) { background: #FDECF4; border-color: rgba(243,25,123,0.35); }
.app-chip:nth-child(3) { background: #FEF9C3; border-color: rgba(255,200,87,0.5); }
.app-chip:nth-child(4) { background: #DCFCE7; border-color: rgba(22,163,74,0.35); }
.app-chip:nth-child(5) { background: #FDECF4; border-color: rgba(243,25,123,0.35); }
.app-chip:nth-child(6) { background: #EFEDFB; border-color: rgba(123,111,212,0.35); }

/* === CARROSSEL === */
.carousel-section {
  background: #FFFFFF;
  padding: 70px 0;
}
.carousel-section .carousel-header {
  padding: 0 20px;
  margin-bottom: 40px;
}
.carousel-title {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 40s linear infinite;
  padding: 8px 0;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-card {
  width: 280px;
  height: 420px;
  flex-shrink: 0;
  background: #EBEBEB;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAAAAA;
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
}
.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === AMOSTRAS DO CATÁLOGO === */
.samples-section {
  background: #F5F5F5;
  padding: 80px 20px;
  text-align: center;
}
.samples-sub {
  font-size: 15px;
  color: #4A4A4A;
  max-width: 520px;
  margin: -20px auto 12px;
}
.samples-credit {
  display: inline-block;
  background: #EFEDFB;
  color: #5A4FB0;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 40px;
}
.samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.sample-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sample-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.sample-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sample-body { padding: 22px; }
.sample-badge {
  display: inline-block;
  background: #EFEDFB;
  color: #5A4FB0;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sample-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.sample-meta {
  margin-bottom: 10px;
}
.sample-meta li {
  font-size: 13px;
  color: #4A4A4A;
  margin-bottom: 4px;
}
.sample-body p {
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 10px;
}
.sample-tip {
  background: #FFF8E1;
  color: #92400E;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 0;
}

/* === O QUE VOCÊ VAI RECEBER === */
.receive-section {
  background: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}
.receive-section .badge-green { margin-bottom: 16px; }
.receive-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  overflow: visible;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin: 0 auto 48px;
  display: block;
}
.receive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.receive-card {
  position: relative;
  background: linear-gradient(180deg, #FBFAFF 0%, #FFFFFF 14%);
  border: 1px solid #ECE9FA;
  border-radius: 20px;
  padding: 36px 32px 32px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(90,79,176,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.receive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(90,79,176,0.14);
}
.receive-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5A4FB0, #9B8FF0);
}
.receive-card::after {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(123,111,212,0.08);
  line-height: 1;
  z-index: 0;
}
.receive-card:nth-of-type(1)::after { content: '01'; }
.receive-card:nth-of-type(2)::after { content: '02'; }
.receive-card:nth-of-type(2) { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.receive-card .item-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #EFEDFB;
  color: #5A4FB0;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.receive-card h3 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.receive-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 20px;
}
.receive-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.receive-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333333;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #F0EEFA;
}
.receive-list li:last-child { border-bottom: none; }

/* === BÔNUS === */
.bonus-section {
  background: #F5F5F5;
  padding: 80px 20px;
  text-align: center;
}
.bonus-headline {
  font-size: 30px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.bonus-headline .accent { color: #7B6FD4; }
.bonus-sub {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 24px;
}
.bonus-badge {
  display: inline-block;
  background: #7B6FD4;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  padding: 10px 28px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.bonus-card {
  background: #FFFFFF;
  border: 1px solid #7B6FD4;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bonus-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}
.bonus-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bonus-content {
  padding: 20px;
}
.bonus-num-badge {
  display: inline-block;
  background: #EFEDFB;
  color: #5A4FB0;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.bonus-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.bonus-content p {
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 14px;
}
.bonus-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bonus-price .old {
  color: #dc2626;
  text-decoration: line-through;
  font-size: 13px;
}
.bonus-price .free {
  color: #16a34a;
  font-weight: 700;
  font-size: 15px;
}

/* === OFERTAS / PLANOS === */
.offers-section {
  background: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}
.countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: #7B6FD4;
  margin-bottom: 16px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.countdown-block {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 16px 24px;
  min-width: 90px;
  text-align: center;
}
.countdown-block .num {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #7B6FD4;
  line-height: 1;
}
.countdown-block .lbl {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.countdown-sep {
  font-size: 36px;
  font-weight: 800;
  color: #7B6FD4;
  line-height: 1;
  padding-bottom: 16px;
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

/* === DEPOIMENTOS === */
.testimonials-section {
  background: #F5F5F5;
  padding: 80px 20px;
}
.testimonials-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.t-avatar {
  width: 52px;
  height: 52px;
  background: #EFEDFB;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.t-body { flex: 1; }
.t-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.t-name { font-size: 15px; font-weight: 700; color: #1A1A1A; }
.t-meta { font-size: 13px; color: #9CA3AF; }
.t-stars { color: #facc15; font-size: 14px; margin: 6px 0; }
.t-text {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
  font-style: italic;
}

/* === FAQ === */
.faq-section {
  background: #FFFFFF;
  padding: 80px 20px;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
  cursor: pointer;
  transition: background 0.3s;
  user-select: none;
}
.faq-question:hover { background: #F5F5F5; }
.faq-arrow {
  color: #7B6FD4;
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-answer { display: block; }

.faq-help {
  max-width: 500px;
  margin: 40px auto 0;
  text-align: center;
  background: linear-gradient(135deg, #F3F1FD, #E9E5FB);
  border: 1px solid #D8D2F5;
  border-radius: 16px;
  padding: 32px 24px;
}
.faq-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(123, 111, 212, 0.2);
}
.faq-help-title {
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.faq-help-subtitle {
  font-size: 14px;
  color: #6B6B6B;
  margin-bottom: 16px;
}
.faq-help-email {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  background: linear-gradient(135deg, #5A4FB0, #7B6FD4);
  padding: 12px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(123, 111, 212, 0.35);
}
.faq-help-email:hover { filter: brightness(1.05); }

/* === GARANTIA === */
.guarantee-section {
  background: #F5F5F5;
  padding: 80px 20px;
}
.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: center;
}
.guarantee-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1A1A1A;
  text-transform: uppercase;
}
.guarantee-text p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.8;
  margin: 12px 0 20px;
}

/* === RODAPÉ === */
footer {
  background: #000000;
  border-top: 1px solid #333333;
  padding: 40px 20px;
  text-align: center;
}
footer p {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
}
footer p.legal {
  font-size: 12px;
  color: #cccccc;
  margin-top: 8px;
}

/* === NOTIFICAÇÃO SOCIAL === */
#social-proof-container {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 9999;
}
.social-proof-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1.5px solid #7B6FD4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  max-width: 200px;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-icon {
  width: 24px;
  height: 24px;
  background: #EFEDFB;
  color: #7B6FD4;
  font-size: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-name { font-size: 12px; font-weight: 700; color: #000000; line-height: 1.3; }
.sp-action { font-size: 11px; font-weight: 500; color: #7B6FD4; margin-top: 1px; }

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .hero { padding: 48px 20px 64px; background-size: 18px 18px, 100% 100%; }
  .hero-bg-shape-1 { width: 260px; height: 260px; top: -110px; left: -90px; }
  .hero-bg-shape-2 { width: 220px; height: 220px; bottom: -80px; right: -80px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-dot-1 { width: 16px; height: 16px; }
  .hero-dot-2 { width: 12px; height: 12px; }
  .hero-dot-3 { width: 10px; height: 10px; }
  .hero-sticker { width: 250px; }
  .hero-sticker-text { font-size: 13px; }
  .btn-cta { width: 100%; padding: 18px 24px; font-size: 16px; }

  .hero-stats { flex-wrap: nowrap; gap: 8px; }
  .hero-stat { flex: 1 1 0; min-width: 0; padding: 10px 8px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 9.5px; }

  .hooks-grid { grid-template-columns: 1fr; }

  .carousel-card { width: 200px; height: 300px; }

  .samples-grid { grid-template-columns: 1fr; }
  .samples-sub { margin-top: -10px; }

  .receive-grid { grid-template-columns: 1fr; }
  .receive-img { width: 100%; height: auto; max-width: 100%; overflow: visible; }

  .bonus-grid { grid-template-columns: 1fr; }

  .plans-grid { grid-template-columns: 1fr; }
  .plan-price { font-size: 36px; }

  .testimonial-card { flex-direction: column; }

  .guarantee-inner { flex-direction: column; text-align: center; }
  .guarantee-text h3 { font-size: 20px; }

  #social-proof-container { top: 12px; right: 12px; }
  .social-proof-card { max-width: 150px; min-width: 130px; padding: 8px 10px; gap: 6px; }
  .sp-icon { width: 20px; height: 20px; font-size: 11px; }
  .sp-name { font-size: 11px; }
  .sp-action { font-size: 10px; }

  .section-title { font-size: 22px; }
  .offers-section, .receive-section, .bonus-section, .hooks-section,
  .testimonials-section, .faq-section, .guarantee-section, .samples-section,
  .app-section {
    padding: 50px 16px;
  }
  .hero { padding: 40px 16px 60px; }
  .countdown-block { padding: 12px 16px; min-width: 72px; }
  .countdown-block .num { font-size: 34px; }
}
