/* ============================================
   RALLYO LANDING PAGE — styles.css
   Design System: "The Arena at Night"
   Paleta: #0e0e11 / #c19cff / #ff9800 / #ffe792
   Fontes: Space Grotesk + Manrope
   ============================================ */

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

:root {
  /* Surfaces */
  --bg:                #0e0e11;
  --surface:           #0e0e11;
  --surface-low:       #131316;
  --surface-container: #19191d;
  --surface-high:      #1f1f23;
  --surface-highest:   #25252a;
  --surface-bright:    #2c2c30;
  --surface-variant:   #25252a;

  /* Brand */
  --primary:           #c19cff;
  --primary-dim:       #8d53e8;
  --primary-container: #b68aff;
  --secondary:         #ff9800;
  --secondary-dim:     #ec8c00;
  --tertiary:          #ffe792;
  --tertiary-dim:      #efc900;

  /* Text */
  --on-surface:        #f0edf1;
  --on-surface-var:    #acaaae;
  --on-primary:        #3f0085;

  /* System */
  --error:             #ff6e84;
  --outline:           #767579;
  --outline-var:       #48474b;

  /* Fonts */
  --font-display:      'Space Grotesk', sans-serif;
  --font-body:         'Manrope', sans-serif;
  --font-hero:         'Readex Pro', sans-serif;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow:   0 0 40px rgba(193, 156, 255, 0.15);
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-modal:  0 24px 48px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: var(--font-hero), system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
  color: var(--on-primary);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(193, 156, 255, 0.3);
}

.btn--ghost {
  background: rgba(193, 156, 255, 0.08);
  color: var(--primary);
  border: 1px solid rgba(193, 156, 255, 0.2);
}
.btn--ghost:hover {
  background: rgba(193, 156, 255, 0.15);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── FLOATING NAV PILL ──────────────────────── */
.nav-pill {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .nav-pill { padding: 40px 40px 0; }
}

.nav-pill > * { pointer-events: auto; }

.nav-pill__left, .nav-pill__center {
  background: rgba(20, 20, 24, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-pill__left {
  padding: 12px 24px 12px 16px;
  gap: 8px;
}

.nav-pill__logo-img {
  height: 32px;
  width: auto;
}

.nav-pill__brand {
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: lowercase;
}

.nav-pill__center {
  display: none;
  padding: 6px;
  gap: 4px;
}
@media (min-width: 768px) {
  .nav-pill__center { display: flex; }
}

.nav-pill__link {
  color: #f0edf1;
  font-family: var(--font-hero);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
  text-transform: lowercase;
}
.nav-pill__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-get-started {
  background: #fff;
  color: #000;
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.2s;
  text-transform: lowercase;
  display: inline-block;
}
.btn-get-started:hover {
  background: #e5e5e5;
  transform: translateY(-1px);
}

/* ─── NEW HERO (Securify Style) ──────────────── */
.hero-new {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: var(--font-hero);
  color: #fff;
}

.hero-new__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 20;
}

.hero-title {
  position: absolute;
  color: #fff;
  font-weight: 500;
  font-size: 18vw;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: lowercase;
  margin: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-title { font-size: 13vw; }
}

.word-1 { left: 20px; top: 18%; }
.word-2 { right: 20px; top: 38%; }
.word-3 { left: 15%; top: 58%; }

@media (min-width: 768px) {
  .word-1 { left: 40px; }
  .word-2 { right: 40px; }
  .word-3 { left: 28%; }
}

.hero-description {
  position: absolute;
  left: 24px;
  top: 46%;
  max-width: 240px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-transform: lowercase;
}
@media (min-width: 768px) {
  .hero-description { left: 40px; }
}

.hero-new__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
  z-index: 10;
}



/* Stat Blocks */
.stat-block {
  position: absolute;
  z-index: 30;
  text-transform: lowercase;
}
.stat-block__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-block__divider {
  display: none;
  height: 1px;
  width: 60px;
  background: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .stat-block__divider { display: block; width: 96px; }
}

.stat-block__number {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .stat-block__number { font-size: 48px; }
}

.stat-block__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
@media (min-width: 768px) {
  .stat-block__label { font-size: 14px; }
}

.stat-top-right { right: 24px; top: 14%; text-align: right; }
.stat-top-right .stat-block__row { justify-content: flex-end; }
.stat-top-right .stat-block__divider { transform: rotate(20deg); }

.stat-bottom-left { left: 24px; bottom: 85px; }
.stat-bottom-left .stat-block__divider { transform: rotate(-20deg); }

.stat-bottom-right { right: 24px; bottom: 65px; text-align: right; }
.stat-bottom-right .stat-block__row { justify-content: flex-end; }
.stat-bottom-right .stat-block__divider { transform: rotate(-20deg); }

@media (min-width: 768px) {
  .stat-top-right { right: 96px; }
  .stat-bottom-left { left: 80px; bottom: 100px; }
  .stat-bottom-right { right: 80px; bottom: 80px; }
}

/* ─── SECTIONS BASE ────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--on-surface);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--on-surface-var);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── HERO ─────────────────────────────────── */
/* .hero { display: none; } */

.hero__bg-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(100px);
  pointer-events: none;
}
.hero__bg-orb--1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(193, 156, 255, 0.12) 0%, transparent 70%);
}
.hero__bg-orb--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193, 156, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 156, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
}

