/* ============================================
  CORTES DO DOUTORVIRAL — CATÁLOGO 2026
   Dark Viral Style Catalog
============================================ */

:root {
  --bg-primary: #0B0B0B;
  --bg-secondary: #1E1E1E;
  --bg-card: #1E1E1E;
  --bg-card-hover: #2a2a2a;
  --purple-main: #00A8FF;
  --purple-light: #00FF9C;
  --purple-dark: #0080c0;
  --purple-glow: rgba(0, 168, 255, 0.4);
  --gold: #00FF9C;
  --white: #ffffff;
  --gray-100: #f0f0f0;
  --gray-200: #cccccc;
  --gray-400: #888888;
  --gray-600: #444444;
  --red: #e50914;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.hidden {
  display: none !important;
}

/* ============================================
   TELA DE SENHA
============================================ */

#password-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(0, 168, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 168, 255, 0.06) 0%, transparent 50%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.password-container {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 168, 255, 0.2);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--purple-glow);
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 1;
}

.password-logo .wizard-icon {
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.logo-img {
  display: block;
  object-fit: contain;
  background: transparent;
}

.logo-img--password {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(0, 168, 255, 0.5));
}

.logo-img--header {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 8px rgba(0, 168, 255, 0.5));
}

.logo-img--footer {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 6px rgba(0, 168, 255, 0.4));
}

.password-logo h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.password-logo .subtitle {
  font-size: 12px;
  color: var(--purple-light);
  letter-spacing: 6px;
  margin-top: 4px;
  font-weight: 600;
}

.password-form {
  margin-top: 40px;
}

.password-label {
  color: var(--gray-200);
  font-size: 14px;
  margin-bottom: 16px;
}

.password-sales-link-wrap {
  margin-top: 14px;
  margin-bottom: 0;
}

.password-sales-link {
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 700;
}

.password-sales-link:hover {
  text-decoration: underline;
}

#password-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(0, 168, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: var(--transition);
}

#password-input:focus {
  border-color: var(--purple-main);
  box-shadow: 0 0 20px var(--purple-glow);
}

#password-input::placeholder {
  color: var(--gray-400);
}

.password-error {
  color: var(--red);
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

#password-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 12px;
  transition: var(--transition);
}

#password-btn:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-main));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--purple-glow);
}

.password-instagram {
  margin-top: 30px;
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 1px;
}

/* ============================================
   HEADER
============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.98) 0%, rgba(11, 11, 11, 0.85) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 168, 255, 0.15);
  padding: 0 40px;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wizard-emoji {
  font-size: 36px;
}

.logo-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--white), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.badge {
  display: inline-block;
  background: var(--purple-main);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 2px;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.buy-header-btn {
  border: 0;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 10px 14px;
  border-radius: 9px;
  cursor: pointer;
  transition: var(--transition);
}

.buy-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--purple-glow);
}

.instagram-link:hover {
  color: var(--purple-light);
  border-color: var(--purple-main);
  background: rgba(0, 168, 255, 0.1);
}

/* ============================================
   HERO BANNER
============================================ */

.hero {
  position: relative;
  height: 320px;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 168, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 168, 255, 0.03) 2px,
      rgba(0, 168, 255, 0.03) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px var(--purple-glow);
  animation: pulse-hero-badge 2.5s ease-in-out infinite;
}

.hero-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 6px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 0%, var(--purple-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hero-content p {
  color: var(--gray-400);
  font-size: 15px;
  font-weight: 300;
}

/* ============================================
   CATEGORIAS GRID
============================================ */

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--gray-200);
  margin-bottom: 40px;
}

.title-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-main), transparent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ============================================
   CARDS
============================================ */

.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease backwards;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--purple-main);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px var(--purple-glow);
  z-index: 10;
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.card:hover .card-bg {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 11, 11, 0.95) 0%,
    rgba(11, 11, 11, 0.4) 40%,
    rgba(11, 11, 11, 0.1) 100%
  );
  transition: var(--transition);
}

.card:hover .card-overlay {
  background: linear-gradient(
    0deg,
    rgba(var(--cat-r, 0), var(--cat-g, 168), var(--cat-b, 255), 0.8) 0%,
    rgba(var(--cat-r, 0), var(--cat-g, 168), var(--cat-b, 255), 0.25) 45%,
    rgba(11, 11, 11, 0) 100%
  );
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  transform: translateY(10px);
  transition: var(--transition);
}

.card:hover .card-content {
  transform: translateY(0);
}

.card-emoji {
  font-size: 28px;
  margin-bottom: 6px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.card-subtitle {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.card:hover .card-subtitle {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 255, 255, 0.8);
}

.card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: var(--purple-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--purple-glow);
}

