/* ==========================================================================
   ViraAchadinho.ai — Design System Oficial Refinado
   Harmonização: Shein Black + Shopee Orange + Mercado Livre Yellow
   Bordas Afiadas (4px - Quase 90º) | Carrossel 76vw com Profundidade Nítida
   ========================================================================== */

:root {
  /* Paleta Oficial Harmonizada */
  --shein-black: #0b0c10;
  --shein-surface: #12131a;
  --shein-card: #171822;
  --shein-card-border: rgba(255, 255, 255, 0.08);
  
  --shopee-orange: #ee4d2d;
  --shopee-orange-hover: #ff5722;
  --shopee-orange-glow: rgba(238, 77, 45, 0.35);
  
  --ml-yellow: #ffe600;
  --ml-yellow-dark: #ffd000;
  --ml-yellow-glow: rgba(255, 230, 0, 0.25);
  
  --text-white: #ffffff;
  --text-gray-light: #e2e8f0;
  --text-gray-muted: #94a3b8;
  --text-gray-dark: #64748b;
  
  /* Tipografia */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Bordas Quase 90º (Afiadas e Precisas) */
  --radius-sharp: 4px;
  --radius-xs: 2px;
  
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Geral */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--shein-black);
  color: var(--text-gray-light);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Botões Afiados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-sharp);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-shopee {
  background: var(--shopee-orange);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  font-size: 0.98rem;
  box-shadow: 0 4px 16px var(--shopee-orange-glow);
}

.btn-shopee:hover {
  background: var(--shopee-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 77, 45, 0.5);
}

.btn-shopee-header {
  background: var(--shopee-orange);
  color: #fff;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 2px 8px var(--shopee-orange-glow);
  white-space: nowrap;
  border-radius: var(--radius-sharp);
}

.btn-shopee-header:hover {
  background: var(--shopee-orange-hover);
}

.btn-outline-clean {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1.5rem;
  font-size: 0.98rem;
}

.btn-outline-clean:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-clean-action {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.75rem 1.3rem;
}

.btn-clean-action:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn-lg {
  padding: 0.95rem 1.7rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Announcement Bar & Countdown
   ========================================================================== */
.top-banner {
  background: #14161f;
  border-bottom: 1px solid var(--shein-card-border);
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  text-align: center;
}

.top-banner-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--shopee-orange);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--shopee-orange);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.banner-text strong {
  color: var(--ml-yellow);
}

.scarcity-timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0b0c10;
  border: 1px solid rgba(255, 230, 0, 0.4);
  border-radius: var(--radius-sharp);
  padding: 0.12rem 0.45rem;
}

.timer-label {
  font-size: 0.68rem;
  color: var(--text-gray-dark);
  text-transform: uppercase;
  font-weight: 700;
}

.timer-digits {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ml-yellow);
}

.time-box {
  background: #1a1c26;
  padding: 0.05rem 0.25rem;
  border-radius: 2px;
  min-width: 18px;
  text-align: center;
  font-size: 0.75rem;
}

.colon {
  color: var(--shopee-orange);
  font-size: 0.72rem;
}

.banner-link {
  color: var(--ml-yellow);
  font-weight: 700;
  margin-left: 0.2rem;
}

.banner-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Header (Alinhamento Preciso no Mobile & Tablet)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--shein-card-border);
  padding: 0.6rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-box {
  background: var(--shopee-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sharp);
  letter-spacing: 0.05em;
}

