/* ============================================
   NET Player — Landing Page Styles
   Design System: Dark Cinema / Streaming Premium
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Sora:wght@700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Background */
  --color-bg: #12151C;
  --color-bg-alt: #171B24;
  --color-bg-dark: #0D0F14;

  /* Card / surface */
  --color-surface: #1E2230;
  --color-surface-alt: #242938;
  --color-border: #2C3140;

  /* Primary — rosa‑vermelho */
  --color-primary: #F2385A;
  --color-primary-hover: #D92E4E;
  --color-primary-glow: rgba(242, 56, 90, .25);

  /* Accent — ciano */
  --color-accent: #4FD8E8;
  --color-accent-hover: #3BC5D5;

  /* Text */
  --color-text: #FFFFFF;
  --color-text-secondary: #9AA1B0;
  --color-text-muted: #8A90A0;
  --color-text-disabled: #6B7280;

  /* Disabled / soon */
  --color-disabled-bg: #2A2E3A;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Spacing scale */
  --space-xs: .5rem;
  /*  8px */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 2rem;
  /* 32px */
  --space-xl: 3rem;
  /* 48px */
  --space-2xl: 4rem;
  /* 64px */
  --space-3xl: 6rem;
  /* 96px */

  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* Transitions */
  --transition: .3s ease;
  --transition-fast: .15s ease;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: repeating-linear-gradient(90deg,
      #0A171E 0px,
      #0A171E 48px,
      #0F1B23 48px,
      #0F1B23 96px);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* body::before removed — stripes are now on body background directly */

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Fade-in animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ============================================
   1. HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-xl) 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-sm) 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: var(--fw-black);
  font-style: italic;
  letter-spacing: .5px;
  color: var(--color-text);
  text-transform: uppercase;
  user-select: none;
}

.logo span {
  color: var(--color-primary);
}

.header-left {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--color-text);
}

@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-secondary);
}

.lang-switch a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.lang-switch a:hover {
  color: var(--color-text);
}

.lang-switch a svg {
  width: 18px;
  height: 18px;
}

.header-separator {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

.btn-login {
  font-size: .85rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  transition: color var(--transition);
}

.btn-login:hover {
  color: var(--color-primary);
}

/* ============================================
   HAMBURGER BUTTON & MOBILE NAV DRAWER
   ============================================ */
.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
  margin-left: 6px;
}

.hamburger-btn:hover {
  background: rgba(79, 216, 232, 0.1);
  border-color: var(--color-accent);
}

