/* =========================================
   HERBNET - DESIGN SYSTEM DEFINITIVO (UPGRADED)
   ========================================= */

:root {
  --site-scale: 0.89;
  /* Cores Principais (Harmônicas e Vibrantes) */
  --blue:        #3E3B9B; /* Azul Institucional */
  --blue-light:  #4f4ccd; /* Azul Institucional mais claro para hover */
  --blue-dark:   #2C2978; /* Azul Escuro */
  --blue-marine: #171A3A; /* Azul Marinho */
  --blue-glow:   rgba(62, 59, 155, 0.15);
  
  --orange:      #F47A16; /* Laranja Principal */
  --orange-light:#FFA14A; /* Laranja Claro (Suave) */
  --orange-dark: #E35F00; /* Laranja Escuro (Hover) */
  --orange-glow: rgba(244, 122, 22, 0.25);
  
  --green:       #12d354;
  --green-glow:  rgba(18, 211, 84, 0.2);

  --white:       #ffffff;
  --gray-50:     #F5F7FA; /* Fundo Claro */
  --gray-100:    #eef2f6;
  --gray-200:    #E5E7EB; /* Borda */
  --gray-300:    #cbd5e1;
  --text:        #1E1E1E; /* Texto Escuro */
  --text-light:  #374151;
  --muted:       #6B7280; /* Texto Cinza */

  /* Gradientes Modernos */
  --grad-hero:      linear-gradient(135deg, #3E3B9B 0%, #171A3A 100%);
  --grad-orange:    linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  --grad-glass:     linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
  --grad-glass-dark:linear-gradient(135deg, rgba(23, 26, 58, 0.8) 0%, rgba(62, 59, 155, 0.4) 100%);
  
  --font-heading: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  --font:         var(--font-body);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 30px;

  /* Sombras Premium Fluídas */
  --shadow-sm: 0 2px 8px rgba(30, 30, 30, 0.04);
  --shadow-md: 0 10px 30px rgba(30, 30, 30, 0.08), 0 2px 8px rgba(30, 30, 30, 0.04);
  --shadow-lg: 0 20px 50px rgba(30, 30, 30, 0.12), 0 4px 20px rgba(30, 30, 30, 0.06);
  --shadow-orange: 0 10px 25px rgba(244, 122, 22, 0.3);
  --shadow-blue: 0 10px 25px rgba(62, 59, 155, 0.25);

  --nav-padding-y: calc(16px * var(--site-scale));
  --nav-logo-h: calc(60px * var(--site-scale));
  --nav-logo-h-mobile: calc(48px * var(--site-scale));
  --container-pad: calc(24px * var(--site-scale));

  /* Paleta Especial do Header e Hero (Futurista / Gamer) */
  --hero-bg-deep:      #060B4F;
  --hero-bg-sec:       #101B7A;
  --hero-blue-neon:    #1E6BFF;
  --hero-blue-glow:    #3DA5FF;
  
  --hero-orange-cta:   #FF6B00;
  --hero-orange-hover: #FF7F1F;
  --hero-orange-glow:  #FF8C2B;
  
  --hero-text-main:    #FFFFFF;
  --hero-text-soft:    #E9ECFF;
  --hero-text-sec:     #B8C0FF;
  
  --hero-card-glass:   rgba(14, 18, 72, 0.75);
  --hero-border-glass: rgba(255, 255, 255, 0.12);
  
  --hero-grad-main:    linear-gradient(135deg, #060B4F 0%, #101B7A 45%, #060B4F 100%);
  --hero-grad-neon-blue: linear-gradient(135deg, #1E6BFF 0%, #3DA5FF 100%);
  --hero-grad-neon-orange: linear-gradient(135deg, #FF6B00 0%, #FF8C2B 100%);
  
  --hero-glow-blue:    0 0 40px rgba(61, 165, 255, 0.45);
  --hero-glow-orange:  0 0 35px rgba(255, 107, 0, 0.45);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 12.5px; background: #030630; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6, .speed-num, .price-val {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(244,122,22,0.55);
  outline-offset: 3px;
  border-radius: 10px;
}
section[id] { scroll-margin-top: 96px; }

.container {
  max-width: calc(1200px * var(--site-scale));
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-left, .top-right { display: flex; gap: 20px; align-items: center; }
.top-item {
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.top-item:hover { color: #fff; }

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(6, 11, 79, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--nav-padding-y) 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
  background: rgba(6, 11, 79, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--hero-border-glass);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.nav-logo img {
  height: var(--nav-logo-h); width: auto;
  transition: transform 0.3s;
}
.nav-logo:hover img {
  transform: scale(1.03);
}
.nav-links {
  display: flex; gap: 32px; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.95rem; font-weight: 600;
  color: var(--hero-text-soft);
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--hero-orange-cta); border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

a.nav-central-link {
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hero-text-soft);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

a.nav-central-link::after {
  display: none;
}

a.nav-central-link:hover {
  background: rgba(255, 107, 0, 0.18);
  border-color: rgba(255, 107, 0, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
}

.nav-ctas { display: flex; align-items: center; gap: 12px; }

.btn-ghost {
  font-size: 0.9rem; font-weight: 600;
  color: #ffffff; padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.3); border-radius: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: #ffffff; color: #ffffff; background: rgba(255,255,255,0.08); }

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--blue);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(62, 63, 186, 0.2);
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}
.btn-primary svg {
  flex-shrink: 0;
}

.btn-zap {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 700;
  background: var(--hero-grad-neon-orange); color: #fff;
  padding: 11px 24px; border-radius: 10px;
  box-shadow: var(--hero-glow-orange);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-zap:hover {
  background: var(--hero-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.65);
}
.btn-zap svg {
  flex-shrink: 0;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #ffffff; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: block;
  background: rgba(6, 11, 79, 0.98) !important; /* Fundo principal #060B4F com transparência */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hero-border-glass) !important;
  padding: calc(var(--nav-padding-y) * 2 + var(--nav-logo-h-mobile) + 14px) var(--container-pad) 22px;
  box-shadow: var(--shadow-lg) !important;
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  min-height: 100dvh;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav ul { margin-bottom: 18px; }
.mobile-nav ul li { border-bottom: 1px solid var(--hero-border-glass) !important; }
.mobile-nav ul li a {
  display: block; padding: 13px 0;
  font-size: 1.05rem; font-weight: 600; color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.2s;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a:focus {
  color: var(--hero-orange-cta) !important;
}
.mobile-ctas { display: flex; flex-direction: column; gap: 12px; }
.mobile-ctas .btn-ghost { text-align: center; }
.mobile-ctas .btn-zap {
  justify-content: center;
  border-radius: 12px;
  padding: 15px 20px;
}

.mobile-central-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(0, 0, 0, 0.16);
}

.mobile-central-card strong,
.mobile-central-card small {
  display: block;
}

.mobile-central-card strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.mobile-central-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
}

.mobile-central-card svg {
  flex-shrink: 0;
  color: var(--orange-light);
}

/* ─── HERO ─── */
.hero {
  background-color: var(--hero-bg-deep);
  background-image: 
    radial-gradient(circle at 50% 60%, rgba(30, 107, 255, 0.25) 0%, transparent 60%),
    var(--hero-grad-main),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 25v10M25 30h10' stroke='rgba%28255, 255, 255, 0.05%29' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg-shapes {
  display: none;
}
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.shape-1 { 
  width: 500px; height: 500px; 
  top: -150px; right: -100px; 
  background: var(--orange);
  animation: floatOrb1 15s infinite alternate ease-in-out;
}
.shape-2 { 
  width: 400px; height: 400px; 
  bottom: -50px; left: -100px; 
  background: var(--blue-light);
  animation: floatOrb2 20s infinite alternate ease-in-out;
}
.shape-3 {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  width: 300px; height: 300px;
  top: 20%; left: 40%;
  background: var(--green);
  animation: floatOrb3 18s infinite alternate ease-in-out;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 50px) scale(1.15); }
}
@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -60px) scale(1.2); }
}
@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -40px) scale(0.9); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(130px * var(--site-scale)) var(--container-pad) calc(60px * var(--site-scale)); /* adjusted top padding for fixed header */
}