.logo-text {
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-highlight {
  color: var(--shopee-orange);
}

.logo-dot {
  color: var(--ml-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-gray-muted);
}

.nav-links a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: #171822;
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hamburger-btn:hover {
  border-color: var(--shopee-orange);
}

.ham-line {
  width: 18px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

/* ==========================================================================
   Mobile Drawer
   ========================================================================== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 310px;
  height: 100%;
  background: #12131a;
  border-left: 1px solid var(--shein-card-border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--shein-card-border);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-gray-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.drawer-promo-box {
  background: #191b26;
  border: 1px solid var(--shopee-orange);
  border-radius: var(--radius-sharp);
  padding: 0.8rem;
  margin: 1.1rem 0;
}

.drawer-promo-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--shopee-orange);
  letter-spacing: 0.05em;
  display: block;
}

.drawer-promo-box p {
  font-size: 0.8rem;
  color: #fff;
  margin: 0.2rem 0;
}

.drawer-countdown {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ml-yellow);
  font-size: 1.05rem;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sharp);
  color: var(--text-gray-light);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
}

.drawer-link:hover {
  background: #1b1c26;
  color: var(--shopee-orange);
}

.drawer-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--shein-card-border);
}

/* ==========================================================================
   Hero Section & Brand Badges (Dimensões 100% Iguais + Logos)
   ========================================================================== */
.hero {
  padding: 2.8rem 0 2.5rem;
  text-align: center;
  position: relative;
}

/* Bloco das Marcas: Dimensões Idênticas + Texto na Linha de Baixo */
.marketplaces-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.marketplaces-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  width: 112px;
  height: 32px;
  border-radius: var(--radius-sharp);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  padding: 0 0.4rem;
  box-sizing: border-box;
}

.brand-img {
  width: auto;
  height: 18px;
  max-width: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-shopee {
  background: #ee4d2d;
  color: #ffffff;
}

.brand-ml {
  background: #ffe600;
  color: #111111;
}

.brand-shein {
  background: #000000;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.shein-bold {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.marketplaces-caption {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #14161f;
  border: 1px solid var(--shein-card-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sharp);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-gray-muted);
}

.caption-pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ml-yellow);
  box-shadow: 0 0 5px var(--ml-yellow);
}

.hero-title {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.18;
}

.gradient-headline {
  color: var(--shopee-orange);
  background: linear-gradient(90deg, #ff5722 0%, #ffe600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-gray-muted);
  max-width: 660px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: var(--ml-yellow);
}

.desktop-break {
  display: block;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 1.2rem;
  background: var(--shein-surface);
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-check {
  color: var(--ml-yellow);
  font-weight: 800;
}

.trust-divider {
  width: 1px;
  height: 12px;
  background: var(--shein-card-border);
}

/* ==========================================================================
   Showcase Gallery (Profundidade Nítida & Vídeos Laterais Visíveis)
   ========================================================================== */
.showcase-section {
  background-color: var(--shein-surface);
  border-top: 1px solid var(--shein-card-border);
  border-bottom: 1px solid var(--shein-card-border);
  overflow: hidden;
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--shopee-orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: var(--text-gray-muted);
  max-width: 580px;
  margin: 0 auto 1.8rem;
  font-size: 0.92rem;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.tab-btn {
  background: #171822;
  border: 1px solid var(--shein-card-border);
  color: var(--text-gray-muted);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sharp);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--shopee-orange);
  border-color: var(--shopee-orange);
  color: #ffffff;
}

/* Viewport do Carrossel (Visibilidade das Laterais sem Blur Excessivo) */
.carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(11, 12, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sharp);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.carousel-arrow:hover {
  background: var(--shopee-orange);
  border-color: var(--shopee-orange);
}

.prev-arrow { left: 8px; }
.next-arrow { right: 8px; }

/* Slides: Card Ativo em Evidência + Laterais Nítidas Visíveis (Sem Blur Escuro) */
.carousel-slide {
  flex: 0 0 68vw;
  max-width: 275px;
  margin: 0 0.45rem;
  opacity: 0.85; /* Nítido e visível para o usuário saber que há vídeos ao lado! */
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  cursor: pointer;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1.02);
}

.card-916 {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
  border-radius: var(--radius-sharp);
  overflow: hidden;
  background: #141520;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide.active .card-916 {
  border-color: var(--shopee-orange);
  border-width: 2px;
  box-shadow: 0 10px 32px var(--shopee-orange-glow);
}