.hamburger-box {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger-box::before,
.hamburger-box::after,
.hamburger-inner {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger-btn:hover .hamburger-inner,
.hamburger-btn:hover .hamburger-box::before,
.hamburger-btn:hover .hamburger-box::after {
  background: var(--color-accent);
}

@media (max-width: 992px) {
  .hamburger-btn {
    display: flex;
  }
}

/* Mobile Nav Backdrop Overlay */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mobile Nav Drawer (Left Slide-in) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 80vw);
  height: 100vh;
  height: 100dvh;
  background: #07151D;
  border-right: 1px solid rgba(79, 216, 232, 0.18);
  box-shadow: 15px 0 50px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

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

/* Drawer Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-sm);
}

.mobile-nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.mobile-nav-close:hover {
  color: var(--color-text);
  background: rgba(242, 56, 90, 0.15);
  border-color: var(--color-primary);
}

.mobile-nav-close svg {
  width: 18px;
  height: 18px;
}

/* Drawer Links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #CBD5E1;
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.mobile-nav-item svg {
  width: 19px;
  height: 19px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.mobile-nav-item:hover svg,
.mobile-nav-item:active svg {
  color: #FFFFFF;
  transform: scale(1.1);
}

/* Drawer Footer: Circular Social Icons Row (matching links.html) */
.mobile-nav-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.mobile-nav-social-row .social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.mobile-nav-social-row .social-icon-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-social-row .social-icon-btn:hover,
.mobile-nav-social-row .social-icon-btn:active {
  color: #FFFFFF;
  border-color: var(--color-accent);
  background: rgba(79, 216, 232, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 216, 232, 0.3);
}

.mobile-nav-social-row .social-icon-btn:hover svg {
  transform: scale(1.15);
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  padding-top: calc(100px + var(--space-xl));
  padding-bottom: var(--space-2xl);
  text-align: center;
  overflow: hidden;
  background: transparent;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Decorative illustrations positioned absolutely */
.hero-illust {
  position: absolute;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.hero-illust img {
  width: 100%;
  height: auto;
}

.hero-illust--left {
  left: -85px;
  top: 25%;
  transform: translateY(-55%);
  width: 250px;
  opacity: 0.15; /* Muito transparente no celular */
}

.hero-illust--right {
  display: none; /* Oculto no celular */
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 270px;
}

.hero .container {
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: .95rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.hero-title {
  font-family: 'Sora', var(--font-family);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-md);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px;
}

.hero-title.reveal {
  transform: translateY(30px) rotate(-1.2deg);
}

.hero-title.reveal.visible {
  transform: translateY(0) rotate(-1.2deg);
}

.hero-title .highlight {
  color: #9DA4A6;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--color-primary);
  color: var(--color-text);
  font-size: .85rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--color-primary-glow);
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* Secondary / outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: transparent;
  color: var(--color-text);
  font-size: .85rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Accent variant */
.btn-accent {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  box-shadow: 0 4px 20px rgba(79, 216, 232, .25);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
}

/* hero-link replaced by btn-outline in hero */

/* Floating feature cards */
.hero-cards {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.hero-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.ticket-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 20px 24px;
  width: 100%;
  max-width: 320px;
  min-height: 110px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 120'><path d='M 12 0.75 H 348 A 11.25 11.25 0 0 1 359.25 12 V 20 A 6 6 0 0 0 359.25 32 V 44 A 6 6 0 0 0 359.25 56 V 68 A 6 6 0 0 0 359.25 80 V 92 A 6 6 0 0 0 359.25 104 V 108 A 11.25 11.25 0 0 1 348 119.25 H 12 A 11.25 11.25 0 0 1 0.75 108 V 104 A 6 6 0 0 0 0.75 92 V 80 A 6 6 0 0 0 0.75 68 V 56 A 6 6 0 0 0 0.75 44 V 32 A 6 6 0 0 0 0.75 20 V 12 A 11.25 11.25 0 0 1 12 0.75 Z' fill='%23253745' stroke='none'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.ticket-card.reveal {
  transform: translateY(30px) rotate(var(--rotate, 0deg));
}

.ticket-card.reveal.visible {
  transform: translateY(0) rotate(var(--rotate, 0deg));
}

.ticket-card:nth-child(1) {
  --rotate: 0deg;
}

.ticket-card:nth-child(2) {
  --rotate: 2deg;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 120'><path d='M 12 0.75 H 348 A 11.25 11.25 0 0 1 359.25 12 V 20 A 6 6 0 0 0 359.25 32 V 44 A 6 6 0 0 0 359.25 56 V 68 A 6 6 0 0 0 359.25 80 V 92 A 6 6 0 0 0 359.25 104 V 108 A 11.25 11.25 0 0 1 348 119.25 H 12 A 11.25 11.25 0 0 1 0.75 108 V 104 A 6 6 0 0 0 0.75 92 V 80 A 6 6 0 0 0 0.75 68 V 56 A 6 6 0 0 0 0.75 44 V 32 A 6 6 0 0 0 0.75 20 V 12 A 11.25 11.25 0 0 1 12 0.75 Z' fill='%234A5C6B' stroke='none'/></svg>");
}

.ticket-card:nth-child(3) {
  --rotate: 0deg;
}

.ticket-card:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  z-index: 12;
}

.ticket-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-card-icon svg {
  width: 28px;
  height: 28px;
}

.ticket-card-content {
  text-align: left;
}

.ticket-card-content h3 {
  font-family: 'Sora', var(--font-family);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.ticket-card-content p {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  line-height: 1.35;
}

/* ============================================
   3. SMARTER SECTION
   ============================================ */
.smarter {
  background: transparent;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.smarter-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.smarter-title {
  font-family: 'Sora', var(--font-family);
  font-size: clamp(3.0rem, 4.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.smarter-title .highlight {
  color: var(--color-text);
}

.smarter-glasses-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.smarter-glasses-img {
  width: 250px;
  height: auto;
  max-width: 100%;
  transform: rotate(-12deg);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
  animation: floatGlasses 6s ease-in-out infinite;
}

@keyframes floatGlasses {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-8px); }
}

.smarter-desc-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* Custom hand-drawn style underline for text */
.highlight-underline {
  position: relative;
  color: var(--color-text);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 5%;
  width: 90%;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,5 Q30,10 50,5 T100,5 Q70,0 50,5 T0,5' fill='none' stroke='%234FD8E8' stroke-width='2' stroke-linecap='round'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Device cards grid style */
.smarter-carousel-container {
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
}

.smarter-carousel-viewport {
  overflow: hidden;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 0;
}

@media (max-width: 1100px) {
  .smarter-carousel-viewport {
    width: 846px;
  }
}

@media (max-width: 850px) {
  .smarter-carousel-viewport {
    width: 672px;
  }
}

@media (max-width: 680px) {
  .smarter-carousel-viewport {
    width: 498px;
  }
}

@media (max-width: 520px) {
  .smarter-carousel-viewport {
    width: 324px;
  }
}

.smarter-devices-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-md);
  width: max-content;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.device-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 80px;
  background: #06151C;
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  flex-shrink: 0;
  opacity: 1;
  overflow: hidden;
  padding: 0;
}

.logo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: brightness(1);
  transition: filter var(--transition);
}

.device-card:hover .logo-card-img {
  filter: brightness(1.08);
}

.smarter-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-md);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #253745;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.active {
  background: var(--color-text);
  transform: scale(1.2);
}