.hero-text {
  text-align: left;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hero-card-glass);
  border: 1px solid var(--hero-border-glass);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hero-text-soft);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.hero-tagline svg {
  color: var(--hero-blue-glow);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  text-align: left;
}
.hero h1 .highlight {
  color: var(--hero-orange-cta);
  background: var(--hero-grad-neon-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero p {
  font-size: 1.15rem;
  color: var(--hero-text-sec);
  margin-bottom: 38px;
  max-width: 540px;
  text-align: left;
  line-height: 1.65;
}

.hero-actions-centered {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--hero-grad-neon-orange);
  color: #fff;
  padding: 15px 34px;
  border-radius: 99px;
  box-shadow: var(--hero-glow-orange);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}
.btn-primary-hero:hover {
  background: var(--hero-orange-hover);
  transform: translateY(-2.5px);
  box-shadow: 0 0 45px rgba(255, 107, 0, 0.65);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(14, 18, 72, 0.4);
  border: 1.5px solid rgba(30, 107, 255, 0.4);
  color: var(--hero-text-soft);
  padding: 13.5px 32px;
  border-radius: 99px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btn-outline-hero:hover {
  background: rgba(30, 107, 255, 0.15);
  border-color: var(--hero-blue-glow);
  color: #ffffff;
  transform: translateY(-2.5px);
}

/* Visual Section */
.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-character-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-character {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.3));
  animation: floatCharacter 6s ease-in-out infinite;
}

@keyframes floatCharacter {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Floating Glowing Icons */
.glow-icon {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--hero-card-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--hero-border-glass);
  display: grid;
  place-items: center;
  color: var(--hero-blue-glow);
  box-shadow: var(--hero-glow-blue);
  z-index: 3;
}
.glow-icon svg {
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
}

.icon-wifi {
  top: 15%; left: -10px;
  animation: floatGlow 5s ease-in-out infinite alternate;
}
.icon-game {
  bottom: 35%; left: -30px;
  animation: floatGlow 6s ease-in-out infinite alternate 0.5s;
}
.icon-play {
  top: 25%; right: -15px;
  animation: floatGlow 5.5s ease-in-out infinite alternate 1s;
}
.icon-stream {
  bottom: 25%; right: -25px;
  animation: floatGlow 4.8s ease-in-out infinite alternate 1.5s;
}

@keyframes floatGlow {
  0% { transform: translateY(0) scale(1); box-shadow: var(--hero-glow-blue); }
  100% { transform: translateY(-8px) scale(1.05); box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.3); }
}

/* Feature Bar */
.hero-features-bar {
  grid-column: 1 / -1;
  width: 100%;
  background: var(--hero-card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hero-border-glass);
  border-radius: 20px;
  padding: 24px 40px;
  margin-top: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 5;
  overflow: hidden;
}
.features-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}
.features-track .feature-bar-item:nth-child(n+5) {
  display: none;
}

@keyframes marqueeFeatures {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - var(--marquee-gap) / 2)); }
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s;
}
.feature-bar-item:hover {
  transform: translateY(-2px);
}

.feature-bar-icon {
  width: 46px; height: 46px;
  background: rgba(255, 107, 0, 0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--hero-orange-cta);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

.feature-bar-text {
  display: flex;
  flex-direction: column;
}
.feature-bar-text strong {
  color: var(--hero-text-main);
  font-size: 0.95rem;
  font-weight: 700;
}
.feature-bar-text span {
  color: var(--hero-text-sec);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Responsive fixes for Hero and Features Bar */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px; /* Clear navbar and leave comfortable space */
    padding-bottom: 40px;
    gap: 40px;
  }
  .hero-visual {
    display: none !important;
  }
  .hero-text {
    align-items: center;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.2rem;
    text-align: center;
  }
  .hero p {
    font-size: 1.05rem;
    text-align: center;
    margin: 0 auto 36px;
  }
  .hero-actions-centered {
    justify-content: center;
  }
  .hero-character-wrap {
    max-width: 220px; /* Reduced mascot size on mobile/tablet */
    margin: 0 auto;
  }
  .glow-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .glow-icon svg {
    width: 16px;
    height: 16px;
  }
  .icon-wifi {
    top: 10%; left: 0px;
  }
  .icon-game {
    bottom: 30%; left: -10px;
  }
  .icon-play {
    top: 20%; right: 0px;
  }
  .icon-stream {
    bottom: 20%; right: -10px;
  }
  .hero-features-bar {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 24px;
    border-radius: 16px;
    background: var(--hero-card-glass);
    border: 1px solid var(--hero-border-glass);
  }
  .features-track {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    --marquee-gap: 32px;
    gap: var(--marquee-gap);
    width: max-content;
    animation: marqueeFeatures 15s linear infinite;
  }
  .features-track .feature-bar-item:nth-child(n+5) {
    display: flex; /* Show duplicated items on mobile/tablet for a seamless loop */
  }
  .feature-bar-item {
    flex: 0 0 250px;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .hero-inner {
    padding-top: 130px; /* Adjusted top padding for very small mobiles */
  }
  .hero h1 {
    font-size: 1.95rem; /* slightly smaller for small smartphones */
  }
  .hero p {
    font-size: 1.05rem;
    line-height: 1.58;
  }
  .hero-actions-centered {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-hero, .btn-outline-hero {
    width: 100%;
    justify-content: center;
  }
  .hero-character-wrap {
    max-width: 170px; /* Even smaller for small mobile screens */
  }
  .icon-game {
    left: 0px;
  }
  .icon-stream {
    right: 0px;
  }
  .hero-features-bar {
    padding: 16px 0;
    margin-top: 16px;
  }
  .features-track {
    --marquee-gap: 24px;
    animation-duration: 12s;
  }
  .feature-bar-item {
    flex: 0 0 220px;
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-wave {
  position: relative; z-index: 1;
  line-height: 0; margin-top: -2px;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }



/* ─── SECTION BASE ─── */
.section { padding: calc(88px * var(--site-scale)) 0; }

.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 12px;
}
.section-header p { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

.plans-location-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px auto 0 !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  color: #5f6678 !important;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 27, 122, 0.08);
  padding: 7px 12px;
  border-radius: 99px;
  text-align: center;
  line-height: 1.25;
  max-width: max-content !important;
  box-sizing: border-box;
  width: auto !important;
  box-shadow: 0 8px 18px rgba(16, 27, 122, 0.04);
}
.plans-location-note svg {
  flex-shrink: 0;
  color: var(--orange);
}

@media (max-width: 480px) {
  .plans-location-note {
    font-size: 0.72rem !important;
    padding: 7px 10px;
    max-width: 100% !important;
  }
}

/* ─── PLANOS ─── */
.plans-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.plan-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 38px 28px;
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  color: #1E1E1E;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(16, 27, 122, 0.08);
  border-color: rgba(62, 59, 155, 0.2);
}

/* Plano destaque */
.plan-card.plan-featured {
  background: #ffffff;
  border: 2.5px solid #FF6B00;
  box-shadow: 0 15px 45px rgba(255, 107, 0, 0.1);
  transform: translateY(-10px);
  padding-top: 0 !important;
  z-index: 2;
}

.plan-card.plan-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 25px 55px rgba(255, 107, 0, 0.18);
}

/* Destaque Header Banner */
.plan-featured-header {
  background: #FF6B00;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-featured-header .star-badge {
  background: #ffffff;
  color: #FF6B00;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.plan-featured-header .star-badge svg {
  color: #FF6B00;
}

.plan-speed-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.speed-num {
  font-size: 3.8rem;
  font-weight: 800;
  color: #101B7A;
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan-featured .speed-num {
  color: #FF6B00;
}

.speed-unit {
  font-size: 1.1rem;
  font-weight: 800;
  color: #101B7A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.plan-featured .speed-unit {
  color: #FF6B00;
}

.plan-name-subtitle {
  font-size: 0.88rem;
  color: #6B7280;
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.plan-featured .plan-name-subtitle {
  color: #FF6B00;
}

.plan-price-block {
  margin-bottom: 24px;
  text-align: center;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-cur {
  font-size: 1rem;
  font-weight: 700;
  color: #101B7A;
  align-self: flex-start;
  margin-top: 4px;
}

.plan-featured .price-cur {
  color: #FF6B00;
}

.price-val {
  font-size: 3.2rem;
  font-weight: 800;
  color: #101B7A;
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan-featured .price-val {
  color: #FF6B00;
}

.price-dec {
  font-size: 1.2rem;
  font-weight: 700;
  color: #101B7A;
}

.plan-featured .price-dec {
  color: #FF6B00;
}

.price-mo {
  font-size: 0.88rem;
  color: #6B7280;
  font-weight: 600;
  margin-left: 2px;
  display: inline-block;
}

.plan-featured .price-mo {
  color: #FF6B00;
}

.plan-feats {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feats li {
  font-size: 0.93rem;
  color: #374151;
  font-weight: 600;
  padding-left: 26px;
  position: relative;
  text-align: left;
}

.plan-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B00' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: cover;
}

.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}

.plan-btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.plan-btn:hover svg {
  transform: translateX(4px);
}

.plan-btn-outline {
  border: 1.5px solid #3E3B9B;
  color: #3E3B9B;
  background: transparent;
}

.plan-btn-outline:hover {
  background: #3E3B9B;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(62, 59, 155, 0.15);
}

.plan-btn-solid {
  background: #FF6B00;
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.25);
}

.plan-btn-solid:hover {
  background: #FF7F1F;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.highlight-orange {
  color: #FF6B00;
}

/* ─── VANTAGENS - Grade Horizontal ─── */
.benefits-section {
  background: var(--gray-50);
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 28px;
  align-items: stretch;
  margin-top: 50px;
}

.benefit-card {
  background: #ffffff !important;
  border-radius: 24px;
  border: 1.5px solid #e5e7eb !important;
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 45px rgba(16, 27, 122, 0.08) !important;
  border-color: rgba(62, 59, 155, 0.25) !important;
}

.benefit-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  transition: transform 0.35s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #101B7A;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-light) !important;
  line-height: 1.6;
  margin: 0;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #050A43 0%, #0C1258 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, rgba(30, 107, 255, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 900;
  color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.cta-text p {
  font-size: 1.1rem;
  color: var(--hero-text-soft) !important;
  opacity: 0.95;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hero-grad-neon-orange) !important;
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 99px;
  box-shadow: var(--hero-glow-orange) !important;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border: none !important;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.5) !important;
}

.cta-btn:active {
  transform: translateY(-1px) scale(0.98);
}

@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

/* ─── SOBRE ─── */
.sobre-section {
  background: var(--gray-50) !important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sobre-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sobre-text-col .section-tag {
  text-align: center;
  display: block;
  margin-bottom: 16px;
}

.sobre-text-col h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--blue-dark) !important;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
  text-align: center;
}

