/* ═══════════════════════════════════════════════
   FLIXX CINE — CSS MODERNO (mesma estrutura, visual elevado)
   Mantém todas as classes/IDs do original.
   Apenas moderniza cores, profundidade, ritmo e fluidez.
   ═══════════════════════════════════════════════ */

:root {
  /* Paleta refinada — mesmo dourado, com mais profundidade */
  --y: #FFD600;
  --y-soft: #FFE033;
  --y-deep: #E6B800;
  --y-dim: rgba(255,214,0,0.15);
  --y-glow: rgba(255,214,0,0.08);
  --y-grad: linear-gradient(135deg, #FFD600, #FFB800);

  /* Camadas de superfície — mais graduadas */
  --black: #050507;
  --bg-deep: #060608;
  --bg-dark: #0b0b0f;
  --bg-accent: #0f0f15;
  --bg-card: #121219;

  /* Surfaces com glass */
  --surface: rgba(255,255,255,0.035);
  --surface-hover: rgba(255,255,255,0.06);
  --surface-glass: rgba(18,18,25,0.72);

  /* Borders */
  --border: rgba(255,255,255,0.07);
  --border-y: rgba(255,214,0,0.2);
  --border-y-strong: rgba(255,214,0,0.35);

  /* Texto */
  --text: #F4F4F7;
  --muted: #9090A0;
  --muted2: #45454F;
  --muted3: #2E2E36;

  /* Espaçamento fluido */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px;

  /* Raio */
  --radius-sm: 10px; --radius-md: 16px; --radius-lg: 22px; --radius-xl: 28px;

  /* Sombras — mais camadas e profundidade premium */
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.35);
  --shadow-lg: 0 28px 70px rgba(0,0,0,0.45);
  --shadow-glow: 0 6px 28px rgba(255,214,0,0.28);
  --shadow-glow-strong: 0 10px 40px rgba(255,214,0,0.4);
  --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.05);

  /* Easing premium */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Background atmosférico ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(255,214,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 90%, rgba(255,184,0,0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* ═══ NAV — glass premium que compacta ═══ */
/* :not(.breadcrumb-nav) — o breadcrumb também é um <nav> e não pode herdar
   position:fixed daqui (senão sai do fluxo e o conteúdo sobe pra baixo do header) */
nav:not(.breadcrumb-nav) {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(11,11,15,0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: height 0.4s var(--ease-out), background 0.4s, border-color 0.4s, padding 0.4s;
}
/* Compacta ao rolar via JS */
nav.is-scrolled {
  height: 58px;
  background: rgba(8,8,12,0.88);
  border-bottom-color: rgba(255,214,0,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 42px; height: 42px; border-radius: 12px;
  transition: transform 0.4s var(--ease-spring);
}
nav.is-scrolled .nav-logo img { width: 34px; height: 34px; }
.nav-logo:hover img { transform: scale(1.06) rotate(-3deg); }
.nav-logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.5px; color: var(--y);
  transition: opacity 0.3s;
}

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--y-grad);
  border-radius: 2px; transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--y-grad); color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 13px;
  padding: 11px 24px; border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(255,214,0,0.18);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #FFE033, #FFCC00);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,214,0,0.35);
}
.nav-cta:active { transform: translateY(0) scale(0.98); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--y); border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.2s, width 0.3s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  position: fixed;
  top: 72px; left:0; right:0;
  background: rgba(6,6,10,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 99;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  text-decoration: none; color: var(--muted);
  font-size: 15px; font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--y); padding-left: 8px; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: var(--sp-16);
  max-width: 1280px; margin: 0 auto;
  padding: 100px var(--sp-12) 80px;
  position: relative;
}

