@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;800;900&amp;family=Inter:wght@400;500;600;700&amp;display=swap');

/* ==========================================
   VARIÁVEIS DE COR - Paleta Oficial 2026
   ========================================== */
:root {
  --orange: #EB6C17;
  --lime: #C1D146;
  --green: #78B768;
  --lilac: #BAB5D4;
  --teal: #1C8272;
  --red: #E3000A;
  --blue: #1362AB;
  --yellow: #FAFF72;
  --black: #111111;
  --white: #FFFFFF;
  --gray: #F2F2F2;
  --text-dark: #1a1a1a;
  --text-mid: #555555;
  --preço-antigo: #ff0000;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
}

/* ==========================================
   ELEMENTOS GEOMÉTRICOS DECORATIVOS
   Replicando a textura do álbum oficial
   ========================================== */
.geo-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
  z-index: 0;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  z-index: 2;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 0 #014132, 0 10px 30px rgba(1, 76, 51, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 0 #014132, 0 15px 35px rgba(1, 76, 51, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--blue);
  border: 3px solid var(--blue);
  box-shadow: 0 4px 0 #0d3f6e;
}

.btn-secondary:hover {
  box-shadow: 0 6px 0 #0d3f6e;
  background-color: #eef4ff;
}

.btn-glow {
  animation: pulseBtn 2.5s ease-in-out infinite;
}

@keyframes pulseBtn {

  0%,
  100% {
    box-shadow: 0 6px 0 #014132, 0 0 0 0 rgba(1, 76, 51, 0.3);
  }

  50% {
    box-shadow: 0 6px 0 #014132, 0 0 0 14px rgba(1, 76, 51, 0.3);
  }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background-color: var(--white);
  position: relative;
}

/* Decorações do hero — simulando as formas do álbum nas bordas */
.hero-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-deco span {
  display: block;
  position: absolute;
  border-radius: 50%;
}

.hd1 {
  width: 140px;
  height: 140px;
  background: var(--red);
  top: 5%;
  left: -50px;
}

.hd2 {
  width: 100px;
  height: 100px;
  background: var(--blue);
  top: 18%;
  left: -30px;
}

.hd3 {
  width: 80px;
  height: 80px;
  background: var(--orange);
  top: 36%;
  left: -20px;
}

.hd4 {
  width: 120px;
  height: 120px;
  background: var(--lime);
  top: 55%;
  left: -40px;
}

.hd5 {
  width: 90px;
  height: 90px;
  background: var(--teal);
  top: 72%;
  left: -20px;
}

.hd6 {
  width: 110px;
  height: 110px;
  background: var(--lilac);
  top: 86%;
  left: -30px;
}

.hd7 {
  width: 140px;
  height: 140px;
  background: var(--blue);
  top: 5%;
  right: -50px;
}

.hd8 {
  width: 100px;
  height: 100px;
  background: var(--red);
  top: 18%;
  right: -30px;
}

.hd9 {
  width: 80px;
  height: 80px;
  background: var(--green);
  top: 36%;
  right: -20px;
}

.hd10 {
  width: 120px;
  height: 120px;
  background: var(--orange);
  top: 55%;
  right: -40px;
}

.hd11 {
  width: 90px;
  height: 90px;
  background: var(--yellow);
  top: 72%;
  right: -20px;
}

.hd12 {
  width: 110px;
  height: 110px;
  background: var(--teal);
  top: 86%;
  right: -30px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 2px solid var(--black);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 20px;
}

.hero-title .highlight-orange {
  color: var(--orange);
  -webkit-text-stroke: 1px var(--orange);
}

.hero-title .highlight-blue {
  color: var(--blue);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-vsl {
  width: 100%;
  margin-bottom: 28px;
  border-radius: 14px;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}

.trust-item i {
  color: var(--teal);
  font-size: 1rem;
}

/* Álbum visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.album-wrap {
  position: relative;
  perspective: 1200px;
}

.album-cover {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: -20px 25px 60px rgba(0, 0, 0, 0.25), 8px 8px 0 var(--blue);
  transform: rotateY(-8deg) rotateX(3deg);
  animation: floatAlbum 5s ease-in-out infinite;
  border: 3px solid var(--black);
}

@keyframes floatAlbum {

  0%,
  100% {
    transform: rotateY(-8deg) rotateX(3deg) translateY(0);
  }

  50% {
    transform: rotateY(-4deg) rotateX(6deg) translateY(-18px);
  }
}

.album-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--red);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  border: 3px solid var(--black);
  animation: spin 8s linear infinite;
  z-index: 5;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================
   BARRA DE URGÊNCIA
   ========================================== */
.urgency-bar {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 14px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.urgency-bar span {
  color: var(--yellow);
  margin: 0 6px;
}

/* ==========================================
   SEÇÃO: BENEFÍCIOS
   ========================================== */
.benefits {
  padding: 100px 0;
  background-color: var(--gray);
  position: relative;
}

/* blobs decorativos */
.benefits::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--lime);
  border-radius: 50%;
  top: -100px;
  right: -80px;
  opacity: 0.35;
}