.sobre-text-col p {
  font-size: 1.08rem;
  color: var(--muted) !important;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sobre-info-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 20px;
  background: #050a43 !important;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(5, 10, 67, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  width: 100%;
}



.info-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(5, 10, 67, 0.25), 0 0 15px rgba(255, 107, 0, 0.15) !important;
  border-color: rgba(255, 107, 0, 0.4) !important;
}

.info-card:nth-child(even):hover {
  box-shadow: 0 20px 40px rgba(5, 10, 67, 0.25), 0 0 15px rgba(30, 107, 255, 0.15) !important;
  border-color: rgba(30, 107, 255, 0.4) !important;
}

.info-card svg {
  color: #FF6B00 !important;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 107, 0, 0.1) !important;
  border: 1px solid rgba(255, 107, 0, 0.2) !important;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:nth-child(even) svg {
  color: #3DA5FF !important;
  background: rgba(30, 107, 255, 0.1) !important;
  border: 1px solid rgba(30, 107, 255, 0.2) !important;
  box-shadow: 0 0 15px rgba(30, 107, 255, 0.1) !important;
}

.info-card:hover svg {
  transform: scale(1.15) rotate(8deg) !important;
  background: rgba(255, 107, 0, 0.18) !important;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.35) !important;
}

.info-card:nth-child(even):hover svg {
  background: rgba(30, 107, 255, 0.18) !important;
  box-shadow: 0 0 25px rgba(30, 107, 255, 0.35) !important;
}

.info-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 6px;
}

.info-card span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.45;
  font-weight: 500;
}

/* ─── FOOTER ─── */
.footer {
  background: #030630 !important;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 48px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  width: 100%;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.04);
}

.footer-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-social a:hover {
  background: var(--hero-grad-neon-orange) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.footer-social a:nth-child(even):hover {
  background: linear-gradient(135deg, #1E6BFF 0%, #3DA5FF 100%) !important;
  box-shadow: 0 8px 24px rgba(30, 107, 255, 0.4);
}

.footer-social a svg {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── CHAT HERBINHO ─── */
.herbinho-chat { position: fixed; right: 18px; bottom: 18px; z-index: 300; }

.herbinho-fab {
  width: 64px; height: 64px; border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C2B 100%) !important;
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.45), 0 0 15px rgba(255, 107, 0, 0.25) !important;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.herbinho-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.6), 0 0 25px rgba(255, 107, 0, 0.4) !important;
}
.herbinho-fab img {
  width: 54px; height: 54px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 2.5px solid rgba(255,255,255,0.9);
}

.herbinho-greeting {
  position: absolute;
  right: 78px;
  bottom: 12px;
  max-width: min(280px, calc(100vw - 120px));
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: var(--text) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 12px 18px;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(8px) scale(0.96);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.herbinho-greeting.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: auto;
  cursor: pointer;
}
.herbinho-greeting.hide {
  opacity: 0;
  transform: translateX(8px) scale(0.96);
  transition: opacity 0.25s, transform 0.25s;
}

.herbinho-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(360px, calc(100vw - 36px));
  height: min(540px, calc(100vh - 140px));
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  animation: chatSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.3s ease;
  overscroll-behavior: contain;
}
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.herbinho-panel[hidden] { display: none; }

.herbinho-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #050a43 0%, #0c1258 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.herbinho-title { display: flex; align-items: center; gap: 11px; }
.herbinho-title img {
  width: 40px; height: 40px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.5) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.herbinho-title strong { display: block; font-size: 1rem; font-weight: 900; color: #fff; line-height: 1.15; }
.herbinho-title-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.herbinho-title-status::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(18,211,84,0.3);
  animation: pulse 2s infinite;
}
.herbinho-close {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  display: grid; place-items: center;
  transition: background 0.2s;
}
.herbinho-close:hover { background: rgba(255,255,255,0.2); }

.herbinho-messages {
  padding: 20px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(246, 248, 251, 0.55) !important;
  backdrop-filter: blur(5px);
  scroll-behavior: smooth;
}
.herbinho-messages::-webkit-scrollbar { width: 4px; }
.herbinho-messages::-webkit-scrollbar-track { background: transparent; }
.herbinho-messages::-webkit-scrollbar-thumb { background: var(--gray-200) !important; border-radius: 4px; }

.herbinho-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  animation: msgIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.herbinho-row.user { justify-content: flex-end; }

.herbinho-avatar {
  width: 30px; height: 30px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 1.5px solid var(--gray-200) !important;
  flex-shrink: 0;
}

.herbinho-bubble-wrapper {
  max-width: 82%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.herbinho-row.user .herbinho-bubble-wrapper {
  align-items: flex-end;
}
.herbinho-row.bot .herbinho-bubble-wrapper {
  align-items: flex-start;
}

.herbinho-bubble {
  max-width: 100%;
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  font-size: 0.93rem;
  line-height: 1.55;
  background: #ffffff !important;
  color: var(--text) !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
  border: 1px solid rgba(0,0,0,0.03) !important;
  word-break: break-word;
  white-space: pre-line;
  transition: all 0.2s ease;
}
.herbinho-row.user .herbinho-bubble {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C2B 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3) !important;
}