.device-card-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.device-name {
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.device-icon {
  width: 18px;
  height: 18px;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

/* Hover state for cards */
.device-card:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Disabled card state with SOON tag */
.device-card.disabled:not(.active) {
  opacity: 0.28;
  cursor: default;
}

.soon-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: #252A36;
  border: 1px solid #363D4E;
  color: #9DA4A6;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive adjustments for Smarter Section */
@media (min-width: 992px) {
  .smarter-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: var(--space-xl);
  }
  .smarter-title-col,
  .smarter-desc-col {
    flex: 1;
  }
  .smarter-glasses-col {
    flex-shrink: 0;
  }
  .smarter-desc-text {
    margin: 0;
    text-align: left;
  }
}

/* ============================================
   4. APP ANDROID SECTION
   ============================================ */
.app-section {
  background: transparent;
  overflow: hidden;
}

.app-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-direction: column;
}

.app-mockup {
  flex-shrink: 0;
  width: 260px;
  position: relative;
}

.app-mockup-phone {
  width: 100%;
  background: var(--color-surface);
  border-radius: 28px;
  padding: 12px;
  border: 2px solid var(--color-border);
  aspect-ratio: 9/18;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.app-mockup-phone::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-surface-alt) 100%);
}

.app-mockup-phone .phone-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: .75rem;
}

.app-mockup-phone .phone-content .phone-logo {
  font-size: 1.1rem;
  font-weight: var(--fw-black);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 4px;
}

.app-info {
  text-align: center;
  position: relative;
}

.app-info .android-label {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.app-info .android-label svg {
  width: 28px;
  height: 28px;
}

.app-info .android-label span {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  text-transform: lowercase;
}

.app-buttons {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-md);
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .8rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: border-color var(--transition), transform var(--transition);
}

.app-btn:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.app-btn svg {
  width: 20px;
  height: 20px;
}