.benefits::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--orange);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
  opacity: 0.3;
}

.section-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 60px;
  line-height: 1.1;
}

.section-title.center {
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 4px 4px 0 var(--black);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 6px 10px 0 var(--black);
}

.benefit-card:nth-child(1) .b-icon {
  background: var(--orange);
}

.benefit-card:nth-child(2) .b-icon {
  background: var(--lime);
}

.benefit-card:nth-child(3) .b-icon {
  background: var(--blue);
}

.benefit-card:nth-child(4) .b-icon {
  background: var(--teal);
}

.b-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 22px;
  box-shadow: 3px 3px 0 var(--black);
}

.b-icon i {
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--black);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ==========================================
   SEÇÃO: PREVIEW
   ========================================== */
.preview {
  padding: 100px 0;
  background: var(--white);
}

.preview-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.preview-intro p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 12px;
}

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

.preview-item {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--black);
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 5px 5px 0 var(--black);
  transition: transform 0.3s, box-shadow 0.3s;
}

.preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 5px 10px 0 var(--black);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-item .pi-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 100px;
  border: 2px solid var(--black);
}

/* ==========================================
   SEÇÃO: COMO FUNCIONA
   ========================================== */
.how-it-works {
  padding: 100px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.how-it-works .section-tag {
  color: var(--yellow);
}

.how-it-works .section-title {
  color: var(--white);
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ==========================================
   SEÇÃO: PREÇOS
   ========================================== */
.pricing {
  padding: 100px 0;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--red);
  border-radius: 50%;
  top: -120px;
  left: -100px;
  opacity: 0.12;
}

.pricing::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--blue);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  opacity: 0.12;
}

.pricing-center {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--black);
  position: relative;
  z-index: 2;
}

.pricing-card .plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  margin: 16px 0 30px;
}

.price-from {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--preço-antigo);
  margin-bottom: 4px;
}

.price-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.price-currency {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal);
  align-self: flex-start;
  padding-top: 14px;
  line-height: 1;
}

.price-number {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}

.price-suffix {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  font-size: 0.97rem;
  color: var(--text-dark);
  font-weight: 500;
}

.features-sep {
  height: 1px;
  background: #e8e8e8;
  padding: 0;
  margin: 4px 0;
  pointer-events: none;
}

.features-list li .check {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
  margin-bottom: 8px;
}

.section-cta .btn {
  width: auto;
  max-width: 420px;
  font-size: 1.05rem;
  padding: 18px 40px;
}

.secure-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 40px 20px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}

footer p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================
   UPSELL ESPECÍFICO
   ========================================== */
.upsell-warn {
  background: var(--orange);
  color: var(--black);
  text-align: center;
  padding: 12px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.upsell-hero {
  background: var(--blue);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.upsell-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  top: -100px;
  left: -80px;
}

.upsell-hero .success-icon {
  font-size: 3rem;
  color: var(--lime);
  margin-bottom: 16px;
  display: block;
}

.upsell-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.upsell-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.upsell-offer-section {
  padding: 80px 0;
  background: var(--gray);
  position: relative;
}

.upsell-offer-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--lime);
  border-radius: 50%;
  top: -150px;
  right: -120px;
  opacity: 0.2;
}

.upsell-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 8px 8px 0 var(--black);
  position: relative;
  z-index: 2;
}

.upsell-card .top-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--lime), var(--teal), var(--blue), var(--red));
  border-radius: 25px 25px 0 0;
}

.upsell-offer-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--black);
  margin-bottom: 16px;
  text-align: center;
}