.hero-badges { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-6); }
.hero-badges .hero-badge { margin-bottom: 0; }
.hero-badge.is-muted { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: #aaa; }
.hero-badge-dot.is-muted { background: #aaa; box-shadow: none; animation: none; }

.btn-lg { padding: 17px 36px; font-size: 15px; letter-spacing: 0.3px; border-radius: 14px; }
.btn-primary.btn-lg { box-shadow: 0 6px 32px rgba(255,214,0,0.32); }
.btn-primary.btn-lg:hover { box-shadow: 0 12px 44px rgba(255,214,0,0.48); }

.hero-media { display: flex; align-items: center; justify-content: center; }
.hero-media img {
  width: 100%; max-width: 620px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 70px rgba(0,0,0,0.5));
  border-radius: 12px;
  transition: transform 0.5s var(--ease-out);
}
.hero-media:hover img { transform: scale(1.02); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,214,0,0.07);
  border: 1px solid rgba(255,214,0,0.16);
  color: var(--y); font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--y);
  box-shadow: 0 0 10px var(--y);
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #F4F4F7 0%, #C0C0CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title em {
  font-style: normal;
  background: var(--y-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px); color: var(--muted);
  line-height: 1.8; margin-bottom: var(--sp-10);
  max-width: 520px;
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: var(--sp-12); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--y-grad); color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 14px;
  padding: 15px 30px; border-radius: 12px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 6px 28px rgba(255,214,0,0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FFE033, #FFCC00);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,214,0,0.4);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 14px;
  padding: 15px 30px; border-radius: 12px;
  text-decoration: none; border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--border-y);
  color: var(--y);
  background: rgba(255,214,0,0.04);
  transform: translateY(-2px);
}

/* ═══ SECTIONS ═══ */
section { padding: clamp(64px, 9vw, 110px) 48px; }

.container { max-width: 1200px; margin: 0 auto; }

.label-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.15);
  padding: 5px 14px; border-radius: 100px;
  color: var(--y); margin-bottom: 12px;
}

h2.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.8px; margin-bottom: 16px;
  background: linear-gradient(135deg, #F4F4F7, #D8D8E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: clamp(15px, 1.4vw, 17px); color: var(--muted);
  line-height: 1.75; max-width: 580px;
}

/* ═══ PLANOS ═══ */
#planos { background: var(--bg-accent); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; margin-top: 60px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.plan-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--border);
  transition: height 0.3s;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-inner);
}

.plan-card.featured {
  background: linear-gradient(135deg, rgba(255,214,0,0.08), rgba(255,214,0,0.02)), var(--bg-card);
  border-color: rgba(255,214,0,0.28);
  box-shadow: 0 0 0 1px rgba(255,214,0,0.06), 0 20px 60px rgba(255,214,0,0.1), var(--shadow-inner);
}
.plan-card.featured::before {
  background: var(--y-grad);
  box-shadow: 0 0 16px rgba(255,214,0,0.3);
}
.plan-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(255,214,0,0.12), 0 30px 80px rgba(255,214,0,0.18), var(--shadow-inner);
}

.plan-card.nuvem {
  background: linear-gradient(135deg, rgba(255,214,0,0.06), rgba(255,214,0,0.015)), var(--bg-card);
  border-color: rgba(255,214,0,0.2);
}
.plan-card.nuvem::before {
  background: linear-gradient(90deg, transparent, rgba(255,214,0,0.6), transparent);
}

.plan-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--y-grad); color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(255,214,0,0.3);
}

.nuvem-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.18);
  color: var(--y); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
  margin-bottom: 14px;
}

.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--muted); margin-bottom: 18px;
}
.plan-card.featured .plan-name,
.plan-card.nuvem .plan-name { color: var(--y); }

.plan-price {
  display: flex; align-items: flex-start; gap: 2px; margin-bottom: 6px;
}
.plan-currency { font-size: 18px; font-weight: 600; color: var(--muted); margin-top: 10px; }
.plan-amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 5vw, 58px); font-weight: 900; line-height: 1;
  color: var(--text); letter-spacing: -1.5px;
  padding-right: 6px;
}
.plan-card.featured .plan-amount,
.plan-card.nuvem .plan-amount {
  background: var(--y-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-cents { font-size: 20px; font-weight: 700; color: var(--muted); margin-top: 14px; }

.plan-period { font-size: 12px; color: var(--muted2); margin-bottom: 8px; }
.plan-economy {
  display: inline-block;
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.15);
  color: var(--y); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; margin-bottom: 16px;
}

.auto-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,214,0,0.05);
  border: 1px solid rgba(255,214,0,0.13);
  color: var(--y); font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px;
  margin-bottom: 20px; width: fit-content;
}

