/* ============================================
   1WIN BRASIL - Landing Page Styles
   Design faithful to 1win dark theme
   PRIMARY COLOR: BLUE (#0075ff)
   ============================================ */

/* === FONTS === */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/InterVariable-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/InterVariable-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Coolvetica';
  src: url('assets/fonts/coolvetica-latin.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

@font-face {
  font-family: 'Coolvetica';
  src: url('assets/fonts/coolvetica-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02AF;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #141415;
  color: #f0f2f5;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* === CSS VARIABLES === */
:root {
  --bg-primary: #141415;
  --bg-secondary: #1d1e20;
  --bg-tertiary: #2e3035;
  --bg-elevated: #0d0d0e;
  --text-primary: #f0f2f5;
  --text-secondary: #9aa1b1;
  --text-tertiary: #797f8b;

  --accent-primary: #0075ff;
  --accent-primary-hover: #1f85ff;
  --accent-primary-light: #47a6ff;
  --accent-primary-dark: #0056bd;
  --accent-primary-alpha-12: rgba(0, 117, 255, 0.12);
  --accent-primary-alpha-20: rgba(0, 117, 255, 0.20);
  --accent-primary-glow: rgba(0, 117, 255, 0.45);

  --accent-green: #00b24b;
  --accent-green-hover: #00d95b;
  --accent-gold: #ffc300;
  --negative-red: #f63d00;

  --border-subtle: rgba(179, 182, 189, 0.12);
  --border-default: rgba(179, 182, 189, 0.16);
  --white-alpha-4: rgba(255, 255, 255, 0.04);
  --white-alpha-8: rgba(255, 255, 255, 0.08);
  --white-alpha-12: rgba(255, 255, 255, 0.12);
  --white-alpha-20: rgba(255, 255, 255, 0.20);

  --rounding-s: 8px;
  --rounding-m: 12px;
  --rounding-l: 16px;
  --rounding-xl: 20px;
  --rounding-xxl: 24px;
  --rounding-max: 999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === INLINE ICONS === */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 20, 21, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(20, 20, 21, 0.96);
  border-color: rgba(179, 182, 189, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.logo:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.logo img {
  height: 28px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition);
  border-radius: 1px;
}

.header-nav a:hover {
  color: var(--text-primary);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--rounding-m);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 117, 255, 0.28);
}

.btn-primary:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 117, 255, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--white-alpha-12);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--white-alpha-20);
  border-color: var(--border-default);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: var(--rounding-l);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: var(--rounding-s);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-glow:hover::before {
  left: 100%;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Grid / Checkered background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* Desktop Grid Layout with grid-template-areas */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-block {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  grid-template-rows: auto auto auto auto;
  grid-template-areas:
    "title visual"
    "subtitle visual"
    "cta visual"
    "stats visual";
  align-items: center;
  column-gap: 56px;
  row-gap: 8px;
  width: 100%;
}

.hero-title {
  grid-area: title;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease-out both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #0075ff 0%, #47a6ff 60%, #8ac7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  grid-area: subtitle;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
  grid-area: stats;
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-stat-value .accent {
  color: var(--accent-primary-light);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
  font-weight: 500;
}

/* === HERO VISUAL (TABLET + PHONE DUO - PROPORTIONAL) === */
.hero-visual {
  grid-area: visual;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  width: 100%;
}

.hero-mockup-duo {
  position: relative;
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft blue glow behind the devices */
.hero-glow-duo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(0, 117, 255, 0.40) 0%, rgba(0, 117, 255, 0.12) 50%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
  100% { transform: translate(-48%, -52%) scale(1.08); opacity: 1; }
}

/* Horizontal Tablet Mockup */
.tablet-mockup {
  position: relative;
  width: 92%;
  margin-left: 8%;
  z-index: 2;
}

.tablet-mockup img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 117, 255, 0.18);
  display: block;
}