/* Fundos Visuais */
.slide-visual {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.visual-moda { background: linear-gradient(165deg, #1f1433, #4338ca); }
.visual-casa { background: linear-gradient(165deg, #063a2c, #0284c7); }
.visual-tech { background: linear-gradient(165deg, #131b2e, #1e293b); }
.visual-beleza { background: linear-gradient(165deg, #4a0c24, #e11d48); }

.slide-top-tag {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius-sharp);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  letter-spacing: 0.05em;
}

.product-callout {
  background: rgba(0, 0, 0, 0.85);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.callout-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.callout-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ml-yellow);
}

.callout-price del {
  font-size: 0.7rem;
  color: var(--text-gray-dark);
  margin-left: 0.3rem;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem;
  background: rgba(11, 12, 16, 0.3);
}

.watermark {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  letter-spacing: 0.05em;
}

.audio-waves {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
}

.audio-waves span {
  width: 2.5px;
  background-color: var(--shopee-orange);
  border-radius: 1px;
  animation: barWave 1s infinite alternate ease-in-out;
}

.audio-waves span:nth-child(1) { height: 4px; }
.audio-waves span:nth-child(2) { height: 11px; animation-delay: 0.2s; }
.audio-waves span:nth-child(3) { height: 7px; animation-delay: 0.1s; }
.audio-waves span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
.audio-waves span:nth-child(5) { height: 5px; animation-delay: 0.15s; }

@keyframes barWave {
  0% { height: 3px; }
  100% { height: 12px; }
}

.captions-box {
  background: rgba(0, 0, 0, 0.88);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  margin-bottom: 0.35rem;
}

.captions-box p {
  font-size: 0.76rem;
  line-height: 1.35;
  color: #fff;
}

.captions-box mark {
  background: transparent;
  color: var(--ml-yellow);
  font-weight: 800;
}

.progress-bar-container {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--shopee-orange);
}

.carousel-slide.active .progress-bar-fill {
  width: 100%;
  transition: width 4.5s linear;
}

.slide-caption {
  margin-top: 0.65rem;
  text-align: center;
}

.slide-caption h4 {
  font-size: 0.88rem;
  color: #fff;
}

.slide-caption span {
  font-size: 0.75rem;
  color: var(--text-gray-dark);
}

.carousel-indicator-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 1.2rem;
}

.carousel-indicator-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shein-card-border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicator-dots .dot.active {
  background: var(--shopee-orange);
  transform: scale(1.3);
}

/* Seletor de Outros Vídeos Abaixo do Principal */
.carousel-thumbs-row {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.thumbs-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray-dark);
}

.thumbs-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.thumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #161824;
  border: 1px solid var(--shein-card-border);
  color: var(--text-gray-muted);
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-sharp);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.thumb-pill:hover {
  background: #202332;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.thumb-pill.active {
  background: var(--shopee-orange);
  color: #ffffff;
  border-color: var(--shopee-orange);
  box-shadow: 0 3px 12px var(--shopee-orange-glow);
}

.thumb-icon {
  font-size: 0.85rem;
}

.thumb-txt {
  white-space: nowrap;
}

/* ==========================================================================
   Como Funciona
   ========================================================================== */
.how-section {
  background: var(--shein-black);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.step-box {
  background: var(--shein-card);
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: var(--transition);
}

.step-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.active-step {
  border-color: var(--shopee-orange);
  box-shadow: 0 4px 16px var(--shopee-orange-glow);
}

.step-badge {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.6rem;
}

.step-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-box p {
  font-size: 0.88rem;
  color: var(--text-gray-muted);
}

/* ==========================================================================
   ROI Calculator
   ========================================================================== */
.calc-section {
  background: var(--shein-surface);
}

.calc-panel {
  background: var(--shein-card);
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 2.2rem 1.6rem;
  max-width: 880px;
  margin: 0 auto;
}

.slider-wrapper {
  margin: 1.8rem 0;
}

.slider-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.step-name-badge {
  background: var(--shopee-orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sharp);
}

.step-volume {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ml-yellow);
}

.clean-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #252836;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.clean-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sharp);
  background: var(--shopee-orange);
  border: 2px solid #fff;
  box-shadow: 0 0 8px var(--shopee-orange-glow);
  cursor: pointer;
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-gray-dark);
  margin-top: 0.7rem;
}

.slider-ticks .tick.active {
  color: var(--ml-yellow);
  font-weight: 700;
}

.calc-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.calc-metric-box {
  background: #11121a;
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
}

.metric-lbl {
  font-size: 0.7rem;
  color: var(--text-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.text-accent { color: #fff; }
.text-red { color: #f87171; }
.text-yellow { color: var(--ml-yellow); }

.metric-val small {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

.metric-note {
  font-size: 0.74rem;
  color: var(--text-gray-muted);
}

.metric-champion {
  background: linear-gradient(180deg, rgba(238, 77, 45, 0.1) 0%, rgba(23, 24, 34, 0.9) 100%);
  border-color: var(--shopee-orange);
}

.champion-tag {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--shopee-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.saving-pill {
  margin-top: 0.65rem;
  background: rgba(255, 230, 0, 0.15);
  border: 1px solid rgba(255, 230, 0, 0.3);
  color: var(--ml-yellow);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.45rem;
  border-radius: var(--radius-sharp);
  text-align: center;
}

.calc-cta-row {
  margin-top: 1.6rem;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
  background: var(--shein-black);
}

.pricing-scarcity-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: #141620;
  border: 1px dashed var(--ml-yellow);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sharp);
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.scarcity-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ml-yellow);
}

.scarcity-clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clock-label {
  font-size: 0.72rem;
  color: var(--text-gray-dark);
  text-transform: uppercase;
  font-weight: 700;
}

.clock-boxes {
  display: flex;
  align-items: center;
  gap: 4px;
}

.clock-box {
  background: #0b0c10;
  border: 1px solid var(--shopee-orange);
  border-radius: var(--radius-sharp);
  padding: 0.2rem 0.5rem;
  color: var(--ml-yellow);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.clock-box small {
  font-size: 0.62rem;
  color: var(--text-gray-dark);
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--shein-card);
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-card {
  border: 2px solid var(--shopee-orange);
  background: linear-gradient(180deg, #1c1a24 0%, #171822 100%);
  box-shadow: 0 8px 30px var(--shopee-orange-glow);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--shopee-orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-sharp);
  letter-spacing: 0.06em;
}

.card-head {
  margin-bottom: 0.9rem;
}

.plan-badge-type {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-gray-dark);
  letter-spacing: 0.06em;
}

.plan-badge-type.text-yellow {
  color: var(--ml-yellow);
}

.card-head h3 {
  font-size: 1.35rem;
  margin: 0.15rem 0 0.3rem;
}

.card-head p {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

.bonus-badge-gold {
  background: rgba(255, 230, 0, 0.15);
  border: 1px solid var(--ml-yellow);
  color: var(--ml-yellow);
  font-size: 0.76rem;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-sharp);
  margin-bottom: 1rem;
}

.bonus-badge-yellow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.76rem;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-sharp);
  margin-bottom: 1rem;
}

.card-price-block {
  margin-bottom: 1.1rem;
}

.anchor-old {
  display: block;
  font-size: 0.78rem;
  color: var(--text-gray-dark);
  text-decoration: line-through;
}

.price-line {
  display: flex;
  align-items: baseline;
  margin: 0.1rem 0;
  font-family: var(--font-heading);
}

.installment-txt {
  font-size: 0.88rem;
  color: var(--text-gray-muted);
  margin-right: 4px;
}

.currency { font-size: 1.2rem; font-weight: 700; }
.integer { font-size: 2.35rem; font-weight: 900; line-height: 1; }
.fraction { font-size: 1.2rem; font-weight: 700; }

.period {
  display: block;
  font-size: 0.74rem;
  color: var(--text-gray-dark);
}

.unit-pill {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-gray-light);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius-sharp);
}