.plan-sep { height: 1px; background: var(--border); margin: 20px 0; }

.plan-features {
  list-style: none; display: flex;
  flex-direction: column; gap: 11px; margin-bottom: 30px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--muted);
  transition: color 0.25s;
}
.plan-features li::before {
  content: '✓'; color: var(--y); font-weight: 800;
  font-size: 13px; flex-shrink: 0;
  transition: transform 0.2s;
}
.plan-card:hover .plan-features li::before { transform: scale(1.15); }

.btn-buy {
  width: 100%; display: flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 15px; border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 14px;
  cursor: pointer; text-decoration: none; border: none;
  transition: all 0.3s var(--ease-out);
  background: rgba(255,255,255,0.05);
  color: var(--text); border: 1px solid var(--border);
}
.btn-buy:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--border-y); color: var(--y);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-buy.primary {
  background: var(--y-grad); color: #000; border: none;
  box-shadow: 0 6px 24px rgba(255,214,0,0.28);
}
.btn-buy.primary:hover {
  background: linear-gradient(135deg, #FFE033, #FFCC00);
  box-shadow: 0 10px 36px rgba(255,214,0,0.45);
  color: #000;
  transform: translateY(-2px);
}
.btn-buy:active { transform: translateY(0) scale(0.98); }

/* ═══ FEATURES ═══ */
#recursos { background: var(--bg-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px; margin-top: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  transition: all 0.35s var(--ease-out);
}
.feature-card:hover {
  border-color: rgba(255,214,0,0.22);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-inner);
}

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,214,0,0.1), rgba(255,214,0,0.04));
  border: 1px solid rgba(255,214,0,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  transition: transform 0.35s var(--ease-spring);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 15px; margin-bottom: 8px;
}
.feature-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ═══ COMPATIBILIDADE ═══ */
#compatibilidade { background: var(--bg-accent); }

.compat-head { text-align: center; margin-bottom: var(--sp-12); }
.compat-head .label-tag {
  display: inline-block; background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.22); color: var(--y);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: var(--sp-5);
}
.compat-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 900;
  letter-spacing: -1px; margin-bottom: var(--sp-4);
  background: linear-gradient(135deg, #F4F4F7, #D8D8E0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.compat-head p {
  font-size: 16px; color: var(--muted); max-width: 500px;
  margin: 0 auto; line-height: 1.75;
}

.compat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-5); max-width: 960px; margin: 0 auto;
}

.compat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  transition: all 0.3s var(--ease-out);
}
.compat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), var(--shadow-inner); }
.compat-card.is-yes:hover { border-color: rgba(34,197,94,0.3); box-shadow: 0 16px 40px rgba(34,197,94,0.06), var(--shadow-inner); }
.compat-card.is-no:hover { border-color: rgba(239,68,68,0.25); box-shadow: 0 16px 40px rgba(239,68,68,0.06), var(--shadow-inner); }

.compat-card-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.compat-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.compat-card.is-yes .compat-icon { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.28); }
.compat-card.is-no .compat-icon { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.28); }
.compat-card-head span { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px; }

.compat-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.compat-list li {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 14px; color: var(--muted);
  transition: color 0.2s;
}
.compat-list li:hover { color: var(--text); }
.compat-list svg { flex-shrink: 0; }

/* ═══ CONFIANÇA / DEPOIMENTOS ═══ */
#depoimentos {
  background: var(--bg-accent);
  border-top: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px; margin-top: 60px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  transition: all 0.35s var(--ease-out);
}
.trust-card:hover {
  border-color: rgba(255,214,0,0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-inner);
}
.trust-card .feature-icon { margin: 0 auto 16px; }
.trust-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 15px; margin-bottom: 8px;
}
.trust-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ═══ NUVEM PREMIUM ═══ */
#nuvem { background: var(--bg-dark); }