/* Indicador de digitação animado */
.herbinho-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  min-width: 80px;
}
.typing-text {
  font-size: 0.88rem;
  color: var(--muted) !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  animation: typingFade 0.9s ease-in-out infinite alternate;
}
@keyframes typingFade {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

.herbinho-form {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  align-items: center;
}
.herbinho-input {
  flex: 1;
  height: 46px;
  border: 1.5px solid var(--gray-200) !important;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 0.93rem;
  font-family: var(--font);
  outline: none;
  background: rgba(248, 249, 250, 0.8) !important;
  color: var(--text) !important;
  transition: all 0.3s ease;
}
.herbinho-input:focus {
  border-color: var(--blue-light) !important;
  box-shadow: 0 0 0 3px rgba(74, 123, 218, 0.15) !important;
  background: #fff !important;
}
.herbinho-input::placeholder { color: #aab0bf !important; }
.herbinho-send {
  width: 44px; height: 44px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C2B 100%) !important;
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35) !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.herbinho-send:hover { transform: scale(1.06); box-shadow: 0 6px 18px rgba(255,107,0,0.45) !important; }
.herbinho-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Quick Replies chatbot - inline layout */
.chat-inline-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  animation: msgIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: opacity 0.3s ease;
}
.quick-reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 0, 0.06) !important;
  border: 1px solid rgba(255, 107, 0, 0.15) !important;
  color: #FF6B00 !important;
  padding: 6.5px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.quick-reply-btn svg {
  flex-shrink: 0;
  stroke: currentColor;
}
.quick-reply-btn:hover {
  background: #FF6B00 !important;
  color: #fff !important;
  border-color: #FF6B00 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2) !important;
}

.herbinho-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.chat-inline-wpp-link {
  margin-top: 4px;
  display: flex;
  align-items: center;
  animation: msgIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.chat-inline-action-link {
  margin-top: 4px;
  display: flex;
  align-items: center;
  animation: msgIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.chat-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C2B 100%) !important;
  color: #ffffff !important;
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.chat-action-btn svg {
  flex-shrink: 0;
  stroke: currentColor;
}
.chat-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.32);
}
.chat-wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.chat-wpp-btn:hover {
  transform: translateY(-2.5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #2cf476 0%, #15a494 100%);
}
.chat-wpp-btn svg {
  flex-shrink: 0;
}

/* Markdown styling inside bubble */
.herbinho-bubble ul {
  margin: 6px 0 6px 16px;
  padding-left: 0;
  list-style-type: disc;
}
.herbinho-bubble li {
  margin-bottom: 4px;
}
.herbinho-bubble strong {
  font-weight: 700;
  color: inherit;
}



/* ─── PRELOADER ─── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060b4ff2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.preloader-logo {
  height: 52px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
  animation: preloaderPulse 1.2s ease-in-out infinite alternate;
}
@keyframes preloaderPulse {
  from { opacity: 0.6; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1); }
}
.preloader-bar {
  width: 140px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.22);
}
.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 99px;
  background: var(--grad-orange);
  animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ─── PLAN BADGE SEM FIDELIDADE ─── */
.plan-badge-nofidelity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(18, 211, 84, 0.1);
  color: #10b981;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(18, 211, 84, 0.2);
  margin-bottom: 16px;
  width: fit-content;
}
.plan-badge-nofidelity svg {
  flex-shrink: 0;
}

/* ─── DEPOIMENTOS ─── */
.testimonials-section {
  background: var(--gray-50) !important;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-section .section-header h2 {
  color: var(--blue-dark) !important;
}

.testimonials-section .section-header p {
  color: var(--muted) !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #050a43 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(5, 10, 67, 0.1) !important;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: rgba(255, 107, 0, 0.08) !important;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:nth-child(even)::before {
  color: rgba(30, 107, 255, 0.08) !important;
}



.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(5, 10, 67, 0.25), 0 0 20px rgba(255, 107, 0, 0.15) !important;
  border-color: rgba(255, 107, 0, 0.4) !important;
}

.testimonial-card:nth-child(even):hover {
  box-shadow: 0 20px 40px rgba(5, 10, 67, 0.25), 0 0 20px rgba(30, 107, 255, 0.15) !important;
  border-color: rgba(30, 107, 255, 0.4) !important;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--orange) !important;
  filter: drop-shadow(0 0 3px rgba(255, 107, 0, 0.4));
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.6;
  flex: 1;
  font-weight: 500;
  margin: 0;
  z-index: 2;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  z-index: 2;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B00 0%, #FFA14A 100%) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

.testimonial-card:nth-child(even) .testimonial-avatar {
  background: linear-gradient(135deg, #1E6BFF 0%, #3DA5FF 100%) !important;
  box-shadow: 0 4px 10px rgba(30, 107, 255, 0.2);
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff !important;
}

.testimonial-author span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FF6B00 !important;
  background: rgba(255, 107, 0, 0.12) !important;
  border: 1px solid rgba(255, 107, 0, 0.2) !important;
  padding: 2px 10px;
  border-radius: 99px;
}

.testimonial-card:nth-child(even) .testimonial-author span {
  color: #3DA5FF !important;
  background: rgba(30, 107, 255, 0.12) !important;
  border: 1px solid rgba(30, 107, 255, 0.2) !important;
}

@media (max-width: 992px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 18px;
    padding-bottom: 24px;
    margin: 0 calc(var(--container-pad) * -1);
    padding-left: calc(var(--container-pad) + 12px);
    padding-right: calc(var(--container-pad) + 12px);
    scroll-padding-left: calc(var(--container-pad) + 12px);
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials-grid {
    scrollbar-width: none;
  }
  .testimonial-card {
    min-width: min(82vw, 320px);
    max-width: min(82vw, 320px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .testimonial-text {
    font-size: 1.02rem;
    line-height: 1.55;
  }
  .testimonial-author strong {
    font-size: 1rem;
  }
  .testimonial-author span {
    font-size: 0.84rem;
  }
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--gray-50);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(16, 27, 122, 0.08) !important;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(16, 27, 122, 0.02) !important;
}

/* Left neon glow bar when expanded */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: all 0.25s ease;
}

.faq-item.open::before {
  background: linear-gradient(180deg, #FF6B00 0%, #FFA14A 100%);
}

.faq-item:nth-child(even).open::before {
  background: linear-gradient(180deg, #1E6BFF 0%, #3DA5FF 100%);
}

.faq-item.open {
  border-color: rgba(255, 107, 0, 0.2) !important;
  box-shadow: 0 12px 30px rgba(16, 27, 122, 0.06) !important;
}

.faq-item:nth-child(even).open {
  border-color: rgba(30, 107, 255, 0.2) !important;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--blue-dark) !important;
  text-align: left;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: var(--orange) !important;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(16, 27, 122, 0.4) !important;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange) !important;
}

.faq-item:nth-child(even).open .faq-chevron {
  color: #1E6BFF !important;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 28px 22px;
}