/* Vertical Smartphone Mockup - SMALLER & BALANCED */
.phone-mockup {
  position: absolute;
  bottom: -15px;
  left: -8px;
  width: 28%;
  max-width: 160px;
  z-index: 4;
  animation: floatPhone 4.5s ease-in-out infinite;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 117, 255, 0.25);
  display: block;
}

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

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

/* === SECTION COMMON === */
.section {
  padding: 96px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-primary-alpha-12);
  border: 1px solid rgba(0, 117, 255, 0.22);
  border-radius: var(--rounding-max);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

.section-tag .icon {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === PROMO BANNER 600% (3D VISUAL BANNER) === */
.promo-section {
  padding: 50px 0;
}

.promo-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.promo-banner-card {
  display: block;
  position: relative;
  border-radius: var(--rounding-xxl);
  overflow: hidden;
  border: 1px solid rgba(0, 117, 255, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 117, 255, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: #0b0c10;
}

.promo-banner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 117, 255, 0.6);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 117, 255, 0.35);
}

.promo-banner-glow {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translate(50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 117, 255, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.promo-banner-card:hover .promo-banner-img {
  transform: scale(1.015);
}

.promo-banner-overlay {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 3;
}

.promo-action-btn {
  box-shadow: 0 10px 28px rgba(0, 117, 255, 0.5);
  font-size: 15px;
  padding: 13px 30px;
}

/* === PROMO TABLE SECTION (CLEAN DARK & PROFESSIONAL) === */
.promo-table-section {
  background: var(--bg-secondary);
}

.promo-table-card {
  background: #191a1d;
  border: 1px solid rgba(179, 182, 189, 0.14);
  border-radius: var(--rounding-xl);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.promo-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.promo-table th {
  padding: 16px 20px;
  background: rgba(0, 117, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(0, 117, 255, 0.2);
}

.promo-table th:first-child {
  border-top-left-radius: var(--rounding-m);
}

.promo-table th:last-child {
  border-top-right-radius: var(--rounding-m);
}

.promo-table td {
  padding: 18px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(179, 182, 189, 0.08);
  vertical-align: middle;
}

.promo-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.promo-table tr:last-child td {
  border-bottom: none;
}

.table-cat-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.table-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-primary-alpha-12);
  border: 1px solid rgba(0, 117, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary-light);
  flex-shrink: 0;
}

.table-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.code-pill {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 117, 255, 0.12);
  border: 1px solid rgba(0, 117, 255, 0.3);
  color: var(--accent-primary-light);
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--rounding-s);
  letter-spacing: 1px;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 178, 75, 0.12);
  border: 1px solid rgba(0, 178, 75, 0.25);
  color: #00d95b;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--rounding-max);
}

.badge-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d95b;
  box-shadow: 0 0 8px #00d95b;
}

.table-disclaimer {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 20px;
  line-height: 1.5;
}

/* === BENEFITS SECTION === */
.benefits {
  background: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounding-xl);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 117, 255, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  border-color: rgba(0, 117, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-primary-alpha-12);
  border: 1px solid rgba(0, 117, 255, 0.2);
  border-radius: var(--rounding-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: var(--accent-primary-light);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.benefit-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-light));
  z-index: 0;
  opacity: 0.5;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: #141415;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-primary-light);
  margin: 0 auto 24px;
  position: relative;
  box-shadow: 0 0 24px rgba(0, 117, 255, 0.35);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* === CATEGORIES === */
.categories {
  background: var(--bg-primary);
}

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

.category-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounding-xl);
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.category-card:hover {
  border-color: rgba(0, 117, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-primary-alpha-12);
  border: 1px solid rgba(0, 117, 255, 0.2);
  border-radius: var(--rounding-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-primary-light);
}

.category-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.category-info {
  flex: 1;
}

.category-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-primary-light);
  transition: gap var(--transition);
}

.category-card:hover .category-link {
  gap: 10px;
  color: #ffffff;
}

/* === REVIEWS SECTION (E-E-A-T COM FOTOS HOSPEDADAS) === */
.reviews-section {
  background: var(--bg-secondary);
}