.nuvem-panel {
  background: linear-gradient(135deg, rgba(255,214,0,0.05), rgba(255,214,0,0.01)), var(--bg-card);
  border: 1px solid rgba(255,214,0,0.15);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid; grid-template-columns: 1fr 380px;
  min-width: 0; gap: var(--sp-12);
  align-items: start;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md), var(--shadow-inner);
}
.nuvem-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,0.5), transparent);
}

.nuvem-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.2);
  color: var(--y); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: var(--sp-6);
}

.nuvem-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 900; line-height: 1.08; letter-spacing: -1.2px;
  margin-bottom: var(--sp-8);
  background: linear-gradient(135deg, #F4F4F7, #D8D8E0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nuvem-title em {
  font-style: normal;
  background: var(--y-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nuvem-desc {
  font-size: 15.5px; color: var(--muted); line-height: 1.85;
  margin-bottom: var(--sp-4); max-width: 580px;
}
.nuvem-desc:last-of-type { margin-bottom: var(--sp-10); }
.nuvem-desc strong { color: var(--text); }
.nuvem-desc strong.hl { color: var(--y); }

.nuvem-features {
  display: flex; flex-direction: column; gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.nuvem-feature-item { display: flex; align-items: center; gap: var(--sp-3); transition: transform 0.3s var(--ease-out); }
.nuvem-feature-item:hover { transform: translateX(6px); }
.nuvem-feature-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.nuvem-feature-icon.is-success {
  background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2);
}
.nuvem-feature-item span { font-size: 14px; color: var(--muted); }
.nuvem-feature-item strong { color: var(--text); }

.nuvem-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }

.nuvem-link-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 13px;
  padding: 14px 8px; text-decoration: none;
  transition: color 0.2s, gap 0.3s;
}
.nuvem-link-more:hover { color: var(--y); gap: 10px; }

.nuvem-side { display: flex; flex-direction: column; gap: var(--sp-4); }
.nuvem-side-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--sp-1);
}

.nuvem-price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  position: relative;
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  transition: all 0.35s var(--ease-out);
}
.nuvem-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-inner);
}
.nuvem-price-card.is-highlight {
  background: linear-gradient(135deg, rgba(255,214,0,0.07), rgba(255,214,0,0.01)), var(--bg-card);
  border-color: rgba(255,214,0,0.22);
  box-shadow: 0 0 0 1px rgba(255,214,0,0.05), var(--shadow-sm), var(--shadow-inner);
}

.nuvem-price-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--y-grad); color: #000;
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,214,0,0.3);
}

.nuvem-price-name {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--sp-3);
}
.nuvem-price-card.is-highlight .nuvem-price-name { color: var(--y); margin-top: var(--sp-2); }

.nuvem-price-row { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px; }
.nuvem-price-currency { font-size: 15px; font-weight: 500; color: var(--muted); margin-top: 10px; }
.nuvem-price-amount {
  font-family: 'Outfit', sans-serif; font-size: 50px; font-weight: 800;
  background: var(--y-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; letter-spacing: -1.5px;
}
.nuvem-price-cents { font-size: 16px; font-weight: 500; color: var(--muted); margin-top: 14px; }

.nuvem-price-period { font-size: 12px; color: var(--muted2); margin-bottom: var(--sp-1); }
.nuvem-price-save { font-size: 12px; color: var(--y); font-weight: 600; margin-bottom: var(--sp-4); }

.nuvem-price-buy {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: 12px;
  background: var(--y-grad); color: #000;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 13px;
  text-transform: uppercase; border: none; cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s var(--ease-out);
}
.nuvem-price-buy:hover {
  background: linear-gradient(135deg, #FFE033, #FFCC00);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}
.nuvem-price-buy:active { transform: translateY(0) scale(0.98); }

/* ═══ DOWNLOAD ═══ */
#download { background: var(--bg-accent); }

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 52px; max-width: 920px;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  display: flex; gap: 14px; align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  transition: all 0.35s var(--ease-out);
}
.device-card:hover {
  border-color: rgba(255,214,0,0.25);
  background: linear-gradient(135deg, rgba(255,214,0,0.04), transparent), var(--bg-card);
  transform: translateX(5px);
  box-shadow: var(--shadow-md), var(--shadow-inner);
}

.device-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,214,0,0.1), rgba(255,214,0,0.04));
  border: 1px solid rgba(255,214,0,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}