.faq-answer-inner {
  min-height: 0;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--muted) !important;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 576px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 1.02rem;
    line-height: 1.35;
  }
  .faq-item.open .faq-answer {
    padding: 0 20px 18px;
  }
  .faq-answer p {
    font-size: 0.98rem;
  }
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text { text-align: center; }
  .sobre-inner { text-align: center; }
  .sobre-info-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --site-scale: 0.96;
    --container-pad: 18px;
    --nav-logo-h-mobile: 45px;
  }
  html {
    font-size: 14px;
  }
  section[id] { scroll-margin-top: 78px; }
  .top-bar { display: none; }
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .top-right { display: none; }
  .nav-logo img { height: var(--nav-logo-h-mobile); }

  .navbar {
    padding: 10px 0 !important;
  }
  .navbar.scrolled {
    padding: 8px 0 !important;
  }

  .hero { padding: 0; }
  .hero-wave {
    display: block;
    margin-top: -1px;
    background: transparent;
    overflow: hidden;
    transform: translateY(1px);
  }
  .hero-wave svg {
    height: 58px;
  }
  .plans-section {
    margin-top: -1px;
    border-top: 0;
  }
  
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-tag {
    font-size: 0.86rem;
  }
  .section-header h2 {
    font-size: 2.35rem;
    line-height: 1.18;
  }
  .section-header p {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  /* Planos: carrossel horizontal no mobile */
  .plans-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 24px;
    margin: 0 calc(var(--container-pad) * -1);
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }
  .plans-grid::-webkit-scrollbar { display: none; }
  .plans-grid { scrollbar-width: none; }
  .plan-card {
    min-width: 82vw; flex: 0 0 auto;
    scroll-snap-align: center;
    margin: 8px 0;
  }
  .plan-feats li,
  .plan-name-subtitle,
  .price-mo,
  .tv-text {
    font-size: 1rem;
  }
  .plan-featured { transform: none; }

  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .benefit-card { padding: 36px 20px; }
  .benefit-card h3 {
    font-size: 1.22rem;
  }
  .benefit-card p {
    font-size: 1.02rem;
  }

  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-item { flex: 0 0 40%; }
  .stat-divider { display: none; }

  .cta-banner { padding: 48px 0; }
  .sobre-text-col h2 { font-size: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .plan-card { min-width: 88vw; padding: 28px 20px; }
  .speed-unit {
    font-size: 1rem;
  }
  .plan-btn {
    font-size: 1rem;
  }
  .plan-card.plan-featured .plan-featured-header {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  .benefit-card { padding: 24px 20px; }
}

/* ─── DOTS DE PAGINAÇÃO DOS PLANOS (MOBILE) ─── */
.plans-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.plans-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.plans-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--orange);
}

@media (max-width: 768px) {
  .plans-dots {
    display: flex;
  }
}