.rating-badge-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.stars-gold {
  color: var(--accent-gold);
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.rating-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounding-xl);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: rgba(0, 117, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 117, 255, 0.6);
  box-shadow: 0 4px 14px rgba(0, 117, 255, 0.25);
  flex-shrink: 0;
  background: #000000;
}

.reviewer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-check {
  font-size: 11px;
  color: #00d95b;
  font-weight: 600;
}

.reviewer-meta {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.reviewer-stars {
  color: var(--accent-gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

/* === FAQ === */
.faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounding-m);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(0, 117, 255, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--white-alpha-8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 18px;
  color: var(--text-secondary);
}

.faq-item.active .faq-toggle {
  background: var(--accent-primary-alpha-20);
  color: var(--accent-primary-light);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === FINAL CTA === */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 117, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.final-cta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn {
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.65;
  max-width: 320px;
}

.footer-links-group h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links-group a {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-links-group a:hover {
  color: var(--accent-primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer-legal {
  font-size: 11px;
  color: var(--text-tertiary);
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 117, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 117, 255, 0.6);
}

/* === COOKIE NOTICE (LGPD - CLEAN & MODERN) === */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 24px;
  right: 24px;
  max-width: 620px;
  background: rgba(25, 26, 29, 0.96);
  border: 1px solid rgba(0, 117, 255, 0.25);
  border-radius: var(--rounding-m);
  padding: 16px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.cookie-notice.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-icon {
  color: var(--accent-primary-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === MOBILE MENU BUTTON === */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--white-alpha-8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounding-s);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--white-alpha-12);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES (COMPREHENSIVE)
   ============================================ */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-text-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "subtitle"
      "visual"
      "cta"
      "stats";
    text-align: center;
    gap: 0;
  }

  .hero-title {
    font-size: 46px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-visual {
    margin: 0 auto 40px;
    max-width: 500px;
  }

  .hero-cta {
    justify-content: center;
    margin-bottom: 36px;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Tablets & Mobile Devices (768px and below) */
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(20, 20, 21, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-default);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-size: 16px;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Hero Mobile Spacing with Generous Air */
  .hero {
    padding-top: 104px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 30px;
  }

  /* Mockup ordered directly below subheadline on mobile with great breathing room */
  .hero-visual {
    margin: 10px auto 38px;
    max-width: 370px;
    padding: 0 10px;
  }

  .hero-glow-duo {
    width: 300px;
    height: 220px;
  }

  .tablet-mockup {
    width: 90%;
    margin-left: 10%;
  }

  .tablet-mockup img {
    border-radius: 12px;
  }

  /* Scaled down smartphone on mobile */
  .phone-mockup {
    bottom: -10px;
    left: -4px;
    width: 28%;
    max-width: 105px;
  }

  .phone-mockup img {
    border-radius: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    margin-bottom: 38px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
  }

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

  .hero-stat-value {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 11px;
  }

  .section {
    padding: 64px 0;
  }

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

  .promo-table-card {
    padding: 20px 16px;
  }

  .promo-table th, .promo-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .steps-grid::before {
    display: none;
  }

  /* 3D Banner on Mobile */
  .promo-section {
    padding: 30px 0;
  }

  .promo-banner-overlay {
    position: static;
    padding: 16px 20px 20px;
    background: #0b0c10;
    text-align: center;
  }

  .promo-action-btn {
    width: 100%;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    padding: 24px;
    flex-direction: column;
    gap: 20px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-cta-title {
    font-size: 30px;
  }

  .final-cta .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content .btn {
    width: 100%;
  }
}

/* Small Mobile Screens (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-visual {
    max-width: 320px;
    margin-bottom: 34px;
  }

  .tablet-mockup {
    width: 90%;
    margin-left: 10%;
  }

  .phone-mockup {
    width: 28%;
    max-width: 92px;
    bottom: -8px;
    left: -2px;
  }
}