.device-card:hover .device-icon { transform: scale(1.08); }

.device-text h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 14px; margin-bottom: 3px;
}
.device-text p { font-size: 12px; color: var(--muted); }

.device-tutorial-link {
  display: flex; align-items: center; gap: 5px;
  margin-left: auto; flex-shrink: 0;
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.22);
  color: var(--y); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  white-space: nowrap; text-decoration: none;
  transition: all 0.25s;
}
.device-tutorial-link:hover {
  background: rgba(255,214,0,0.16);
  border-color: rgba(255,214,0,0.4);
  transform: scale(1.05);
}

/* ═══ PASSO A PASSO (SEO) ═══ */
.steps-grid {
  max-width: 1080px; margin-top: var(--sp-12);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  min-width: 0;
  transition: all 0.35s var(--ease-out);
}
.step-card:hover {
  border-color: rgba(255,214,0,0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-inner);
}

.step-card-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.step-card-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,214,0,0.1), rgba(255,214,0,0.04));
  border: 1px solid rgba(255,214,0,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.step-card-head-text { min-width: 0; }
.step-card-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 13px; }
.step-card-sub { font-size: 11px; color: var(--muted); }

.step-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.step-list li {
  display: flex; gap: 10px; font-size: 13.5px; color: var(--muted);
  align-items: flex-start; line-height: 1.55;
}
.step-num {
  background: linear-gradient(135deg, rgba(255,214,0,0.12), rgba(255,214,0,0.06)); color: var(--y);
  font-weight: 800; font-size: 10px; border-radius: 50%;
  width: 20px; height: 20px; min-width: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  border: 1px solid rgba(255,214,0,0.15);
}
.step-list a { color: var(--y); font-weight: 700; text-decoration: none; word-break: break-all; transition: opacity 0.2s; }
.step-list a:hover { opacity: 0.8; }

.step-link-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--sp-4);
  font-size: 12px; font-weight: 700; color: var(--y); text-decoration: none;
  transition: gap 0.3s;
}
.step-link-more:hover { gap: 10px; }
.step-link-more::after { content: '→'; }

.trial-strip-icon { font-size: 28px; }
.trial-strip-title {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 15px;
  color: var(--y); margin-bottom: 4px;
}
.trial-strip-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.trial-strip {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, rgba(255,214,0,0.06), transparent), var(--bg-card);
  border: 1px solid rgba(255,214,0,0.16);
  border-radius: var(--radius-lg); padding: 26px 30px;
  margin-top: 26px; max-width: 900px;
  flex-wrap: wrap; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm), var(--shadow-inner);
}
.trial-strip::before {
  content: ''; position: absolute;
  top:0; left:0; right:0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--y), transparent);
}

/* ═══ FAQ ═══ */
#faq { background: var(--bg-dark); }

.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 11px; margin-top: 52px; }

details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm), var(--shadow-inner);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
details:hover { border-color: rgba(255,214,0,0.15); box-shadow: var(--shadow-md), var(--shadow-inner); }
details[open] {
  border-color: rgba(255,214,0,0.22);
  box-shadow: 0 0 0 1px rgba(255,214,0,0.05), var(--shadow-md), var(--shadow-inner);
}