.upsell-offer-desc {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.upsell-features {
  list-style: none;
  background: var(--gray);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 36px;
  border: 2px solid #e0e0e0;
}

.upsell-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.upsell-features li:last-child {
  border-bottom: none;
}

.upsell-features .fi {
  color: var(--orange);
  font-size: 1.1rem;
}

.upsell-price-area {
  text-align: center;
  margin-bottom: 32px;
}

.upsell-price-from {
  font-size: 1rem;
  color: var(--text-mid);
  text-decoration: line-through;
}

.upsell-price-main {
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.upsell-price-main sup {
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.upsell-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.upsell-cta-area .btn {
  width: 100%;
  max-width: 420px;
  padding: 22px;
  font-size: 1.2rem;
}

.upsell-skip {
  color: var(--text-mid);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}

.upsell-skip:hover {
  color: var(--red);
}

/* ==========================================
   ANIMAÇÃO FADE-IN (controlada pelo JS)
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVO
   ========================================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .album-cover {
    max-width: 280px;
    transform: none;
    animation: floatAlbumMobile 5s ease-in-out infinite;
  }

  @keyframes floatAlbumMobile {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-15px);
    }
  }

  /* Esconde blobs das bordas em telas menores */
  .hd1,
  .hd2,
  .hd3,
  .hd4,
  .hd5,
  .hd6,
  .hd7,
  .hd8,
  .hd9,
  .hd10,
  .hd11,
  .hd12 {
    display: none;
  }
}

/* ==========================================
   UPSELL — TRUST / PAGAMENTO SEGURO
   ========================================== */
.upsell-trust-section {
  background: var(--white);
  padding: 48px 0 40px;
  border-top: 2px solid #e8e8e8;
}

.upsell-trust-heading {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

.upsell-trust-heading i {
  margin-right: 8px;
}

.upsell-trust-badges {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.upsell-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 130px;
  text-align: center;
}

.utb-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f4f1;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
}

.upsell-trust-badge span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.upsell-trust-badge small {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.3;
}

/* ==========================================
   UPSELL — FAQ
   ========================================== */
.upsell-faq-section {
  background: var(--gray);
  padding: 64px 0 72px;
}

.upsell-faq-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
}

.upsell-faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.upsell-faq-item {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.upsell-faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(28, 130, 114, 0.12);
}

.upsell-faq-item[open] .upsell-faq-icon {
  transform: rotate(180deg);
}

.upsell-faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  user-select: none;
}

.upsell-faq-q::-webkit-details-marker {
  display: none;
}

.upsell-faq-q span {
  flex: 1;
}

.upsell-faq-icon {
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.upsell-faq-a {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.65;
  border-top: 1px solid #efefef;
  padding-top: 16px;
}

.upsell-faq-a strong {
  color: var(--text-dark);
}

@media (max-width: 640px) {
  .upsell-trust-badges {
    gap: 16px;
  }

  .upsell-trust-badge {
    width: 100px;
  }

  .utb-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

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

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

  .pricing-card {
    padding: 40px 24px;
  }

  .upsell-card {
    padding: 40px 24px;
  }

  .price-number {
    font-size: 4rem;
  }

  .price-currency {
    font-size: 1.2rem;
    padding-top: 10px;
  }

  .upsell-price-main {
    font-size: 3.5rem;
  }
}

/* ==========================================
   SEÇÃO: FEEDBACKS — CARROSSEL AUTOMÁTICO
   ========================================== */
.feedbacks {
  padding: 100px 0 90px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.feedbacks-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.feedbacks-intro p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 12px;
}

.feedbacks-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.feedbacks-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: feedbacksScroll 50s linear infinite;
  will-change: transform;
}

.feedbacks-marquee:hover .feedbacks-track {
  animation-play-state: paused;
}

.feedback-card {
  flex: 0 0 auto;
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  background: var(--white);
  transition: transform 0.25s ease;
}

.feedback-card:hover {
  transform: translateY(-4px);
}

.feedback-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

@media (prefers-reduced-motion: reduce) {
  .feedbacks-track {
    animation: none;
  }
}

/* ==========================================
   SEÇÃO: ABRINDO AS FIGURINHAS — VÍDEO WISTIA
   ========================================== */
.opening {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f7f7f9 100%);
  position: relative;
  overflow: hidden;
}

.opening::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: var(--orange);
  opacity: 0.08;
  border-radius: 50%;
  top: -120px;
  left: -120px;
  z-index: 0;
}

.opening::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--blue);
  opacity: 0.08;
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

.opening .container {
  position: relative;
  z-index: 2;
}

.opening-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.opening-intro p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 12px;
}

.opening-video-wrap {
  max-width: 360px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  background: var(--black);
}

.opening-video-wrap wistia-player {
  display: block;
  width: 100%;
}

@media (max-width: 640px) {
  .feedback-card {
    width: 220px;
  }

  .feedbacks-track {
    gap: 16px;
    animation-duration: 40s;
  }

  .opening-video-wrap {
    max-width: 300px;
    box-shadow: 5px 5px 0 var(--black);
  }
}