/* =========================================================
   sections.css — Seções intermediárias do site
   =========================================================
   Cobre: vídeo, marquee, pain block, como funciona, bento,
          ranking, avaliações, incluído, CTA final
   ========================================================= */

/* ─────────────────────────────────────────────────────────
   SEÇÃO DE VÍDEO
   ───────────────────────────────────────────────────────── */
.video-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.video-section .section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 64, 0.1);
  border: 1px solid rgba(255, 215, 64, 0.22);
  border-radius: var(--pill-radius);
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: 24px;
}

/* ─────────────────────────────────────────────────────────
   MARQUEE DE FIGURINHAS
   ───────────────────────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  cursor: default;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

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

.marquee-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.marquee-item:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* ─────────────────────────────────────────────────────────
   BLOCO DE DOR (Pain Block)
   ───────────────────────────────────────────────────────── */
.pain-block {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
  margin-bottom: 36px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 60, 60, 0.05);
  border: 1px solid rgba(255, 60, 60, 0.14);
  border-radius: 14px;
}

.pain-item:hover {
  background: rgba(255, 60, 60, 0.09);
  border-color: rgba(255, 60, 60, 0.25);
}

.pain-x {
  font-size: 18px;
  font-weight: 900;
  color: #ff5252;
  flex-shrink: 0;
  line-height: 1.5;
  margin-top: 1px;
}

.pain-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  line-height: 1.65;
}

.pain-desc strong {
  color: var(--white);
}

.pain-transition {
  max-width: 700px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(59, 158, 255, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(59, 158, 255, 0.18);
  border-radius: 16px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  line-height: 1.75;
}

.pain-transition strong {
  color: var(--white);
  font-weight: 800;
}

/* ─────────────────────────────────────────────────────────
   COMO FUNCIONA — 3 PASSOS
   ───────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 158, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 12px;
  right: 18px;
  pointer-events: none;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.step-img {
  display: block;
  width: min(100%, 180px);
  margin: 16px auto 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

/* ─────────────────────────────────────────────────────────
   FEATURES BENTO GRID
   ───────────────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 26px;
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
  overflow: hidden;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 158, 255, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.bento-card.span2 {
  grid-column: span 2;
}

.bento-card.span3 {
  grid-column: span 3;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(-4deg);
}

.bento-icon.blue {
  background: rgba(59, 158, 255, 0.15);
}

.bento-icon.green {
  background: rgba(0, 230, 118, 0.15);
}

.bento-icon.purple {
  background: rgba(168, 85, 247, 0.15);
}

.bento-icon.yellow {
  background: rgba(255, 215, 64, 0.15);
}

.bento-icon.pink {
  background: rgba(255, 77, 141, 0.15);
}

.bento-icon.orange {
  background: rgba(255, 152, 0, 0.15);
}

.bento-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.bento-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.bento-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.bento-screen {
  width: 100%;
  border-radius: 14px;
  margin-top: 14px;
  object-fit: cover;
  max-height: 200px;
}

.bento-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.bento-row .bento-text {
  flex: 1;
}

.bento-row .bento-img {
  width: 115px;
  flex-shrink: 0;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
  .bento-card--volume .bento-volume-img {
    display: none;
  }
}

.social-carousel-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: socialMarquee 16s linear infinite;
  will-change: transform;
}

.social-carousel-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.social-carousel-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.social-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

@keyframes socialMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 13px));
  }
}

/* ─────────────────────────────────────────────────────────
   GAMIFICAÇÃO / RANKING
   ───────────────────────────────────────────────────────── */
.ranking-card {
  background: linear-gradient(135deg, rgba(59, 158, 255, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(59, 158, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ranking-card--compact {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  max-width: 700px;
  padding: 36px 30px;
  margin-left: auto;
  margin-right: auto;
}

.ranking-card--compact .ranking-left {
  width: 100%;
}

.ranking-card--compact .ranking-perks {
  max-width: 560px;
}

@media (min-width: 769px) {
  .ranking-card--compact .ranking-perks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 100%;
  }

  .ranking-card--compact .perk {
    height: 100%;
  }
}

.ranking-left h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  line-height: 1.02;
  margin-bottom: 14px;
}

.ranking-left p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.ranking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}

.perk:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(59, 158, 255, 0.2);
  transform: translateX(4px);
}

.perk-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.5;
}

.perk-text {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.perk-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.perk .bento-img {
  display: block;
  width: auto;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  object-fit: cover;
}

@media (min-width: 769px) {
  .perk .bento-img {
    width: 170px;
  }
}

.ranking-right img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* ─────────────────────────────────────────────────────────
   O QUE ESTÁ INCLUÍDO
   ───────────────────────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.inc-item:hover {
  border-color: rgba(0, 230, 118, 0.25);
  background: rgba(0, 230, 118, 0.03);
}

.inc-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 230, 118, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 900;
  line-height: 1;
}

.inc-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  padding-top: 4px;
}

/* ─────────────────────────────────────────────────────────
   AVALIAÇÕES
   ───────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px;
  transition: transform 0.25s var(--ease), border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-4px) rotate(0.5deg);
  border-color: rgba(255, 215, 64, 0.2);
}

.review-stars {
  color: var(--yellow);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  background: var(--grad);
  color: #fff;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.author-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────
   GARANTIAS ABAIXO DO PRICING
   ───────────────────────────────────────────────────────── */
.pricing-guarantees {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.guarantee-item span:first-child {
  font-size: 16px;
}

/* ─────────────────────────────────────────────────────────
   CTA FINAL
   ───────────────────────────────────────────────────────── */
.cta-final {
  text-align: center;
  padding: 110px 5%;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: var(--pill-radius);
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* Ponto animado no CTA final (verde) */
.cta-badge .badge-dot {
  background: var(--green);
}

.cta-final h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 7vw, 76px);
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.02;
}

.cta-final p {
  font-size: 18px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  display: block;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVIDADE DAS SEÇÕES
   ───────────────────────────────────────────────────────── */
@media (min-width: 1025px) {
  .bento-3d-app-only {
    display: none;
  }
}

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

  .bento-card.span2 {
    grid-column: span 2;
  }

  .bento-card.span3 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ranking-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .ranking-right {
    display: none;
  }

  .cta-final {
    padding: 80px 5%;
  }

  .pricing-guarantees {
    gap: 16px;
    padding: 18px;
  }

  .guarantee-item {
    font-size: 12px;
  }

  .pain-transition {
    font-size: 16px;
  }
}

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

  .bento-card.span2,
  .bento-card.span3 {
    grid-column: span 1;
  }

  .bento-row {
    flex-direction: column;
  }

  .bento-row .bento-img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
  }

  .social-carousel-track {
    gap: 20px;
    animation-duration: 14s;
  }

  .social-logo {
    width: 64px;
    height: 64px;
  }

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

  .ranking-card {
    padding: 24px 18px;
  }

  .pain-item {
    padding: 14px 16px;
  }
}