summary {
  padding: 20px 24px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 15.5px; color: var(--text);
  list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 12px;
  transition: color 0.2s;
}
summary:hover { color: var(--y); }
summary::after {
  content: '+'; color: var(--y); font-size: 24px; flex-shrink: 0;
  display: inline-block; font-weight: 300;
  transition: transform 0.35s var(--ease-spring);
  line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px 20px 24px; padding-top: 16px;
  font-size: 14.5px; color: var(--muted); line-height: 1.75;
  animation: faqIn 0.32s var(--ease-out) both;
  border-top: 1px solid var(--border);
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb-nav {
  padding: 92px 48px 0; max-width: 1200px; margin: 0 auto;
}
.breadcrumb-nav ol {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 6px; font-size: 13px; color: var(--muted);
}
.breadcrumb-nav a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--y); }
.breadcrumb-nav li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--muted2); }
.breadcrumb-nav li[aria-current] { color: var(--y); }

/* ═══ FOOTER ═══ */
footer {
  background: var(--bg-accent);
  border-top: 1px solid rgba(255,214,0,0.08);
  padding: 56px 48px;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer-brand span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 16px; color: var(--y);
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

footer p { font-size: 12px; color: var(--muted2); margin-top: 8px; }

/* ═══ MODALS ═══ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.ativo { display: flex; }

.modal-box {
  background: var(--bg-accent);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); width: 100%; max-width: 600px;
  max-height: 90vh; overflow-y: auto; padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-inner);
  animation: modalIn 0.4s var(--ease-spring) both;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.94) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); font-size: 15px;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.25s; line-height: 1;
}
.modal-close:hover {
  border-color: var(--border-y); color: var(--y);
  background: rgba(255,214,0,0.06);
  transform: rotate(90deg);
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 22px; padding-right: 44px;
}
.modal-video {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 14px; overflow: hidden;
  margin-bottom: 24px; background: #000;
  border: 1px solid var(--border);
}
.modal-video iframe {
  position: absolute; top:0; left:0; width:100%; height:100%;
}
.modal-steps-title {
  font-size: 11px; font-weight: 700; color: var(--y);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.modal-steps { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.modal-steps li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.modal-steps li::before { content: '✓'; color: var(--y); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.modal-steps li a { color: var(--y); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .nuvem-panel { grid-template-columns: 1fr; gap: var(--sp-8); padding: 36px; }
  .nuvem-side { width: 100%; min-width: unset; }
  .nuvem-price-card { padding: var(--sp-5); }
}
@media (max-width: 768px) {
  nav:not(.breadcrumb-nav) { padding: 0 20px; height: 64px; }
  nav.is-scrolled { height: 54px; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu { top: 64px; }
  section { padding: clamp(56px, 8vw, 80px) 20px; }
  footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .breadcrumb-nav { padding: 88px 20px 0; }
}
@media (max-width: 640px) {
  .compat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 20px 64px;
    text-align: center;
    gap: var(--sp-8);
    min-height: auto;
  }
  .hero-badges { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-actions { justify-content: center; }
  .social-badge { text-align: left; }
  .hero-media img { max-width: 100%; width: 100%; border-radius: var(--radius-md); }
}

/* ═══ DESIGN SYSTEM — modal de compra + polimento ═══ */
:root {
  --accent-grad: linear-gradient(90deg, #FFD600 0%, #ff5fa2 55%, #a855f7 100%);
  --wa: #25D366;
}

.buy-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--bg-accent);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px 28px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-inner);
  animation: buyIn 0.45s var(--ease-spring) both;
}
@keyframes buyIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.buy-modal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent-grad);
}

.buy-close {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 15px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.buy-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: rotate(90deg);
}

.buy-label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: #7e7e8f;
  margin-bottom: 12px;
  padding-right: 48px;
}

.buy-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,214,0,0.1);
  border: 1px solid rgba(255,214,0,0.4);
  color: var(--y);
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  margin-bottom: 28px;
}

.buy-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 800;
  color: #fff; letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.buy-sub {
  font-size: 14px; color: var(--muted);
  line-height: 1.5; margin-bottom: 24px;
}

.buy-options { display: flex; flex-direction: column; gap: 13px; }

.buy-opt {
  display: flex; align-items: center; gap: 15px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 17px 17px 17px 19px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.buy-opt::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.25s;
}
.buy-opt.is-primary::before { background: var(--y); }
.buy-opt.is-wa::before { background: transparent; }
.buy-opt.is-wa:hover::before { background: var(--wa); }