.pill-gold {
  color: #111;
  background: var(--ml-yellow);
}

.cadence-rule-box {
  background: #11121a;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.65rem;
  font-size: 0.76rem;
  color: var(--text-gray-muted);
  margin-bottom: 1.2rem;
  border-radius: 0 var(--radius-sharp) var(--radius-sharp) 0;
}

.highlight-rule {
  border-left-color: var(--shopee-orange);
  color: var(--text-gray-light);
}

.features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.features-list li {
  font-size: 0.84rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--text-gray-muted);
}

.check-mark {
  color: var(--ml-yellow);
  font-weight: 800;
}

/* Tripwire Banner */
.tripwire-container {
  margin-top: 2.2rem;
}

.tripwire-box {
  background: linear-gradient(90deg, #1c151b 0%, #171822 100%);
  border: 1px solid var(--shopee-orange);
  border-radius: var(--radius-sharp);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.discount-tag {
  display: inline-block;
  background: var(--shopee-orange);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sharp);
  margin-bottom: 0.25rem;
}

.tripwire-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.tripwire-info p {
  font-size: 0.82rem;
  color: var(--text-gray-muted);
}

/* ==========================================================================
   Partner Section
   ========================================================================== */
.partner-section {
  background-color: var(--shein-surface);
}

.partner-card {
  background: var(--shein-card);
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 2.2rem 1.8rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.8rem;
  align-items: center;
}

.partner-text h2 {
  font-size: 1.85rem;
  margin-bottom: 0.7rem;
}

.text-shopee {
  color: var(--shopee-orange);
}

.partner-text p {
  color: var(--text-gray-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.partner-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.partner-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.stripe-mockup {
  background: #0b0c10;
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  overflow: hidden;
}

.mockup-bar {
  background: #12131a;
  padding: 0.45rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--shein-card-border);
}

.circle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
}

.bar-title {
  margin-left: 0.4rem;
  font-size: 0.7rem;
  color: var(--text-gray-dark);
}

.mockup-content {
  padding: 1.1rem;
}

.simulacao-badge {
  display: inline-block;
  background: rgba(255, 230, 0, 0.15);
  border: 1px solid var(--ml-yellow);
  color: var(--ml-yellow);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sharp);
  margin-bottom: 0.5rem;
}