.hero__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(193, 156, 255, 0.1);
  border: 1px solid rgba(193, 156, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  width: fit-content;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: var(--radius-full);
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero__title-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--on-surface-var);
  line-height: 1.7;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}
.hero__stat { text-align: center; }
.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--on-surface-var);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--outline-var);
}

/* Hero Mockup */
.hero__mockup {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.phone-mockup {
  width: 280px;
  background: linear-gradient(135deg, var(--surface-highest), var(--surface-bright));
  border-radius: 36px;
  padding: 3px;
  box-shadow: var(--shadow-modal), 0 0 80px rgba(193, 156, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}
.phone-mockup__screen {
  background: var(--surface-container);
  border-radius: 34px;
  overflow: hidden;
}
.phone-screen {
  padding: 20px 16px;
}
.phone-screen__header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.phone-screen__dot {
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
}
.phone-card--hero {
  background: linear-gradient(135deg, var(--primary-dim), #4a1a8a);
  border-radius: var(--radius-xl);
  padding: 16px;
  margin-bottom: 14px;
}
.phone-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.phone-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.phone-card__meta {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.phone-card__bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
}
.phone-card__bar-fill {
  height: 100%;
  background: var(--tertiary);
  border-radius: var(--radius-full);
}
.phone-ranking { }
.phone-ranking__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-var);
  margin-bottom: 10px;
}
.phone-ranking__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.8rem;
}
.phone-ranking__item--gold .phone-ranking__pos {
  color: var(--tertiary);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255, 231, 146, 0.6);
}
.phone-ranking__pos {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--on-surface-var);
  width: 16px;
  text-align: center;
}
.phone-ranking__name { flex: 1; font-weight: 500; }
.phone-ranking__pts { font-weight: 700; color: var(--primary); font-size: 0.75rem; }

/* ─── SECTION PROBLEM ──────────────────────── */
.section--problem { background: var(--surface-low); }

.section-card {
  background: var(--surface-container);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
}

.problem__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--error);
  margin-bottom: 12px;
}
.problem__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 12px;
}
.problem__subtitle {
  color: var(--on-surface-var);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.problem__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.problem__old, .problem__new {
  padding: 24px;
  border-radius: var(--radius-xl);
}
.problem__old { background: rgba(255, 110, 132, 0.06); }
.problem__new { background: rgba(193, 156, 255, 0.06); }

.problem__old-header, .problem__new-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.problem__old-header { color: var(--error); }
.problem__new-header { color: var(--primary); }

.problem__list { display: flex; flex-direction: column; gap: 10px; }

.problem__list--bad li, .problem__list--good li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.problem__list--bad li::before {
  content: "✕";
  color: var(--error);
  font-weight: 700;
  width: 16px;
}
.problem__list--good li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  width: 16px;
}
.problem__list--bad li { color: var(--on-surface-var); }
.problem__list--good li { color: var(--on-surface); }

/* ─── VIDEO TOUR ───────────────────────────── */
.section--tour { background: var(--surface-low); padding-bottom: 60px; }