.buy-opt:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  transform: translateX(4px);
}
.buy-opt:active { transform: translateX(1px) scale(0.995); }

.buy-opt-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.buy-opt.is-primary .buy-opt-icon {
  background: rgba(255,214,0,0.12);
  border: 1px solid rgba(255,214,0,0.22);
  color: var(--y);
}
.buy-opt.is-wa .buy-opt-icon {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.24);
  color: var(--wa);
}

.buy-opt-text { flex: 1; min-width: 0; }
.buy-opt-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #fff; margin-bottom: 3px;
}
.buy-opt-desc {
  font-size: 12.5px; color: var(--muted);
  line-height: 1.45;
}

.buy-opt-arrow {
  color: #55556a; flex-shrink: 0;
  transition: color 0.25s, transform 0.25s var(--ease-out);
}
.buy-opt:hover .buy-opt-arrow { color: var(--muted); transform: translateX(4px); }

.buy-foot {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  font-size: 11.5px; color: #55556a;
  margin-top: 22px; text-align: center;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .buy-modal { padding: 28px 20px 20px; border-radius: 20px; }
  .buy-title { font-size: 22px; }
  .buy-opt { padding: 15px; gap: 12px; }
  .buy-opt-icon { width: 44px; height: 44px; border-radius: 12px; }
  .buy-foot { font-size: 11px; }
}

/* ═══ SOCIAL PROOF BADGE ═══ */
.social-badge {
  display: inline-flex; align-items: center; gap: 15px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 14px 24px 14px 16px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  transition: all 0.35s var(--ease-out);
}
.social-badge::before {
  content: '';
  position: absolute; top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,0.5), transparent);
}
.social-badge:hover {
  border-color: rgba(255,214,0,0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-badge-avatars { display: flex; flex-shrink: 0; }
.social-badge-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #0b0b0f;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 13px;
  color: #1a1600;
  background: linear-gradient(145deg, #FFD600, #e0a800);
  margin-left: -12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.social-badge-avatar:first-child { margin-left: 0; }

.social-badge-info { min-width: 0; }

.social-badge-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 3px;
}
.social-badge-stars {
  display: inline-flex; align-items: center; gap: 2px;
  color: var(--y); line-height: 0;
}
.social-badge-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 15px;
  color: #fff; letter-spacing: -0.2px;
}

.social-badge-text {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.45;
}
.social-badge-text strong {
  color: var(--text); font-weight: 700;
}

@media (max-width: 860px) {
  .social-badge { justify-content: center; }
}
@media (max-width: 480px) {
  .social-badge {
    gap: 12px;
    padding: 13px 18px 13px 14px;
    border-radius: 16px;
    width: 100%;
  }
  .social-badge-avatar { width: 34px; height: 34px; font-size: 12px; margin-left: -11px; }
  .social-badge-score { font-size: 14px; }
  .social-badge-text { font-size: 12.5px; }
}

/* ═══ REVELAÇÃO EM SCROLL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

:where(.plans-grid, .features-grid, .trust-grid, .devices-grid, .steps-grid, .compat-grid) > .reveal:nth-child(1) { transition-delay: 0ms; }
:where(.plans-grid, .features-grid, .trust-grid, .devices-grid, .steps-grid, .compat-grid) > .reveal:nth-child(2) { transition-delay: 80ms; }
:where(.plans-grid, .features-grid, .trust-grid, .devices-grid, .steps-grid, .compat-grid) > .reveal:nth-child(3) { transition-delay: 160ms; }
:where(.plans-grid, .features-grid, .trust-grid, .devices-grid, .steps-grid, .compat-grid) > .reveal:nth-child(4) { transition-delay: 240ms; }
:where(.plans-grid, .features-grid, .trust-grid, .devices-grid, .steps-grid, .compat-grid) > .reveal:nth-child(5) { transition-delay: 320ms; }
:where(.plans-grid, .features-grid, .trust-grid, .devices-grid, .steps-grid, .compat-grid) > .reveal:nth-child(6) { transition-delay: 400ms; }

/* ═══ CTA STICKY MOBILE ═══ */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 180;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(10,10,14,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.07);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  background: var(--y-grad); color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 15px;
  border-radius: 14px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(255,214,0,0.35);
  transition: transform 0.2s;
}
.sticky-cta a:active { transform: scale(0.98); }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ═══ POLIMENTO GERAL ═══ */
.plan-card, .feature-card, .device-card, .trust-card, .compat-card, .step-card {
  transition: transform 0.35s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.35s;
}
.plan-card:hover { box-shadow: var(--shadow-lg), var(--shadow-inner); }