.card:hover .card-play {
  transform: translate(-50%, -50%) scale(1);
}

.card-play svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-left: 3px;
}

/* Staggered animation */
.card:nth-child(1)  { animation-delay: 0.05s; }
.card:nth-child(2)  { animation-delay: 0.1s; }
.card:nth-child(3)  { animation-delay: 0.15s; }
.card:nth-child(4)  { animation-delay: 0.2s; }
.card:nth-child(5)  { animation-delay: 0.25s; }
.card:nth-child(6)  { animation-delay: 0.3s; }
.card:nth-child(7)  { animation-delay: 0.35s; }
.card:nth-child(8)  { animation-delay: 0.4s; }
.card:nth-child(9)  { animation-delay: 0.45s; }
.card:nth-child(10) { animation-delay: 0.5s; }
.card:nth-child(11) { animation-delay: 0.55s; }
.card:nth-child(12) { animation-delay: 0.6s; }
.card:nth-child(13) { animation-delay: 0.65s; }
.card:nth-child(14) { animation-delay: 0.7s; }
.card:nth-child(15) { animation-delay: 0.75s; }
.card:nth-child(16) { animation-delay: 0.8s; }
.card:nth-child(17) { animation-delay: 0.85s; }
.card:nth-child(18) { animation-delay: 0.9s; }

/* ============================================
   MODAL
============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: scaleIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px var(--purple-glow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.modal-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--purple-main);
  box-shadow: 0 0 30px var(--purple-glow);
}

.modal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--white), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-content p {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
  color: var(--white);
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.modal-btn:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-main));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--purple-glow);
}

.modal-btn.is-disabled {
  background: linear-gradient(135deg, #4a4a4a, #2b2b2b);
  color: var(--gray-200);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* ============================================
   TELA DE COMPRA
============================================ */

.purchase-screen {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.purchase-content {
  width: 100%;
  max-width: 560px;
  border-radius: 22px;
  border: 1px solid rgba(0, 168, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(0, 255, 156, 0.12), transparent 50%),
    radial-gradient(circle at bottom left, rgba(0, 168, 255, 0.14), transparent 45%),
    var(--bg-secondary);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65), 0 0 36px rgba(0, 168, 255, 0.2);
  padding: 36px;
  position: relative;
  text-align: center;
  animation: scaleIn 0.3s ease;
}

.purchase-close {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--gray-200);
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.purchase-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 1.5px;
  border-radius: 20px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
  margin-bottom: 12px;
}

.purchase-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: 2px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purchase-subtitle {
  color: var(--gray-200);
  font-size: 14px;
  margin-bottom: 22px;
}

.purchase-list {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0, 168, 255, 0.2);
  border-radius: 14px;
  text-align: left;
  padding: 14px;
  margin-bottom: 20px;
}

.purchase-item {
  position: relative;
  color: var(--gray-100);
  font-size: 14px;
  padding-left: 24px;
  margin: 10px 0;
}

.purchase-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple-light);
  font-weight: 700;
}

.purchase-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

.price-old {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 14px;
}

.price-main {
  color: var(--purple-light);
  font-size: 36px;
  line-height: 1;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.purchase-btn,
.purchase-back-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 14px 16px;
  transition: var(--transition);
}

.purchase-btn {
  background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
  color: var(--white);
  margin-bottom: 10px;
}

.purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--purple-glow);
}

.purchase-back-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gray-200);
}

.purchase-back-btn:hover {
  border-color: var(--purple-main);
  color: var(--white);
}

/* ============================================
   FOOTER
============================================ */

footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 168, 255, 0.1);
  padding: 40px;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

footer p {
  color: var(--gray-600);
  font-size: 12px;
  margin-bottom: 8px;
}

footer a {
  color: var(--purple-light);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  overflow-wrap: anywhere;
}

footer a:hover {
  color: var(--white);
}

/* ============================================
   ANIMAÇÕES
============================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   SCROLLBAR
============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-main);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-light);
}

/* ============================================
   ORBS / PARTÍCULAS
============================================ */

.bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.15) 0%, transparent 65%);
  top: -200px;
  left: -150px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 156, 0.1) 0%, transparent 65%);
  bottom: -120px;
  right: -100px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.08) 0%, transparent 65%);
  top: 40%;
  left: 55%;
  animation: orbFloat 9s ease-in-out infinite 3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(50px, -40px); }
  66%       { transform: translate(-30px, 30px); }
}

/* ============================================
   STATS BAR
============================================ */

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 168, 255, 0.12);
  border-bottom: 1px solid rgba(0, 168, 255, 0.12);
  padding: 24px 40px;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--purple-main);
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
}