.tour-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.tour-video-card {
  background: var(--bg);
  border-radius: var(--radius-2xl);
  padding: 8px;
  border: 1px solid rgba(193, 156, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(193, 156, 255, 0.08);
  position: relative;
  z-index: 2;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.tour-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 100px rgba(193, 156, 255, 0.12);
  border-color: rgba(193, 156, 255, 0.25);
}

.tour-video {
  width: 100%;
  border-radius: calc(var(--radius-2xl) - 4px);
  display: block;
  background: #000;
  outline: none;
  max-height: 80vh;
}

.tour-video__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(141, 83, 232, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

/* ─── FEATURES ─────────────────────────────── */
.section--features { background: var(--bg); }

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

.feature-card {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease-out), background 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  background: var(--surface-high);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon--purple { background: rgba(193, 156, 255, 0.15); color: var(--primary); }
.feature-card__icon--orange { background: rgba(255, 152, 0, 0.15); color: var(--secondary); }
.feature-card__icon--yellow { background: rgba(255, 231, 146, 0.15); color: var(--tertiary); }
.feature-card__icon--green  { background: rgba(100, 220, 150, 0.15); color: #64dc96; }

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 10px;
}
.feature-card__desc {
  font-size: 0.875rem;
  color: var(--on-surface-var);
  line-height: 1.65;
}

/* ─── PRICING ──────────────────────────────── */
.section--pricing { background: var(--surface-low); }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: var(--surface-container);
  border-radius: var(--radius-2xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card--featured {
  background: linear-gradient(135deg, var(--surface-high) 0%, rgba(141, 83, 232, 0.2) 100%);
  border: 1px solid rgba(193, 156, 255, 0.2);
  box-shadow: 0 0 60px rgba(193, 156, 255, 0.1);
}

.pricing-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(193, 156, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-card__badge--free    { background: rgba(255,255,255,0.08); color: var(--on-surface-var); }
.pricing-card__badge--premium { background: rgba(255, 231, 146, 0.15); color: var(--tertiary); }

.pricing-card__plan {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 16px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.pricing-card__currency {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--on-surface-var);
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1;
}
.pricing-card__period {
  font-size: 0.8rem;
  color: var(--on-surface-var);
  margin-left: 4px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.pricing-card__feature--on  { color: var(--on-surface); }
.pricing-card__feature--off { color: var(--on-surface-var); opacity: 0.5; }

.pricing__savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--on-surface-var);
  text-align: center;
  padding: 16px 24px;
  background: rgba(255, 231, 146, 0.05);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 231, 146, 0.2);
}

/* ─── WARRANTY ─────────────────────────────── */
.section--warranty {
  background: var(--surface-low);
  padding-top: 40px;
}

.warranty-card {
  background: linear-gradient(135deg, rgba(255, 231, 146, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 1px solid rgba(255, 231, 146, 0.2);
  border-radius: var(--radius-2xl);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .warranty-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

.warranty-card__badge {
  background: rgba(255, 231, 146, 0.1);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 231, 146, 0.3);
  box-shadow: 0 0 20px rgba(255, 231, 146, 0.1);
}

.warranty-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--tertiary);
  font-family: var(--font-display);
}

.warranty-card__text {
  font-size: 1.05rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

.warranty-card__text strong {
  color: var(--on-surface);
}
  border-radius: var(--radius-xl);
  max-width: 600px;
  margin: 0 auto;
}
.pricing__savings strong { color: var(--tertiary); }

/* ─── TESTIMONIALS ─────────────────────────── */
.section--testimonials { background: var(--bg); }

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

.testimonial-card {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card__stars { color: var(--tertiary); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--on-surface);
  line-height: 1.7;
  flex: 1;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-card__avatar--1 { background: linear-gradient(135deg, var(--primary-dim), #6a2bde); color: #fff; }
.testimonial-card__avatar--2 { background: linear-gradient(135deg, var(--secondary-dim), #8b4500); color: #fff; }
.testimonial-card__avatar--3 { background: linear-gradient(135deg, var(--tertiary-dim), #9a7c00); color: #fff; }

.testimonial-card__name { font-weight: 700; font-size: 0.875rem; color: var(--on-surface); }
.testimonial-card__role { font-size: 0.75rem; color: var(--on-surface-var); }

/* ─── FAQ ──────────────────────────────────── */
.section--faq { background: var(--surface-low); }

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-surface);
  transition: background 0.2s;
}
.faq-item__question:hover { background: var(--surface-high); }

.faq-item__icon {
  color: var(--on-surface-var);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.2s;
}
.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-item__answer { max-height: 300px; }

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.7;
}

/* ─── DOWNLOAD ─────────────────────────────── */
.section--download {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}

.download__bg-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(141, 83, 232, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.download__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.download__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.download__subtitle {
  color: var(--on-surface-var);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.download__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl);
  color: #fff;
  transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s;
  min-width: 180px;
}
.store-btn:hover {
  transform: translateY(-4px);
  background: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.store-btn__sub { font-size: 0.7rem; color: rgba(255, 255, 255, 0.7); line-height: 1; }
.store-btn__main { font-size: 1rem; font-weight: 700; line-height: 1.4; }

/* ─── FOOTER ───────────────────────────────── */
/* ─── FOOTER ───────────────────────────────── */
.footer {
  background: var(--bg);
  color: #fff;
  padding: 80px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__brand .footer__logo-img { width: 280px; height: auto; }
.footer__tagline { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.08em; }

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--primary-dim); }
.footer__social-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.footer__social-icon:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.footer__copyright { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* ─── ANIMATIONS ───────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Delay cascade */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

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

/* Feature card stagger */
.features__grid .feature-card:nth-child(1) { transition-delay: 0.05s; }
.features__grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features__grid .feature-card:nth-child(3) { transition-delay: 0.15s; }
.features__grid .feature-card:nth-child(4) { transition-delay: 0.2s; }
.features__grid .feature-card:nth-child(5) { transition-delay: 0.25s; }
.features__grid .feature-card:nth-child(6) { transition-delay: 0.3s; }

/* ─── RESPONSIVE: TABLET ───────────────────── */
@media (max-width: 900px) {
  .hero__mockup { display: none; }
  .hero__container { max-width: 100%; }

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

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

/* ─── RESPONSIVE: MOBILE ───────────────────── */
@media (max-width: 640px) {
  .section { padding: 72px 0; }

  /* NAV Mobile */
  .nav__hamburger { display: flex; z-index: 10; }

  .nav__menu {
    position: fixed;
    inset: 0 0 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: rgba(14, 14, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    padding: 40px;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; }
  .nav__cta { font-size: 1rem; padding: 14px 36px; margin-left: 0; }

  /* Hero Mobile */
  .hero {
    padding: 100px 0 72px;
    align-items: flex-start;
  }
  .hero__container { padding: 0 20px; gap: 20px; }
  .hero__title { font-size: 2.6rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 16px; }
  .hero__stat-number { font-size: 1.3rem; }

  /* Sections */
  .section__container { padding: 0 20px; }
  .section__title { font-size: 1.7rem; }
  .section-card { padding: 28px 20px; }

  /* Features */
  .features__grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Download */
  .download__buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ─── SCROLLBAR ────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--outline-var); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dim); }

/* ─── SELECTION ────────────────────────────── */
::selection { background: rgba(193, 156, 255, 0.25); color: var(--on-surface); }

/* ─── OLD HERO / SECONDARY CARD ────────────────────────────── */
.section-old-hero {
  background-color: var(--bg);
  min-height: auto;
  padding: 120px 24px 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.old-hero__badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--on-surface-var);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.old-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
}

.old-hero__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  margin: 0;
  max-width: 800px;
  letter-spacing: -2px;
}

.old-hero__highlight {
  background: linear-gradient(90deg, #c19cff, #ff9800);
  -webkit-background-clip: text;
  color: transparent;
}

.old-hero__subtitle {
  font-size: 20px;
  color: var(--on-surface-var);
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.old-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.old-hero__btn-primary {
  background: #c19cff;
  color: #000;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 16px 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}

.old-hero__btn-primary:hover {
  transform: translateY(-2px);
}

.old-hero__btn-secondary {
  background: #18181b;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 16px 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.old-hero__btn-secondary svg {
  width: 20px;
  height: 20px;
}

.old-hero__btn-secondary:hover {
  background: #27272a;
}

/* ─── VIDEO SHOWCASE ───────────────────────── */
.section--videos {
  background: var(--bg);
  padding: 40px 0 100px 0;
  overflow: hidden;
  position: relative;
}

.video-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Cria o efeito de fade nas bordas para suavizar a entrada/saída */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.video-slider__track {
  display: flex;
  width: max-content;
  animation: slideVideos 30s linear infinite;
}

.video-slider__track:hover {
  animation-play-state: paused;
}

.video-slider__group {
  display: flex;
}

.video-slider__item {
  width: 200px;
  aspect-ratio: 9/16;
  margin-right: 16px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-low);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.video-slider__item:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .video-slider__item {
    width: 260px;
    margin-right: 24px;
  }
}

.video-slider__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideVideos {
  0% { transform: translateX(0); }
  /* Existem 4 grupos idênticos, a gente translada 25% (ou seja, 1 grupo) 
     para que o loop seja invisível. Se tivéssemos 3 grupos seria 33.333% */
  100% { transform: translateX(-25%); } 
}