.content-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-gray-dark);
  text-transform: uppercase;
}

.content-value {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ml-yellow);
  line-height: 1.1;
  margin: 0.15rem 0;
}

.sub-simulacao {
  display: block;
  font-size: 0.72rem;
  color: var(--text-gray-muted);
  margin-bottom: 0.8rem;
}

.mockup-transfers {
  margin: 0.7rem 0 0.5rem;
  background: #11121a;
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 0.5rem 0.7rem;
}

.transfer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.transfer-item:last-child {
  border-bottom: none;
}

.transfer-desc {
  display: flex;
  flex-direction: column;
}

.transfer-name {
  font-weight: 700;
  color: #fff;
}

.transfer-calc {
  font-size: 0.68rem;
  color: var(--text-gray-dark);
}

.val-green {
  color: #34d399;
  font-weight: 800;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.transfer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.total-math-val {
  color: var(--ml-yellow);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.transfer-status {
  font-size: 0.72rem;
  color: #34d399;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.recorrencia-note {
  margin-top: 0.55rem;
  font-size: 0.70rem;
  color: var(--text-gray-muted);
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-sharp);
  border-left: 2px solid #34d399;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: var(--shein-black);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-row {
  border-bottom: 1px solid var(--shein-card-border);
}

.faq-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header:hover {
  color: var(--shopee-orange);
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--shopee-orange);
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-gray-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-row.open .faq-body {
  max-height: 220px;
  padding-bottom: 1rem;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #07070a;
  border-top: 1px solid var(--shein-card-border);
  padding: 2.8rem 0 1.5rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 1.8rem;
  margin-bottom: 1.8rem;
}

.footer-motto {
  color: var(--text-gray-dark);
  font-size: 0.82rem;
  margin-top: 0.65rem;
  max-width: 300px;
}

.footer-links-grid {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
}

.footer-links-grid .col h5 {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-links-grid .col a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-gray-dark);
  margin-bottom: 0.4rem;
}

.footer-links-grid .col a:hover {
  color: #fff;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.4rem;
}

.copy-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-gray-dark);
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ==========================================================================
   Checkout Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #13141c;
  border: 1px solid var(--shopee-orange);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
  border-radius: var(--radius-sharp);
  width: 100%;
  max-width: 410px;
  padding: 1.6rem;
  position: relative;
  animation: popIn 0.25s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: none;
  border: none;
  color: var(--text-gray-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--shopee-orange);
  letter-spacing: 0.08em;
}

.modal-header h3 {
  font-size: 1.25rem;
  margin: 0.2rem 0;
}