.stat-label {
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(0, 168, 255, 0.35), transparent);
  flex-shrink: 0;
}

/* ============================================
   SEARCH BAR
============================================ */

.search-wrapper {
  position: relative;
  max-width: 420px;
  margin: 0 auto 40px;
}

.search-wrapper svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  transition: var(--transition);
}

.search-wrapper:focus-within svg {
  color: var(--purple-main);
}

#search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 168, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: var(--transition);
}

#search-input:focus {
  border-color: var(--purple-main);
  box-shadow: 0 0 24px rgba(0, 168, 255, 0.15);
}

#search-input::placeholder {
  color: var(--gray-400);
}

/* ============================================
   TYPED CURSOR
============================================ */

.typed-cursor {
  color: var(--purple-light);
  font-weight: 100;
}

/* ============================================
   RESPONSIVO — TABLET
============================================ */

@media (max-width: 768px) {
  /* Header */
  header {
    padding: 0 16px;
  }

  .header-content {
    height: 58px;
  }

  .logo-text h1 {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .badge {
    display: none;
  }

  .instagram-link {
    padding: 6px 10px;
    font-size: 12px;
    gap: 6px;
  }

  .buy-header-btn {
    font-size: 10px;
    padding: 8px 10px;
  }

  .instagram-link span {
    display: none;
  }

  /* Hero */
  .hero {
    height: 180px;
    margin-top: 58px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 16px;
    margin-bottom: 12px;
  }

  .hero-content h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 13px;
  }

  /* Stats bar */
  .stats-bar {
    padding: 14px 10px;
  }

  .stat-item {
    padding: 0 14px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 2px;
  }

  /* Seção principal */
  main {
    padding: 24px 14px 60px;
  }

  .section-title {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    gap: 12px;
  }

  .title-line {
    max-width: 60px;
  }

  /* Search */
  .search-wrapper {
    max-width: 100%;
    margin-bottom: 24px;
  }

  #search-input {
    font-size: 15px;
    padding: 13px 18px 13px 48px;
  }

  /* Grid */
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Cards — conteúdo sempre visível no mobile */
  .card {
    aspect-ratio: 9 / 12;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38);
  }

  .card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.06);
  }

  .card:active {
    transform: scale(0.97);
    border-color: var(--purple-main);
    box-shadow: 0 0 20px var(--purple-glow);
  }

  .card-bg {
    background-size: cover;
    background-position: center;
  }

  .card-overlay {
    background: linear-gradient(
      0deg,
      rgba(8, 8, 8, 0.96) 0%,
      rgba(8, 8, 8, 0.72) 42%,
      rgba(8, 8, 8, 0.18) 100%
    );
  }

  .card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(0, 168, 255, 0.18);
    pointer-events: none;
  }

  .card:hover .card-bg {
    transform: none;
  }

  .card-content {
    padding: 12px;
    transform: none;
    background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, 0.64) 18%,
      rgba(5, 5, 5, 0.9) 100%
    );
  }

  .card:hover .card-content {
    transform: none;
  }

  .card-emoji {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .card-title {
    font-size: 16px;
    letter-spacing: 1.2px;
    line-height: 1.15;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
  }

  /* Subtitle sempre visível no mobile */
  .card-subtitle {
    opacity: 1;
    transform: none;
    font-size: 11px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.4px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  /* Esconde o ícone de play (não funciona bem no touch) */
  .card-play {
    display: none;
  }

  /* Password screen */
  .password-container {
    padding: 32px 22px;
    border-radius: 16px;
  }

  .logo-img--password {
    width: 120px;
    height: 120px;
  }

  .password-logo h1 {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .password-logo .subtitle {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .password-form {
    margin-top: 28px;
  }

  #password-input {
    padding: 13px 18px;
    font-size: 16px; /* evita zoom no iOS */
  }

  #password-btn {
    padding: 14px;
    font-size: 15px;
  }

  /* Footer */
  footer {
    padding: 28px 16px;
  }

  .footer-logo {
    font-size: 16px;
  }
}

/* ============================================
   RESPONSIVO — MOBILE PEQUENO
============================================ */

@media (max-width: 480px) {
  /* Header mais compacto */
  .logo-img--header {
    width: 40px;
    height: 40px;
  }

  .logo-text h1 {
    font-size: 13px;
  }

  .header-content {
    gap: 8px;
  }

  .logo {
    gap: 10px;
    min-width: 0;
  }

  .instagram-link {
    padding: 6px 8px;
  }

  /* Hero ainda mais compacto */
  .hero {
    height: 160px;
  }

  .hero-badge {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .hero-content h2 {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .hero-content p {
    font-size: 12px;
  }

  /* Stats compactas */
  .stats-bar {
    padding: 12px 6px;
  }

  .stat-item {
    padding: 0 10px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .stat-divider {
    height: 32px;
  }

  /* Grid 2 colunas sempre */
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card {
    aspect-ratio: 5 / 7;
    border-radius: 14px;
  }

  .card-content {
    padding: 10px;
  }

  .card-emoji {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .card-title {
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.15;
  }

  .modal-content,
  .purchase-content {
    max-height: 90vh;
    overflow-y: auto;
  }

  .card-subtitle {
    font-size: 10px;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Modal como bottom sheet no mobile */
  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 32px 20px 40px;
    animation: slideUp 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .modal-close {
    top: 14px;
    right: 16px;
    font-size: 24px;
  }

  /* Alça visual do bottom sheet */
  .modal-content::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto 20px;
  }

  .modal-image {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
  }

  .modal-content h2 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .modal-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .modal-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 14px;
    border-radius: 14px;
  }

  .purchase-content {
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    padding: 28px 18px 30px;
  }

  .purchase-content h2 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .purchase-subtitle,
  .purchase-item {
    font-size: 13px;
  }

  .price-main {
    font-size: 30px;
  }

  /* Password ainda mais compacto */
  .password-container {
    padding: 28px 18px;
    margin: 12px;
  }

  .logo-img--password {
    width: 100px;
    height: 100px;
  }

  .password-logo h1 {
    font-size: 19px;
    letter-spacing: 2px;
  }

  main {
    padding: 20px 12px 60px;
  }

  .section-title {
    font-size: 18px;
  }
}

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

  .stats-bar {
    gap: 6px;
  }

  .stat-item {
    padding: 0 6px;
  }

  .stat-number {
    font-size: 20px;
  }

  .section-title {
    letter-spacing: 2px;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PASSWORD — BENEFITS & RATING
============================================ */

.password-benefits {
  margin-top: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(0, 168, 255, 0.15);
  padding-top: 18px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-200);
  font-size: 13px;
}

.benefit-check {
  color: var(--purple-light);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.password-rating {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rating-stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
}

.password-rating span {
  color: var(--gray-400);
  font-size: 12px;
}

/* ============================================
   TICKER / MARQUEE
============================================ */

.ticker-wrap {
  background: linear-gradient(135deg, #001f3f, #003d6b);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
  border-top: 1px solid rgba(0, 255, 156, 0.15);
  border-bottom: 1px solid rgba(0, 255, 156, 0.15);
}

.ticker-track {
  display: inline-block;
  animation: ticker 38s linear infinite;
}

.ticker-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.92);
  display: inline-block;
  padding: 0 48px;
}

.ticker-track span::after {
  content: '\2726';
  margin-left: 48px;
  color: var(--purple-light);
  font-size: 10px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   TRUST STRIP
============================================ */

.trust-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(0,168,255,0.05) 0%, rgba(0,168,255,0.02) 100%);
  border-bottom: 1px solid rgba(0, 168, 255, 0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-200);
  font-size: 13px;
  padding: 18px 36px;
  border-right: 1px solid rgba(0, 168, 255, 0.08);
  transition: background var(--transition);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  color: var(--purple-light);
  flex-shrink: 0;
}

.trust-item strong {
  color: var(--white);
}

/* ============================================
   CARD — BADGE NOVO
============================================ */

.card-new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff6348, #c0392b);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 6px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(255, 99, 72, 0.5);
  animation: pulse-badge 2.2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 2px 10px rgba(255, 99, 72, 0.5); }
  50%       { box-shadow: 0 2px 24px rgba(255, 99, 72, 0.95); }
}

/* ============================================
   HERO BADGE — PULSING GLOW
============================================ */

@keyframes pulse-hero-badge {
  0%, 100% { box-shadow: 0 4px 20px var(--purple-glow); }
  50%       { box-shadow: 0 4px 40px rgba(0,168,255,0.72), 0 0 80px rgba(0,255,156,0.25); }
}

/* ============================================
   RESPONSIVE — NOVOS COMPONENTES
============================================ */

@media (max-width: 768px) {
  .ticker-track span {
    font-size: 12px;
    padding: 0 28px;
    letter-spacing: 2px;
  }

  .trust-strip {
    flex-direction: column;
  }

  .trust-item {
    padding: 13px 20px;
    font-size: 12px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 168, 255, 0.08);
  }

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

  .password-benefits {
    padding-top: 14px;
  }

  .card-new-badge {
    font-size: 11px;
    padding: 2px 8px;
    top: 8px;
    right: 8px;
  }
}