.btn-buy, .btn-primary, .btn-ghost, .nav-cta {
  transition: all 0.3s var(--ease-out);
}
.btn-buy:active, .btn-primary:active, .nav-cta:active { transform: translateY(0) scale(0.98); }

/* acessibilidade — foco visível por teclado */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--y);
  outline-offset: 3px;
  border-radius: 8px;
}

/* alvos de toque confortáveis no mobile */
@media (max-width: 768px) {
  .btn-buy, .btn-primary, .btn-ghost, .buy-opt { min-height: 50px; }
  summary { padding: 18px 20px; }
  .faq-answer { padding: 16px 20px 18px; }
}

/* respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══ AJUSTES MOBILE FINOS ═══ */
@media (max-width: 540px) {
  /* Garante 1 coluna nos grids em telas pequenas */
  .plans-grid,
  .features-grid,
  .trust-grid,
  .devices-grid,
  .steps-grid { grid-template-columns: 1fr !important; }

  /* Planos: economia de espaço vertical */
  .plan-card { padding: 26px 22px; }

  /* Nuvem panel compacto */
  .nuvem-panel { padding: 26px; }

  /* Section padding menor */
  section { padding: 56px 18px; }

  /* Hero: tamanhos um pouco menores */
  .hero-title { font-size: clamp(32px, 8vw, 42px); letter-spacing: -1px; }
  .hero-desc { font-size: 15px; }

  /* CTAs: full-width empilhados */
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions > * { width: 100%; justify-content: center; }

  /* Footer grid empilha */
  footer { padding: 36px 18px; }

  /* Modal de compra: padding reduzido */
  .buy-modal { border-radius: 22px; }

  /* Compat grid 1 coluna já via 640px, reforçar */
  .compat-grid { grid-template-columns: 1fr !important; }

  /* Reduce nav title visibility issue: logo text hidden? mantém,_ok */
}

@media (max-width: 380px) {
  /* Telas muito pequenas: title ainda menor */
  .hero-title { font-size: 30px; }
  .nuvem-title { font-size: 30px; }
  h2.section-title { font-size: 26px; }
  /* Plan badge não sobrepor */
  .plan-badge { position: static; display: inline-block; margin-bottom: 10px; top: auto; right: auto; }
}

/* ═══ SOBRESCREVER ESTILOS INLINE DAS PÁGINAS DE TUTORIAL/NUVEM ═══ */
/* As subpáginas usam style="padding:40px 48px" inline que quebra no mobile.
   Aqui forçamos padding responsivo via !important. */
@media (max-width: 768px) {
  section[style*="padding:40px"],
  section[style*="padding: 40px"],
  section[style*="padding-top:0"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  /* Section com padding-top:0 dentro da estrutura das tutoriais */
  section[style*="padding-top:0"] {
    padding-top: 0 !important;
    padding-bottom: 40px !important;
  }
  /* Container interno */
  .container[style*="max-width:900px"] {
    max-width: 100% !important;
  }
  /* Listas de passos: max-width 100% no mobile */
  ol[style*="max-width:640px"] {
    max-width: 100% !important;
  }
  /* Video iframe: 100% no mobile */
  .modal-video[style*="max-width:700px"] {
    max-width: 100% !important;
  }
  /* Headings das tutoriais: ajuste de clamp já ok, mas garantir */
  h1[style*="font-size:clamp"] {
    font-size: clamp(26px, 7vw, 38px) !important;
  }
}