.modal-header p {
  font-size: 0.78rem;
  color: var(--text-gray-muted);
  margin-bottom: 1rem;
}

.modal-summary {
  background: #0b0c10;
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 0.9rem;
  margin-bottom: 1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-gray-muted);
  margin-bottom: 0.45rem;
}

.coupon-input-row {
  display: flex;
  gap: 0.4rem;
  margin: 0.45rem 0;
}

.coupon-input-row input {
  flex-grow: 1;
  background: #1c1d28;
  border: 1px solid var(--shein-card-border);
  border-radius: var(--radius-sharp);
  padding: 0.45rem 0.65rem;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.btn-apply-coupon {
  background: var(--shopee-orange);
  border: none;
  color: #fff;
  padding: 0 0.8rem;
  border-radius: var(--radius-sharp);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.coupon-alert {
  font-size: 0.7rem;
  color: #34d399;
  margin-bottom: 0.45rem;
}

.discount-line { color: #34d399; }

.total-line {
  border-top: 1px solid var(--shein-card-border);
  padding-top: 0.55rem;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.total-line .total {
  color: var(--ml-yellow);
  font-size: 1.15rem;
  font-family: var(--font-heading);
}

.modal-security-note {
  font-size: 0.68rem;
  color: var(--text-gray-dark);
  text-align: center;
  margin-top: 0.75rem;
}

/* ==========================================================================
   Breakpoints Responsivos (Tablet 1024px & Mobile < 650px)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .partner-card { grid-template-columns: 1fr; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-links-grid { justify-content: flex-start; }
}

@media (max-width: 650px) {
  .desktop-break { display: none; }
  
  /* Top Banner Mobile Enxuto */
  .top-banner {
    padding: 0.35rem 0.5rem;
    font-size: 0.72rem;
  }
  
  .top-banner-content {
    gap: 0.35rem;
  }

  .banner-link {
    display: inline-block;
    font-size: 0.72rem;
  }

  /* Header Mobile Compacto */
  .header-container {
    height: 56px;
  }

  .btn-shopee-header {
    padding: 0.42rem 0.8rem;
    font-size: 0.76rem;
  }

  /* Marcas 100% Iguais no Mobile */
  .marketplaces-wrapper {
    gap: 0.45rem;
    margin-bottom: 1.1rem;
  }

  .marketplaces-row {
    gap: 0.35rem;
    width: 100%;
    justify-content: center;
  }

  .brand-badge {
    width: 102px;
    height: 30px;
    font-size: 0.64rem;
    gap: 0.28rem;
    padding: 0 0.35rem;
  }

  .brand-img {
    height: 16px;
    max-width: 20px;
  }

  .marketplaces-caption {
    font-size: 0.70rem;
    padding: 0.22rem 0.55rem;
  }
  
  /* Título e Subtítulo com Leitura Rápida e Fluida */
  .hero {
    padding: 1.8rem 0 2rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
    padding: 0 0.4rem;
  }
  
  .hero-subtitle {
    font-size: 0.90rem;
    line-height: 1.48;
    margin-bottom: 1.5rem;
    padding: 0 0.6rem;
  }

  .hero-cta-group {
    gap: 0.65rem;
    margin-bottom: 1.6rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.76rem;
  }
  
  .trust-divider { display: none; }
  
  /* Carrossel Mobile: 68vw com Laterais Nítidas (Sem Blur) */
  .carousel-viewport {
    padding: 0.4rem 0 0.8rem;
  }

  .carousel-slide {
    flex: 0 0 68vw;
    max-width: 255px;
    margin: 0 0.35rem;
    opacity: 0.82;
    transform: scale(0.88);
  }

  .carousel-slide.active {
    opacity: 1;
    transform: scale(1.02);
  }

  .carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    background: rgba(11, 12, 16, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .prev-arrow { left: 4px; }
  .next-arrow { right: 4px; }

  .thumb-pill {
    font-size: 0.72rem;
    padding: 0.28rem 0.55rem;
  }

  /* Preços e Escassez */
  .pricing-scarcity-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  
  .tripwire-box {
    flex-direction: column;
    text-align: center;
  }
  
  .copy-row {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  
  .scarcity-timer {
    display: none;
  }
}