.app-watermark {
  position: absolute;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: var(--fw-black);
  font-style: italic;
  color: rgba(255, 255, 255, .025);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

/* ============================================
   5. ABOUT / CONVENIENT SECTION
   ============================================ */
.about {
  background: transparent;
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden; /* Prevents horizontal scrollbars from the tilted full-width strip */
}

.about .container {
  position: relative;
  z-index: 2; /* Force container content (clapperboard) to stack above the film-strip (z-index: 1) */
}

.about-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.about-text-col {
  width: 100%;
}

.about-title {
  font-family: 'Sora', var(--font-family);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.5px;
  margin-bottom: var(--space-md);
}

.about-title .highlight-title {
  color: var(--color-text);
}

.about-title .gray-title {
  color: #9DA4A6;
}

.about-desc-wrap {
  position: relative;
}

.about-desc-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.arrow-wrap {
  position: absolute;
  display: none; /* Oculto no celular */
}

.cursive-arrow {
  width: 90px;
  height: 60px;
}

.about-illust-col {
  display: flex;
  justify-content: center;
  width: 100%;
}

.clapperboard-wrap {
  position: relative;
  transform: rotate(12deg);
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.5));
  animation: floatClapper 6s ease-in-out infinite;
  z-index: 10; /* Garante que fique em primeiro plano sobre a fita */
}

.clapperboard-img {
  width: 320px;
  height: auto;
  max-width: 100%;
}

@keyframes floatClapper {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-8px); }
}

/* Film strip style */
.film-strip {
  position: relative;
  width: 112%;
  margin-left: -6%;
  background: #13222C;
  border-top: 1.5px solid #203545;
  border-bottom: 1.5px solid #203545;
  margin-top: var(--space-md);
  overflow: hidden;
  z-index: 1;
}

.film-strip.reveal {
  transform: translateY(30px) rotate(-3.5deg);
}

.film-strip.reveal.visible {
  transform: translateY(0) rotate(-3.5deg);
}

.film-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--space-lg);
  padding: 36px var(--space-md);
}

/* Sprocket holes using linear gradients */
.film-strip::before,
.film-strip::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: repeating-linear-gradient(
    to right,
    #0A171E,
    #0A171E 12px,
    transparent 12px,
    transparent 24px
  );
}

.film-strip::before {
  top: 6px;
}

.film-strip::after {
  bottom: 6px;
}

.film-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.film-feature-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
}

.logo-4k {
  font-family: 'Sora', var(--font-family);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
}

.logo-hd {
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.film-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.film-feature-icon svg {
  width: 22px;
  height: 22px;
}

.film-feature-text {
  text-align: left;
}

.film-feature-text h3 {
  font-family: 'Sora', var(--font-family);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.film-feature-text p {
  font-size: 0.78rem;
  color: #9DA4A6;
  line-height: 1.45;
}

/* Responsive adjustments for About Section */
@media (min-width: 992px) {
  .about-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: var(--space-2xl);
  }
  .about-text-col {
    flex: 1;
  }
  .about-desc-text {
    margin: 0;
    text-align: left;
    max-width: 440px;
  }
  .arrow-wrap {
    display: block;
    right: 60px;
    bottom: -20px;
  }
  .about-illust-col {
    width: auto;
    flex-shrink: 0;
  }
  .clapperboard-wrap {
    margin-bottom: -115px; /* Overlap the film strip below */
    z-index: 10;
  }
  .clapperboard-img {
    width: 440px;
  }
  .film-strip-inner {
    flex-direction: row;
    justify-content: flex-start;
    padding: 36px 48px;
    gap: var(--space-xl);
  }
}

/* ============================================
   6. PRICING / TV PACKAGES
   ============================================ */
.pricing {
  background: transparent;
  overflow: hidden;
}

/* Giant translucent background text */
.pricing-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, .02);
  pointer-events: none;
  z-index: 0;
  letter-spacing: 8px;
  line-height: 1;
}

.pricing .container {
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
}

/* Ticket-style card */
.price-card {
  width: 100%;
  max-width: 340px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  overflow: visible;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

/* Ticket notches */
.price-card::before,
.price-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color-bg-dark);
  border-radius: 50%;
}