/* ─── SCROLL REVEAL (EFEITOS DE REVELAÇÃO) ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── TV INCLUSA PLAN FEATURES ─── */
.plan-feat-tv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.tv-text {
  font-weight: 600;
  color: #374151 !important;
}
.tv-logos {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.tv-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #ffffff;
  padding: 2px;
  object-fit: contain;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s;
}
.tv-logo:hover {
  transform: translateY(-2px) scale(1.15);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.tv-more {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ─── STREAMING SECTION ─── */
.streaming-section {
  background: #f5f7fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.streaming-card {
  background: linear-gradient(135deg, #050A43 0%, #0C1258 50%, #050A43 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(4, 7, 43, 0.5), 0 0 35px rgba(30, 107, 255, 0.1) !important;
  position: relative;
  overflow: hidden;
  color: #ffffff !important;
}
.streaming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(30, 107, 255, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.streaming-content {
  position: relative;
  z-index: 2;
}
.streaming-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 107, 255, 0.08);
  border: 1px solid rgba(30, 107, 255, 0.3);
  color: var(--hero-text-soft) !important;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(30, 107, 255, 0.05);
  transition: all 0.3s ease;
}
.streaming-tag-pill svg {
  color: var(--hero-blue-glow) !important;
}
.streaming-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff !important;
  margin-bottom: 20px;
}
.streaming-content .highlight-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FFA14A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange) !important;
  display: inline-block;
}
.streaming-content p {
  color: var(--hero-text-soft) !important;
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.streaming-feats {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.streaming-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hero-text-soft) !important;
  transition: transform 0.2s ease;
}
.feat-icon-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.feat-icon-check svg {
  color: var(--orange) !important;
  filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.4));
  transition: all 0.3s ease;
}
.streaming-feats li:hover {
  transform: translateX(4px);
}
.streaming-feats li:hover .feat-icon-check {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.4);
  transform: scale(1.1);
}
.streaming-feats li:hover .feat-icon-check svg {
  color: var(--orange-light) !important;
}
.streaming-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.streaming-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.22) 0%, rgba(255, 107, 0, 0.1) 55%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}
.streaming-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 2;
}
.streaming-logo-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 16px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(4, 8, 58, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.streaming-logo-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.streaming-logo-card:hover {
  transform: translateY(-6px) scale(1.05);
}
.logo-netflix:hover {
  border-color: #e50914 !important;
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4) !important;
}
.logo-hbo:hover {
  border-color: #1E6BFF !important;
  box-shadow: 0 12px 30px rgba(30, 107, 255, 0.4) !important;
}
.logo-globoplay:hover {
  border-color: var(--orange) !important;
  box-shadow: 0 12px 30px rgba(251, 105, 10, 0.45) !important;
}
.logo-prime:hover {
  border-color: #00a8e1 !important;
  box-shadow: 0 12px 30px rgba(0, 168, 225, 0.4) !important;
}
.tv-more-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  grid-column: span 2;
  height: 60px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hero-text-soft) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: none !important;
  transition: all 0.3s ease;
}
.tv-more-card:hover {
  background: rgba(30, 107, 255, 0.12) !important;
  border-color: rgba(30, 107, 255, 0.4) !important;
  transform: translateY(-3px) scale(1.02);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(30, 107, 255, 0.25) !important;
}
.streaming-badge {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--hero-text-soft) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}
.streaming-badge svg {
  color: var(--hero-blue-glow) !important;
  animation: pulse-glow 2s infinite ease-in-out;
}
.streaming-badge:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 8px var(--hero-blue-glow)); }
  100% { transform: scale(1); opacity: 0.8; }
}
@media (max-width: 992px) {
  .streaming-card {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 50px 32px;
    text-align: center;
    border-radius: 28px;
  }
  .streaming-tag-pill {
    margin-bottom: 20px;
  }
  .streaming-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .streaming-feats {
    align-items: flex-start;
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .streaming-feats li {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .streaming-feats li span {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
  }
  .streaming-visual {
    margin-top: 16px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .streaming-card {
    padding: 40px 20px;
    gap: 36px;
    border-radius: 24px;
  }
  .streaming-content h2 {
    font-size: 2rem;
    line-height: 1.18;
  }
  .streaming-content p {
    font-size: 1.06rem;
    line-height: 1.58;
  }
  .streaming-feats li {
    font-size: 1rem;
    gap: 10px;
    line-height: 1.4;
  }
  .feat-icon-check {
    width: 24px;
    height: 24px;
  }
  .streaming-logos-grid {
    gap: 12px;
    max-width: 290px;
  }
  .streaming-logo-card {
    height: 72px;
    padding: 12px;
    border-radius: 16px;
  }
  .tv-more-card {
    height: 52px;
    font-size: 0.88rem;
  }
}

/* =========================================
   PÁGINA DE SEGUNDA VIA DE FATURA
   ========================================= */
.segundavia-main {
  min-height: calc(100vh - 140px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(62, 59, 155, 0.02) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(244, 122, 22, 0.02) 0%, transparent 40%),
              var(--gray-50);
}
.segundavia-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.segundavia-card {
  background: #ffffff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.segundavia-card-header {
  text-align: center;
  margin-bottom: 36px;
}
.segundavia-card-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.segundavia-card-header p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.segundavia-step {
  display: none;
}
.segundavia-step.active {
  display: block;
  animation: stepIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Formulário de entrada */
.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
}
.form-group input {
  height: 52px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 1.05rem;
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--text);
  outline: none;
  transition: all 0.25s ease;
}
.form-group input:focus {
  border-color: var(--blue-light);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(74, 123, 218, 0.15);
}
.error-msg {
  color: #ef4444;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
}
.btn-submit {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(42, 75, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s ease;
}
.btn-submit:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(42, 75, 160, 0.35);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Botões Voltar */
.btn-back {
  background: none;
  border: 1.5px solid var(--gray-300);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  margin: 24px auto 0;
  width: fit-content;
}
.btn-back:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--text);
}

/* Lista de contratos */
.contratos-selector-info {
  margin-bottom: 24px;
}
.contratos-selector-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.contratos-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contrato-item-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.contrato-item-card:hover {
  border-color: var(--blue-light);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contrato-item-details h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.contrato-item-details p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.contrato-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(18, 211, 84, 0.1);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}
.btn-select-contrato {
  background: var(--blue);
  color: #fff;
  border: 0;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-select-contrato:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* Etapa de Segurança - Quiz */
.security-info {
  text-align: center;
  margin-bottom: 28px;
}
.security-shield-icon {
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.security-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.security-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.address-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.address-option-btn {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.address-option-btn:hover {
  border-color: var(--blue-light);
  background: #ffffff;
  color: var(--blue);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.error-banner {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  line-height: 1.4;
  animation: shake 0.4s ease-in-out;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Faturas */
.faturas-header-info {
  text-align: center;
  margin-bottom: 28px;
}
.badge-success {
  background: rgba(18, 211, 84, 0.1);
  color: #10b981;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 8px;
}
.faturas-header-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.faturas-header-info p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.faturas-table-wrap {
  margin-bottom: 12px;
}
.faturas-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.faturas-table th {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--gray-200);
  padding: 12px 16px;
}
.faturas-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--text);
}
.faturas-table tr:hover td {
  background: rgba(0,0,0,0.01);
}
.table-actions-cell {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-table-action {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-table-action.pdf {
  background: var(--gray-100);
  color: var(--text-light);
  border: 1px solid var(--gray-300);
}
.btn-table-action.pdf:hover {
  background: var(--gray-200);
  color: var(--text);
}
.btn-table-action.pix {
  background: var(--blue);
  color: #fff;
  border: 0;
}
.btn-table-action.pix:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.no-faturas-box {
  text-align: center;
  padding: 40px 20px;
  color: #10b981;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.no-faturas-box svg {
  stroke: currentColor;
}
.no-faturas-box p {
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .segundavia-card {
    padding: 32px 20px;
  }
  .faturas-table th {
    font-size: 0.72rem;
    padding: 10px 8px;
  }
  .faturas-table td {
    font-size: 0.86rem;
    padding: 12px 8px;
  }
  .table-actions-cell {
    flex-direction: column;
    gap: 6px;
  }
  .btn-table-action {
    width: 100%;
    text-align: center;
  }
}

/* ─── FEEDBACK TÁTIL (:active) ─── */
.btn-primary:active,
.btn-primary-hero:active,
.btn-outline-hero:active,
.btn-zap:active,
.btn-ghost:active,
.plan-btn:active,
.cta-btn:active,
.panel-cta:active,
.bento-card:active,
.plan-card:active,
.footer-social a:active,
.herbinho-fab:active,
.btn-submit:active {
  transform: scale(0.97) !important;
  transition: transform 0.08s ease !important;
}

/* ─── CHAT MOBILE (BOTTOM SHEET) ─── */
@media (max-width: 576px) {
  .herbinho-chat {
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 0;
    --chat-keyboard-offset: 0px;
    --chat-panel-height: min(62dvh, 430px);
  }
  .herbinho-panel {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(12px + env(safe-area-inset-bottom) + var(--chat-keyboard-offset, 0px)) !important;
    width: auto !important;
    height: var(--chat-panel-height, min(62dvh, 430px)) !important;
    max-height: calc(100dvh - 96px - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    position: fixed !important;
    box-shadow: 0 18px 46px rgba(5, 10, 67, 0.28) !important;
  }
  .herbinho-chat.keyboard-open .herbinho-panel {
    height: min(var(--chat-panel-height, 46dvh), 360px) !important;
    bottom: calc(8px + var(--chat-keyboard-offset, 0px)) !important;
  }
  .herbinho-header {
    padding: 10px 14px;
  }
  .herbinho-title {
    gap: 9px;
  }
  .herbinho-title img {
    width: 34px;
    height: 34px;
  }
  .herbinho-title strong {
    font-size: 0.95rem;
  }
  .herbinho-title-status {
    font-size: 0.68rem;
  }
  .herbinho-close {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 18px;
  }
  .herbinho-messages {
    padding: 12px 10px;
    gap: 10px;
  }
  .herbinho-avatar {
    width: 26px;
    height: 26px;
  }
  .herbinho-bubble-wrapper {
    max-width: 86%;
  }
  .herbinho-bubble {
    padding: 10px 12px;
    font-size: 0.92rem;
    line-height: 1.45;
    border-radius: 14px 14px 14px 4px;
  }
  .herbinho-row.user .herbinho-bubble {
    border-radius: 14px 14px 4px 14px;
  }
  .herbinho-form {
    padding: 10px;
    gap: 8px;
  }
  .herbinho-input {
    height: 40px;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 0.95rem;
  }
  .herbinho-send {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .herbinho-chat.chat-open .herbinho-fab {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .herbinho-chat .herbinho-fab {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    transition: opacity 0.2s, transform 0.2s;
  }
  .herbinho-chat .herbinho-fab img {
    width: 38px;
    height: 38px;
  }
  .herbinho-greeting {
    display: none !important;
  }
  body.mobile-menu-open .herbinho-chat {
    display: none !important;
  }
}

/* =========================================
   SEÇÃO CENTRAL DO ASSINANTE
   ========================================= */
.subscriber-section {
  background: #f5f7fa;
  padding: 32px 0 0;
  position: relative;
  overflow: hidden;
}

.subscriber-card {
  background: linear-gradient(135deg, #050A43 0%, #0C1258 50%, #050A43 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 32px;
  padding: 32px 32px 0 32px;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  color: #ffffff !important;
}

.subscriber-glow-effect {
  position: absolute;
  top: 40%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.25) 0%, rgba(255, 107, 0, 0.12) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

.subscriber-inner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.subscriber-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subscriber-tagline {
  display: inline-block;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.subscriber-content h2 {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #ffffff !important;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.subscriber-subtitle {
  font-size: 1.08rem;
  color: var(--hero-text-soft) !important;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 14px;
}

.subscriber-inline-demo {
  width: 100%;
  display: none;
  justify-content: flex-start;
  margin: 4px 0 18px;
}

.subscriber-feats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.subscriber-feats-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.sub-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.subscriber-feats-list li:hover .sub-feat-icon {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.4);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
}

.subscriber-feats-list li h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.subscriber-feats-list li p {
  font-size: 0.95rem;
  color: var(--hero-text-soft) !important;
  opacity: 0.85;
  line-height: 1.5;
  margin: 0;
}

.subscriber-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-outline-subscriber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
  color: #ffffff !important;
  padding: 15px 34px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-outline-subscriber:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #ffffff !important;
  transform: translateY(-2.5px);
}

.btn-outline-subscriber:active {
  transform: scale(0.97) !important;
}

.subscriber-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 210px;
  width: 100%;
  overflow: visible;
}

.subscriber-character {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  z-index: 2;
  position: relative;
  margin-bottom: -2px;
}

.subscriber-phone-demo {
  position: relative;
  width: min(100%, 260px);
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 18px;
  z-index: 2;
}

.subscriber-payment-demo {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 16 / 9;
  overflow: visible;
}

.phone-device {
  position: relative;
  width: 204px;
  aspect-ratio: 9 / 18.7;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, #111633 0%, #050716 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.4), 0 0 36px rgba(255, 107, 0, 0.16);
  transform: rotate(-1.2deg);
  animation: phoneFloat 9s ease-in-out infinite;
  overflow: hidden;
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 70px;
  height: 16px;
  border-radius: 0 0 16px 16px;
  background: #03040d;
  transform: translateX(-50%);
  z-index: 8;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #e9edf3;
  color: #080b33;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

.phone-status {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  z-index: 7;
}

.demo-payment-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  overflow: visible;
}

.demo-status-card,
.demo-pix-card,
.demo-approved-scene {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.demo-status-card {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(20, 27, 58, 0.14);
  text-align: center;
  opacity: 0;
  transform: translateY(-46%) scale(0.96);
}

.demo-status-card strong,
.demo-status-card span {
  display: block;
}

.demo-status-card strong {
  color: #08105a;
  font-size: 0.82rem;
  line-height: 1.25;
}

.demo-status-card span {
  margin-top: 6px;
  color: #6a728f;
  font-size: 0.62rem;
  font-weight: 800;
}

.demo-status-search {
  animation: statusSearchFlow 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-status-found {
  animation: statusFoundFlow 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-status-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.demo-status-icon svg {
  width: 22px;
  height: 22px;
}

.demo-status-icon-search {
  color: #1e6bff;
  background: rgba(30, 107, 255, 0.1);
  border: 1px solid rgba(30, 107, 255, 0.24);
  animation: statusSearchIconPulse 1.35s ease-in-out infinite;
}

.demo-status-icon-search svg {
  animation: statusSearchLens 1.35s ease-in-out infinite;
}

.demo-status-icon-found {
  color: #12b76a;
  background: rgba(18, 183, 106, 0.12);
  border: 1px solid rgba(18, 183, 106, 0.24);
  animation: statusFoundPop 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-pix-card {
  padding: 16px 14px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(20, 27, 58, 0.16);
  animation: pixCardFlow 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-pix-card-head {
  text-align: center;
  margin-bottom: 12px;
}

.demo-pix-card-head span {
  display: block;
  color: #ff6b00;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0;
}

.demo-pix-card-head strong {
  display: block;
  margin-top: 2px;
  color: #080b4d;
  font-size: 1.45rem;
  line-height: 1;
}

.demo-qr-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f2f5fa;
  overflow: hidden;
  animation: qrWrapFlow 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-qr-image {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 3px;
  animation: qrImageReveal 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-scan-line {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #16c784, transparent);
  box-shadow: 0 0 12px rgba(22, 199, 132, 0.65);
  animation: qrScanFlow 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-pix-card p {
  margin: 0;
  color: #49506b;
  font-size: 0.66rem;
  font-weight: 800;
  text-align: center;
}

.demo-approved-scene {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 18px 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 38px rgba(20, 27, 58, 0.18);
  opacity: 0;
  transform: translateY(-42%) scale(0.92);
  animation: approvedFlow 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-approved-ring {
  width: 66px;
  height: 66px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #16c784, #43e6a5);
  box-shadow: 0 16px 30px rgba(22, 199, 132, 0.32);
  animation: approvedRingPop 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-approved-ring svg {
  width: 32px;
  height: 32px;
}

.demo-approved-scene strong,
.demo-approved-scene span {
  display: block;
}

.demo-approved-scene strong {
  color: #08105a;
  font-size: 0.94rem;
  line-height: 1.15;
}

.demo-approved-scene span {
  margin-top: 5px;
  color: #69708a;
  font-size: 0.62rem;
  font-weight: 800;
}


@keyframes statusSearchFlow {
  0%, 4% { opacity: 0; transform: translateY(-46%) scale(0.96); }
  8%, 24% { opacity: 1; transform: translateY(-50%) scale(1); }
  30%, 100% { opacity: 0; transform: translateY(-54%) scale(0.97); }
}

@keyframes statusFoundFlow {
  0%, 26% { opacity: 0; transform: translateY(-46%) scale(0.96); }
  32%, 48% { opacity: 1; transform: translateY(-50%) scale(1); }
  54%, 100% { opacity: 0; transform: translateY(-54%) scale(0.97); }
}

@keyframes statusSearchIconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 107, 255, 0.15); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(30, 107, 255, 0.05); }
}

@keyframes statusSearchLens {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  30% { transform: translate(-1px, -1px) rotate(-6deg); }
  60% { transform: translate(1px, 1px) rotate(6deg); }
}

@keyframes statusFoundPop {
  0%, 28% { transform: scale(0.7); opacity: 0; }
  34%, 46% { transform: scale(1); opacity: 1; }
  52%, 100% { transform: scale(0.86); opacity: 0; }
}

@keyframes pixCardFlow {
  0%, 50% { opacity: 0; transform: translateY(-42%) scale(0.94); filter: blur(4px); }
  56%, 76% { opacity: 1; transform: translateY(-50%) scale(1); filter: blur(0); }
  82%, 100% { opacity: 0; transform: translateY(-58%) scale(0.96); filter: blur(3px); }
}

@keyframes qrWrapFlow {
  0%, 56% { transform: scale(0.9); opacity: 0; }
  62%, 76% { transform: scale(1); opacity: 1; }
  82%, 100% { transform: scale(0.95); opacity: 0; }
}

@keyframes qrImageReveal {
  0%, 58% { clip-path: inset(0 100% 0 0); transform: scale(0.96); opacity: 0; }
  64%, 76% { clip-path: inset(0); transform: scale(1); opacity: 1; }
  82%, 100% { clip-path: inset(0); transform: scale(0.98); opacity: 0; }
}

@keyframes qrScanFlow {
  0%, 62% { opacity: 0; transform: translateY(-48px); }
  66% { opacity: 1; transform: translateY(-38px); }
  74% { opacity: 1; transform: translateY(38px); }
  82%, 100% { opacity: 0; transform: translateY(48px); }
}

@keyframes approvedFlow {
  0%, 80% { opacity: 0; transform: translateY(-42%) scale(0.92); filter: blur(4px); }
  86%, 98% { opacity: 1; transform: translateY(-50%) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-56%) scale(0.96); filter: blur(2px); }
}

@keyframes approvedRingPop {
  0%, 88% { transform: scale(0.58); }
  92% { transform: scale(1.12); }
  96%, 100% { transform: scale(1); }
}


.demo-story-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #070b50 0 92px, transparent 92px),
    linear-gradient(180deg, #edf2f8 0%, #f7f9fd 100%);
}

.demo-story-scene::before {
  content: "";
  position: absolute;
  inset: 92px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(237, 242, 248, 0));
  opacity: 0.7;
  pointer-events: none;
}

.demo-story-header {
  position: absolute;
  top: 40px;
  left: 12px;
  right: 12px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
}

.demo-herbinho-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background:
    url("../images/Herbinho.png") center center / 112% auto no-repeat,
    linear-gradient(135deg, #ff6b00, #ff9f45);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.demo-story-header strong,
.demo-story-header span {
  display: block;
  line-height: 1.15;
}

.demo-story-header strong {
  font-size: 0.78rem;
}

.demo-story-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
}

.demo-bubble {
  position: absolute;
  max-width: 75%;
  padding: 8px 10px;
  border-radius: 14px;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 20px rgba(14, 20, 70, 0.1);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  will-change: opacity, transform;
}

.demo-user {
  right: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #3f54ff, #6c87ff);
  border-bottom-right-radius: 5px;
}

.demo-bot {
  left: 12px;
  color: #111633;
  background: #ffffff;
  border-bottom-left-radius: 5px;
}

.demo-b1 {
  top: 106px;
  animation: bubbleOne 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-b2 {
  top: 146px;
  animation: bubbleTwo 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-b3 {
  top: 204px;
  animation: bubbleThree 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-b4 {
  top: 246px;
  animation: bubbleFour 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.demo-inline-pay {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 300px;
  padding: 10px 82px 10px 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(14, 20, 70, 0.12);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: payCardLife 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  will-change: opacity, transform;
}

.demo-inline-pay span,
.demo-inline-pay strong {
  display: block;
}

.demo-inline-pay span {
  color: #ff6b00;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-inline-pay strong {
  margin-top: 3px;
  color: #070b50;
  font-size: 1.08rem;
  line-height: 1;
}

.demo-pay-button-mini {
  position: absolute;
  right: 10px;
  top: 50%;
  min-width: 58px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b00, #ff9f45);
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.28);
  animation: payButtonTap 14s ease-in-out infinite;
}

.demo-tap-indicator {
  position: absolute;
  right: 42px;
  top: 328px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 0, 0.42);
  opacity: 0;
  transform: scale(0.7);
  animation: tapRipple 14s ease-in-out infinite;
}

.demo-payment-sheet {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 11px 11px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 -8px 28px rgba(14, 20, 70, 0.16);
  opacity: 0;
  transform: translateY(112%) scale(0.98);
  animation: sheetLife 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  will-change: opacity, transform;
}

.demo-sheet-handle {
  width: 32px;
  height: 3px;
  border-radius: 99px;
  margin: 0 auto 10px;
  background: #d7deec;
}

.demo-payment-sheet span,
.demo-payment-sheet strong {
  display: block;
  text-align: center;
}

.demo-payment-sheet span {
  color: #ff6b00;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-payment-sheet strong {
  margin: 2px 0 8px;
  color: #070b50;
  font-size: 1.18rem;
}

.demo-pix-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border-radius: 14px;
  background: #f1f5fb;
}

.demo-pix-row i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #111633 50%, transparent 0) 0 0 / 10px 10px,
    linear-gradient(#111633 50%, transparent 0) 0 0 / 10px 10px,
    #ffffff;
}

.demo-pix-row small {
  color: #111633;
  font-size: 0.61rem;
  font-weight: 900;
}

.demo-success-toast {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 208px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(14, 20, 70, 0.2);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: successToastLife 14s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  will-change: opacity, transform;
}

.demo-success-dot {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #16c784, #40e6a1);
}

.demo-success-dot svg {
  width: 13px;
  height: 13px;
}

.demo-success-toast strong {
  color: #0a175e;
  font-size: 0.66rem;
  line-height: 1.15;
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50% { transform: rotate(-0.4deg) translateY(-6px); }
}

@keyframes bubbleOne {
  0%, 56% { opacity: 1; transform: translateY(0) scale(1); }
  62%, 90% { opacity: 0; transform: translateY(-8px) scale(0.98); }
  94%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bubbleTwo {
  0%, 10% { opacity: 0; transform: translateY(12px) scale(0.98); }
  14%, 56% { opacity: 1; transform: translateY(0) scale(1); }
  62%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes bubbleThree {
  0%, 22% { opacity: 0; transform: translateY(12px) scale(0.98); }
  26%, 56% { opacity: 1; transform: translateY(0) scale(1); }
  62%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes bubbleFour {
  0%, 34% { opacity: 0; transform: translateY(12px) scale(0.98); }
  38%, 56% { opacity: 1; transform: translateY(0) scale(1); }
  62%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes payCardLife {
  0%, 48% { opacity: 0; transform: translateY(14px) scale(0.98); }
  52%, 74% { opacity: 1; transform: translateY(0) scale(1); }
  78%, 100% { opacity: 0; transform: translateY(-10px) scale(0.98); }
}

@keyframes payButtonTap {
  0%, 57%, 100% { transform: translateY(-50%) scale(1); filter: brightness(1); }
  60% { transform: translateY(-50%) scale(0.92); filter: brightness(0.94); }
  64% { transform: translateY(-50%) scale(1.04); filter: brightness(1.06); }
  68% { transform: translateY(-50%) scale(1); filter: brightness(1); }
}

@keyframes tapRipple {
  0%, 57%, 100% { opacity: 0; transform: scale(0.62); }
  61% { opacity: 0.8; transform: scale(0.86); }
  68% { opacity: 0; transform: scale(1.55); }
}

@keyframes sheetLife {
  0%, 62% { opacity: 0; transform: translateY(112%) scale(0.98); }
  68%, 92% { opacity: 1; transform: translateY(0) scale(1); }
  96%, 100% { opacity: 0; transform: translateY(18px) scale(0.96); }
}

@keyframes successToastLife {
  0%, 74% { opacity: 0; transform: translateY(10px) scale(0.98); }
  78%, 90% { opacity: 1; transform: translateY(0) scale(1); }
  94%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

.sub-glow-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: subFloat 5s infinite ease-in-out;
}

.sub-icon-doc {
  top: 25%;
  left: 5%;
  background: rgba(30, 107, 255, 0.12) !important;
  border: 1.5px solid #1E6BFF !important;
  box-shadow: 0 0 20px rgba(30, 107, 255, 0.4) !important;
  animation-delay: 0s;
}

.sub-icon-gear {
  top: 15%;
  right: 12%;
  background: rgba(153, 51, 255, 0.12) !important;
  border: 1.5px solid #9933ff !important;
  box-shadow: 0 0 20px rgba(153, 51, 255, 0.4) !important;
  animation-delay: 1.5s;
}

.sub-icon-headset {
  bottom: 45%;
  right: -2%;
  background: rgba(255, 107, 0, 0.12) !important;
  border: 1.5px solid #FF6B00 !important;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4) !important;
  animation-delay: 3.5s;
}

@keyframes subFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

.subscriber-bottom-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  width: calc(100% + 64px);
  margin-left: -32px;
  margin-right: -32px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 32px;
  z-index: 2;
  position: relative;
}

.sub-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #ffffff !important;
}

.sub-banner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange) !important;
  flex-shrink: 0;
}

.sub-banner-left span strong {
  color: var(--orange);
}

.sub-banner-middle {
  font-size: 0.9rem;
  color: var(--hero-text-soft) !important;
  opacity: 0.8;
  text-align: center;
}

.sub-banner-right {
  display: flex;
  justify-content: flex-end;
}

.sub-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 10px 20px;
  border-radius: 99px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.sub-banner-link:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateX(3px);
  color: #ffffff !important;
}

/* Responsividade Central do Assinante */
@media (max-width: 992px) {
  .subscriber-card {
    padding: 28px 20px 22px 20px;
    border-radius: 28px;
  }
  .subscriber-inner-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    text-align: center;
  }
  .subscriber-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .subscriber-inline-demo {
    display: flex;
    justify-content: center;
  }
  .subscriber-feats-list {
    align-items: flex-start;
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .subscriber-feats-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    width: 100%;
  }
  .subscriber-feats-list li > div:last-child {
    text-align: left;
    flex: 1;
  }
  .subscriber-actions {
    justify-content: center;
    width: 100%;
  }
  .subscriber-visual {
    display: none !important;
  }
  .subscriber-payment-demo {
    width: min(100%, 280px);
  }
  .subscriber-bottom-banner {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .subscriber-card {
    padding: 22px 12px 18px 12px;
    border-radius: 24px;
  }
  .subscriber-content h2 {
    font-size: 2.05rem;
    line-height: 1.16;
  }
  .subscriber-subtitle {
    font-size: 1.02rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .subscriber-tagline {
    font-size: 0.9rem;
  }
  .subscriber-feats-list {
    gap: 10px;
  }
  .subscriber-feats-list li {
    gap: 12px;
  }
  .subscriber-feats-list li h3 {
    font-size: 1.08rem;
  }
  .subscriber-feats-list li p {
    font-size: 0.98rem;
    line-height: 1.45;
  }
  .subscriber-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .subscriber-actions .btn-primary-hero,
  .subscriber-actions .btn-outline-subscriber {
    width: 100%;
    justify-content: center;
  }
  .subscriber-visual {
    min-height: 170px;
    margin-top: 6px;
  }
  .subscriber-payment-demo {
    width: min(100%, 250px);
  }
  .demo-pix-card,
  .demo-status-card,
  .demo-approved-scene {
    left: 8px;
    right: 8px;
  }
  .demo-pix-card {
    padding: 12px 12px 11px;
    border-radius: 18px;
  }
  .demo-pix-card-head {
    margin-bottom: 8px;
  }
  .demo-pix-card-head strong {
    font-size: 1.2rem;
  }
  .demo-qr-wrap {
    width: 86px;
    height: 86px;
    margin-bottom: 8px;
    border-radius: 14px;
  }
  .demo-qr-image {
    width: 66px;
    height: 66px;
  }
  .demo-pix-card p {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-chat-msg,
  .demo-pix-card,
  .demo-qr-wrap,
  .demo-qr-image,
  .demo-scan-line,
  .demo-approved-scene,
  .demo-approved-ring,
  .phone-device,
  .demo-pix-card,
  .demo-qr-wrap,
  .demo-scan-line,
  .demo-approved-scene,
  .demo-approved-ring,
  .demo-bubble,
  .demo-inline-pay,
  .demo-pay-button-mini,
  .demo-tap-indicator,
  .demo-payment-sheet,
  .demo-success-toast {
    animation: none !important;
  }
  .demo-b1,
  .demo-b2,
  .demo-b3,
  .demo-b4,
  .demo-inline-pay {
    opacity: 1;
    transform: none;
  }
  .demo-payment-sheet,
  .demo-tap-indicator,
  .demo-success-toast {
    display: none;
  }
}