.price-card::before {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.price-card::after {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Featured card */
.price-card.featured {
  background: var(--color-surface-alt);
  border-color: rgba(242, 56, 90, .3);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.best-price-tag {
  position: absolute;
  top: 16px;
  right: -8px;
  background: var(--color-primary);
  color: var(--color-text);
  font-size: .6rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

.best-price-tag::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 6px solid var(--color-primary-hover);
  border-right: 8px solid transparent;
}

.price-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card-icon svg {
  width: 48px;
  height: 48px;
}

.price-card-plan {
  font-size: .8rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-xs);
}

.price-card-price {
  text-align: center;
  margin-bottom: var(--space-md);
}

.price-card-price .currency {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-secondary);
  vertical-align: super;
}

.price-card-price .amount {
  font-size: 3rem;
  font-weight: var(--fw-black);
  color: var(--color-text);
  line-height: 1;
}

.price-card-price .period {
  font-size: .8rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 4px;
}

.price-card-divider {
  border: none;
  border-top: 1px dashed var(--color-border);
  margin: var(--space-sm) 0;
}

.price-card-features {
  margin-bottom: var(--space-md);
}

.price-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--color-text-secondary);
}

.price-card-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.price-card .btn-primary,
.price-card .btn-outline {
  width: 100%;
  text-align: center;
}

/* Megaphone illustration */
.pricing-illust {
  position: absolute;
  right: -60px;
  bottom: 40px;
  width: 200px;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   7. APPS PARCEIROS
   ============================================ */
.partner-apps {
  background: transparent;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.partner-apps-bg-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.5rem, 13vw, 11rem);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, .015);
  pointer-events: none;
  z-index: 0;
  letter-spacing: 12px;
}

/* Top row 3-column layout matching smarter section */
.partner-apps-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.partner-apps-title {
  font-family: 'Sora', var(--font-family);
  font-size: clamp(2.0rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.partner-apps-title .highlight {
  color: var(--color-text);
}

.partner-apps-illust-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.partner-apps-illust-img {
  width: 150px;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
  animation: floatRemote 6s ease-in-out infinite;
}

@keyframes floatRemote {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-8px); }
}

.partner-apps-desc-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .partner-apps-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: var(--space-xl);
  }
  .partner-apps-title-col,
  .partner-apps-desc-col {
    flex: 1;
  }
  .partner-apps-illust-col {
    flex-shrink: 0;
  }
  .partner-apps-desc-text {
    margin: 0;
    text-align: left;
  }
}

/* Apps Carousel Container (Matching Smarter Section) */
.apps-carousel-container {
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
}

.apps-carousel-viewport {
  overflow: hidden;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 0;
}

@media (max-width: 1100px) {
  .apps-carousel-viewport {
    width: 846px;
  }
}

@media (max-width: 850px) {
  .apps-carousel-viewport {
    width: 672px;
  }
}

@media (max-width: 680px) {
  .apps-carousel-viewport {
    width: 498px;
  }
}

@media (max-width: 520px) {
  .apps-carousel-viewport {
    width: 324px;
  }
}

.apps-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  width: max-content;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual Partner App Card (150x80px exactly matching streaming cards) */
.apps-carousel-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 80px;
  flex: 0 0 150px;
  background: #06151C;
  border-radius: 12px;
  border: none;
  flex-shrink: 0;
  opacity: 1;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.apps-carousel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.apps-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: brightness(1);
  transition: filter var(--transition);
}

.apps-carousel-card:hover .apps-carousel-img {
  filter: brightness(1.08);
}

/* Carousel Dots */
.apps-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-md);
}

/* Support Help Callout */
.partner-apps-support-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(19, 34, 44, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .partner-apps-support-banner {
    flex-direction: row;
    text-align: left;
  }
}

.support-banner-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.support-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79, 216, 232, 0.12);
  border: 1px solid rgba(79, 216, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.support-banner-icon svg {
  width: 22px;
  height: 22px;
}

.support-banner-text h4 {
  font-family: 'Sora', var(--font-family);
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 2px;
}

.support-banner-text p {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.partner-apps-support-banner .btn-outline {
  padding: 10px 22px;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* ============================================
   8. BENEFITS DOUBLE BLOCK
   ============================================ */
.benefits {
  background: transparent;
  padding: var(--space-2xl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.benefit-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: none;
}

.benefit-block h3 {
  font-family: 'Sora', var(--font-family);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.benefit-block p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.benefit-block .btn-primary,
.benefit-block .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  align-self: flex-start;
}

/* ============================================
   8. FAQ
   ============================================ */
.faq {
  background: transparent;
  overflow: hidden;
}

/* Giant background text */
.faq-bg-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, .015);
  pointer-events: none;
  z-index: 0;
  letter-spacing: 8px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.faq-header .section-title {
  margin-bottom: var(--space-sm);
}

/* Chair illustration */
.faq-illust {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.faq-illust svg {
  width: 160px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-sm);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-number {
  font-size: .85rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-muted);
  min-width: 28px;
}

.faq-question-text {
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

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

.faq-answer-inner {
  padding: 0 var(--space-sm) var(--space-md) calc(28px + var(--space-sm));
  font-size: .92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-item.open {
  background: rgba(30, 34, 48, .5);
  border-radius: var(--radius-md);
}

/* ============================================
   9. FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: #000000;
  padding: var(--space-2xl) 0 var(--space-md);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Background transparent streaming logos pattern */
.footer-bg-logos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 50%;
  max-width: 550px;
  height: 140%;
  position: absolute;
  top: -15%;
  left: -5%;
  opacity: 0.22;
  filter: grayscale(15%) brightness(0.85);
  transform: rotate(-4deg);
}

.footer-logos-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1A1A1A;
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 45%, #000000 70%, #000000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 85%, #000000 100%);
}

/* Small footer logo */
.footer-brand {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: .88rem;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-badges {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .78rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.footer-badge:hover {
  border-color: var(--color-accent);
}

.footer-badge svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  text-align: center;
  font-size: .8rem;
  color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet ≥ 768px */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .hero {
    padding-top: calc(95px + var(--space-xl));
    padding-bottom: var(--space-3xl);
  }

  .hero-illust--left {
    left: -95px;
    top: 50%;
    width: 320px;
    opacity: 1; /* Visibilidade normal em telas maiores */
  }

  .hero-illust--right {
    display: block; /* Visível em telas maiores */
    right: -150px;
    width: 350px;
  }

  .app-inner {
    flex-direction: row;
    text-align: left;
  }

  .app-info {
    text-align: left;
  }

  .app-info .android-label {
    justify-content: flex-start;
  }

  .app-buttons {
    justify-content: flex-start;
  }



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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr) auto;
  }
}

/* Desktop ≥ 1200px */
@media (min-width: 1200px) {
  .hero-title {
    max-width: 850px;
  }

  .hero-cards {
    max-width: 1100px;
  }

  .hero-illust--left {
    left: -105px;
    top: 50%;
    width: 380px;
    opacity: 1;
  }

  .hero-illust--right {
    display: block;
    right: -170px;
    width: 410px;
  }



  .pricing-illust {
    right: -20px;
    width: 260px;
    opacity: .1;
  }

  .faq-content {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2xl);
  }

  .faq-header {
    flex-shrink: 0;
    text-align: left;
    max-width: 340px;
  }

  .faq-list {
    flex: 1;
  }
}

/* ── Mobile: logo menor ── */
@media (max-width: 768px) {
  .logo img {
    height: 45px !important;
  }
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   11. FREE TRIAL MODAL — Cinema Ticket Design
   ============================================ */

/* Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  padding: var(--space-sm);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

body.modal-open {
  overflow: hidden;
}

/* ---- Card (Cinema Ticket) ---- */
.modal-card {
  background: linear-gradient(180deg, #13222C 0%, var(--color-surface) 100%);
  border: 1px solid rgba(79, 216, 232, 0.12);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  padding: 0 var(--space-lg) var(--space-lg);
  position: relative;
  overflow: visible;
  transform: scale(0.88) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(79, 216, 232, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

/* ---- Film-strip top & bottom ---- */
.modal-film-strip {
  position: relative;
  width: calc(100% + calc(var(--space-lg) * 2));
  margin-left: calc(var(--space-lg) * -1);
  height: 18px;
  background: #0A171E;
  border-bottom: 1px solid #203545;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

.modal-film-strip::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: repeating-linear-gradient(
    to right,
    #06151C,
    #06151C 10px,
    transparent 10px,
    transparent 20px
  );
}

.modal-film-strip--bottom {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border-bottom: none;
  border-top: 1px solid #203545;
  margin-top: var(--space-md);
  margin-bottom: calc(var(--space-lg) * -1);
}

.modal-film-strip--bottom::before {
  top: 6px;
}

/* ---- Ticket notches (like pricing cards) ---- */
.modal-notch {
  position: absolute;
  width: 22px;
  height: 22px;
  background: rgba(10, 12, 18, 0.92);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.modal-notch--left {
  left: -12px;
  box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.3);
}

.modal-notch--right {
  right: -12px;
  box-shadow: inset 2px 0 4px rgba(0, 0, 0, 0.3);
}

/* ---- Close button ---- */
.modal-close {
  position: absolute;
  top: 26px;
  right: var(--space-sm);
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  z-index: 5;
  transition: all var(--transition);
}

.modal-close:hover {
  color: var(--color-text);
  background: rgba(242, 56, 90, 0.15);
  border-color: rgba(242, 56, 90, 0.3);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

/* ---- Modal Header ---- */
.modal-header {
  text-align: center;
  padding-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

/* Title */
.modal-title {
  font-family: 'Sora', var(--font-family);
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--color-text);
  letter-spacing: -0.3px;
}

.modal-title .highlight {
  background: linear-gradient(135deg, var(--color-accent), #7AEAF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

/* ---- Dashed divider (pricing card pattern) ---- */
.modal-divider {
  border: none;
  border-top: 1px dashed var(--color-border);
  margin: var(--space-sm) 0;
}

/* ---- Form ---- */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  letter-spacing: 0.3px;
}

.form-label .required {
  color: var(--color-primary);
}

/* Input wrapper with icon */
.form-input-wrap {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: color var(--transition);
}

.form-input-wrap:focus-within .form-input-icon {
  color: var(--color-accent);
}

.form-input {
  width: 100%;
  background-color: #06151C;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  padding: 13px 16px 13px 44px;
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--color-text-disabled);
  font-size: 0.85rem;
}

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(79, 216, 232, 0.1), 0 0 20px rgba(79, 216, 232, 0.05);
  background-color: #0A1D28;
}

/* ---- Submit button (WhatsApp branded) ---- */
.modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: var(--space-xs);
  padding: 14px 24px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.5px;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 20px var(--color-primary-glow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(242, 56, 90, 0.45);
}

.modal-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* ---- Success View ---- */
.modal-success {
  text-align: center;
  padding: var(--space-md) 0 var(--space-xs);
  animation: modalScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.success-icon-bg {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(79, 216, 232, 0.12);
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 30px rgba(79, 216, 232, 0.3), inset 0 0 15px rgba(79, 216, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  animation: checkPulse 2s infinite ease-in-out;
}

@keyframes checkPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(79, 216, 232, 0.3); }
  50% { box-shadow: 0 0 45px rgba(79, 216, 232, 0.6); }
}

.success-check-icon {
  width: 32px;
  height: 32px;
}

.success-title {
  font-family: 'Sora', var(--font-family);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.success-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.success-wa-btn {
  text-decoration: none;
  margin-top: 0;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.success-wa-btn:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .modal-card {
    padding: 0 var(--space-md) var(--space-md);
    max-width: 360px;
  }
  .modal-title {
    font-size: 1.4rem;
  }
  .modal-film-strip {
    width: calc(100% + calc(var(--space-md) * 2));
    margin-left: calc(var(--space-md) * -1);
  }
  .modal-film-strip--bottom {
    margin-bottom: calc(var(--space-md) * -1);
  }
  .modal-chip {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  .modal-features {
    gap: 6px;
  }
}