/* ==========================================================================
   BOXEATS — Portal Premium
   Produto da Reddes Tecnologia | reddes.com.br
   ========================================================================== */

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

:root {
  /* Paleta principal */
  --accent: #FF6B35;
  --accent-light: #FF8C42;
  --accent-glow: rgba(255, 107, 53, 0.35);
  --accent-soft: rgba(255, 107, 53, 0.10);

  /* Fundos */
  --bg-primary: #0A0A0F;
  --bg-secondary: #0E0E16;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-card-border: rgba(255, 255, 255, 0.06);

  /* Texto */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.40);

  /* Espaçamento */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   2. TIPOGRAFIA
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 100px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   4. BACKGROUND PREMIUM — GLOBAL
   Fundo altamente nichado, tecnológico, food service
   -------------------------------------------------------------------------- */

/* Grade base sutil (painéis digitais / tech) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* Glow ambiente — laranja sutil no topo */
body::after {
  content: '';
  position: fixed;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- LOGO NA NAVBAR ---- */
/* Substitua o arquivo /img/logo.svg para trocar a logo */
.navbar-logo img {
  height: 38px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

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

.navbar-links a:hover::after {
  width: 100%;
}

/* Botão CTA na navbar */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.navbar-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.navbar-cta::after {
  display: none !important;
}

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  z-index: 1;
}

/* Background hero: orbs de luz premium */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-reddes {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-reddes a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.hero-reddes a:hover {
  color: var(--accent-light);
}

/* Hero visual — mockups */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

/* Glow atrás dos mockups */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

/* Molduras para os mockups do hero */
.hero-device {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-spring);
}

.hero-device:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Mockup Totem — SUBSTITUIR: /img/mockup-totem.jpg */
.hero-device--totem {
  width: 180px;
  height: 320px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Mockup TV — SUBSTITUIR: /img/mockup-tv.jpg */
.hero-device--tv {
  width: 340px;
  height: 210px;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-radius: 12px;
}

/* Mockup Tablet — SUBSTITUIR: /img/mockup-tablet.jpg */
.hero-device--tablet {
  width: 200px;
  height: 280px;
  right: 0;
  bottom: 10%;
  z-index: 2;
}

.hero-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder visual dos dispositivos (antes de inserir imagens reais) */
.device-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.12);
}

.device-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
  fill: var(--accent);
}

.device-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. BOTOES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow:
    0 4px 24px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 40px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 44px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO "O QUE É"
   -------------------------------------------------------------------------- */
.about {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 12px;
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.about-feature-item p {
  font-size: 0.92rem;
  margin: 0;
}

/* Visual lateral — composição decorativa */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about-visual-card {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.06), rgba(255, 107, 53, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.06) 0%, transparent 50%);
}

/* Diagrama de integração dentro do card */
.integration-diagram {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: 40px;
}

.integration-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.integration-node-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-node-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integration-node span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.integration-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.integration-arrow svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 107, 53, 0.3);
  fill: none;
  stroke-width: 1.5;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO "COMO FUNCIONA" — Cards Premium
   -------------------------------------------------------------------------- */
.how-it-works {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

/* Divisor de seção sutil */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

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

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.how-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-4px);
}

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

.how-card-number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

/* Área de imagem do card — SUBSTITUIR as imagens dentro dos cards */
.how-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.how-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.how-card-image img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 14px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.3));
  transform: scale(1.01);
  transition: transform var(--transition-smooth);
}

.how-card:hover .how-card-image img {
  transform: scale(1.04);
}

.how-card-image--tv img {
  object-position: center 46%;
}

.how-card h3 {
  margin-bottom: 12px;
}

.how-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.how-card-benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 100px;
}

.how-card-benefit svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
}

/* --------------------------------------------------------------------------
   10. SEÇÃO "BENEFÍCIOS"
   -------------------------------------------------------------------------- */
.benefits {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

/* Textura de fundo sutil */
.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255, 140, 66, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.benefit-item {
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
  text-align: center;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 14px;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. SEÇÃO "PARA QUEM É"
   -------------------------------------------------------------------------- */
.audience {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

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

.audience-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  transition: var(--transition-smooth);
}

.audience-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateX(4px);
}

.audience-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 10px;
}

.audience-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.audience-item p {
  font-size: 0.82rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO "PLANOS"
   -------------------------------------------------------------------------- */
.pricing {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Glow do card de pricing */
.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  border-radius: 24px 24px 0 0;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.pricing-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 28px;
}

.pricing-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.pricing-price {
  margin-bottom: 12px;
}

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

.pricing-price .amount {
  font-size: 3.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-price-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   13. SEÇÃO "POR QUE ESCOLHER"
   -------------------------------------------------------------------------- */
.why-choose {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

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

.why-item {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  transition: var(--transition-smooth);
}

.why-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 53, 0.1);
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 12px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   14. SEÇÃO "REDDES TECNOLOGIA"
   -------------------------------------------------------------------------- */
.client-area {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.client-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.client-area::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: 10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.client-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.client-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
  pointer-events: none;
}

.client-card--featured {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.client-card-visual,
.client-card--empty {
  position: relative;
  z-index: 1;
}

.client-card-visual {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 107, 53, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 107, 53, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
}

.client-card-visual img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}

.client-card-placeholder {
  display: none;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.client-card-visual.is-empty .client-card-placeholder {
  display: block;
}

.client-card-visual.is-empty {
  align-items: center;
  justify-content: center;
}

.client-card-body {
  position: relative;
  z-index: 1;
}

.client-card-kicker,
.client-card-empty-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.18);
  margin-bottom: 16px;
}

.client-card-body h3,
.client-card--empty h3 {
  margin-bottom: 10px;
}

.client-card-body code,
.client-card-placeholder strong {
  color: var(--text-primary);
}

.client-card--empty {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.client-card[hidden] {
  display: none !important;
}

.reddes {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.reddes-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  flex-direction: column;
}

.reddes-inner h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.reddes-inner p {
  max-width: 560px;
  font-size: 0.95rem;
}

.reddes-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
  transition: var(--transition-fast);
}

.reddes-link:hover {
  gap: 12px;
  color: var(--accent-light);
}

.reddes-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* --------------------------------------------------------------------------
   15. CTA FINAL
   -------------------------------------------------------------------------- */
.final-cta {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

/* Background glow */
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta > .container > p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 16px;
}

.final-cta-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.final-cta-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.final-cta .btn {
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   16. RODAPÉ
   -------------------------------------------------------------------------- */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

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

.footer-brand img {
  height: 28px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-brand a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   17. ANIMAÇÕES (Scroll reveal)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  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; }

/* --------------------------------------------------------------------------
   18. RESPONSIVO
   -------------------------------------------------------------------------- */

/* Tablets */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

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

  .hero-visual {
    min-height: 340px;
    margin-top: 20px;
  }

  .hero-device--totem {
    width: 140px;
    height: 250px;
    left: 5%;
  }

  .hero-device--tv {
    width: 280px;
    height: 175px;
  }

  .hero-device--tablet {
    width: 160px;
    height: 224px;
    right: 5%;
  }

  .client-list {
    grid-template-columns: 1fr;
  }

  .client-card--featured {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

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

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Navbar mobile */
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 16px;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-device--totem {
    width: 110px;
    height: 200px;
  }

  .hero-device--tv {
    width: 220px;
    height: 138px;
  }

  .hero-device--tablet {
    width: 130px;
    height: 182px;
  }

  .client-card {
    padding: 24px;
  }

  .client-card-visual {
    min-height: 210px;
  }

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

  .pricing-card {
    padding: 40px 28px;
  }

  .pricing-price .amount {
    font-size: 2.8rem;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

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

  .integration-diagram {
    flex-direction: column;
    gap: 20px;
  }

  .integration-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .client-card {
    padding: 20px;
  }

  .client-card-visual {
    min-height: 180px;
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   19. PÁGINA "COMO FUNCIONA" — Manual de orientação do usuário
   Mantém a identidade premium do portal: dark, accent laranja, cards suaves.
   Adiciona cores de status: verde (pronto), laranja (preparo), vermelho (alerta).
   ========================================================================== */

:root {
  --status-ready: #22C55E;
  --status-ready-soft: rgba(34, 197, 94, 0.12);
  --status-ready-glow: rgba(34, 197, 94, 0.35);

  --status-preparing: var(--accent);
  --status-preparing-soft: var(--accent-soft);

  --status-pending: rgba(255, 255, 255, 0.6);
  --status-pending-soft: rgba(255, 255, 255, 0.06);

  --status-alert: #EF4444;
  --status-alert-soft: rgba(239, 68, 68, 0.12);
}

/* Link ativo na navbar (página atual) */
.navbar-links a.active {
  color: var(--text-primary);
}
.navbar-links a.active::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   COMO FUNCIONA — HERO
   -------------------------------------------------------------------------- */
.cf-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.cf-hero::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cf-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.cf-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cf-hero-content h1 {
  margin-bottom: 24px;
}

.cf-hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf-hero-description {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.cf-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cf-hero-flow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.cf-hero-flow-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cf-hero-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.cf-hero-flow-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.cf-hero-flow-arrow {
  color: var(--accent);
  font-weight: 700;
  opacity: 0.6;
}

/* Imagem principal do hero */
.cf-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-hero-visual::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.cf-hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.06), rgba(255, 107, 53, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  z-index: 1;
}

.cf-hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   COMO FUNCIONA — BLOCOS (1, 2, 3)
   -------------------------------------------------------------------------- */
.cf-block {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.cf-block--alt {
  background: var(--bg-secondary);
}

.cf-block--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255, 140, 66, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cf-block:not(.cf-block--alt)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.cf-block-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.cf-block-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 100px;
}

.cf-block-header h2 {
  margin-bottom: 18px;
}

.cf-block-header p {
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   ETAPAS DO TOTEM (Bloco 1)
   -------------------------------------------------------------------------- */
.cf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.cf-step {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cf-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.cf-step:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 53, 0.15);
  transform: translateY(-4px);
}

.cf-step:hover::before {
  opacity: 1;
}

.cf-step--highlight {
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02));
  border-color: rgba(255, 107, 53, 0.18);
}

.cf-step--highlight::before {
  opacity: 1;
}

.cf-step-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cf-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-spring);
}

.cf-step:hover .cf-step-image img {
  transform: scale(1.03);
}

.cf-step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.cf-step-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.cf-step-body p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   SPOTLIGHT — Blocos 2 e 3 (cozinha e TV)
   -------------------------------------------------------------------------- */
.cf-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cf-spotlight--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.cf-spotlight--reverse .cf-spotlight-image {
  order: 2;
}

.cf-spotlight--reverse .cf-spotlight-body {
  order: 1;
}

.cf-spotlight-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.06), rgba(255, 107, 53, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cf-spotlight-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cf-spotlight-body h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.cf-spotlight-body p {
  margin-bottom: 28px;
}

/* Lista de status (cozinha + TV) */
.cf-status-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cf-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: var(--transition-smooth);
}

.cf-status:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.cf-status-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
  position: relative;
}

.cf-status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0.3;
}

.cf-status strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.cf-status span:last-child {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.cf-status--pending {
  border-color: var(--status-pending-soft);
}

.cf-status--pending .cf-status-dot {
  background: var(--status-pending);
}

.cf-status--pending .cf-status-dot::after {
  background: var(--status-pending);
}

.cf-status--preparing {
  border-color: rgba(255, 107, 53, 0.18);
  background: var(--accent-soft);
}

.cf-status--preparing .cf-status-dot {
  background: var(--status-preparing);
  box-shadow: 0 0 12px var(--accent-glow);
}

.cf-status--preparing .cf-status-dot::after {
  background: var(--status-preparing);
  animation: cf-pulse 1.8s ease-in-out infinite;
}

.cf-status--ready {
  border-color: rgba(34, 197, 94, 0.22);
  background: var(--status-ready-soft);
}

.cf-status--ready .cf-status-dot {
  background: var(--status-ready);
  box-shadow: 0 0 12px var(--status-ready-glow);
}

.cf-status--ready .cf-status-dot::after {
  background: var(--status-ready);
  animation: cf-pulse 1.8s ease-in-out infinite;
}

.cf-status--ready strong {
  color: var(--status-ready);
}

@keyframes cf-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.6); }
}

/* --------------------------------------------------------------------------
   AREA ADMINISTRATIVA
   -------------------------------------------------------------------------- */
.cf-admin {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.cf-admin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.cf-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.cf-admin-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
  padding: 24px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cf-admin-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.cf-admin-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 53, 0.12);
  transform: translateY(-4px);
}

.cf-admin-card:hover::before {
  opacity: 1;
}

.cf-admin-card-image {
  position: relative;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: rgba(255, 255, 255, 0.02);
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.28);
}

.cf-admin-card-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  padding: 18px;
}

.cf-admin-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0) 35%, rgba(10, 10, 15, 0.28) 100%);
  pointer-events: none;
}

.cf-admin-card-image-path {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cf-admin-card-body {
  position: relative;
  z-index: 1;
}

.cf-admin-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.18);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cf-admin-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.cf-admin-card-body p {
  font-size: 0.96rem;
  line-height: 1.72;
}

.cf-admin-card-body p + p {
  margin-top: 14px;
}

.cf-admin-device-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.cf-admin-device-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cf-admin-device-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cf-admin-device-item span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   SUPORTE DA AREA ADMINISTRATIVA
   -------------------------------------------------------------------------- */
.cf-admin-support {
  margin-top: 36px;
  padding: 32px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 107, 53, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.24);
}

.cf-admin-support-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.cf-admin-support-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.16);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cf-admin-support-header h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.cf-admin-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.cf-admin-support-card {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cf-admin-support-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.cf-admin-support-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  word-break: break-word;
  transition: color var(--transition-fast);
}

.cf-admin-support-link:hover {
  color: var(--accent-light);
}

.cf-admin-support-notes {
  display: grid;
  gap: 14px;
}

.cf-admin-support-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cf-admin-support-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cf-admin-support-note span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.cf-admin-support-note--emergency {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
}

/* --------------------------------------------------------------------------
   RESUMO DO FLUXO
   -------------------------------------------------------------------------- */
.cf-flow-section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.cf-flow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cf-flow-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.cf-flow-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
}

.cf-flow-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
}

.cf-flow-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
}

.cf-flow-icon--01 { background: linear-gradient(145deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05)); }
.cf-flow-icon--02 { background: linear-gradient(145deg, rgba(255, 140, 66, 0.15), rgba(255, 140, 66, 0.05)); }
.cf-flow-icon--03 { background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.06)); border-color: rgba(34, 197, 94, 0.25); }
.cf-flow-icon--03 svg { stroke: var(--status-ready); }

.cf-flow-step {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 6px;
}

.cf-flow-node h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cf-flow-node p {
  font-size: 0.88rem;
  margin: 0;
}

.cf-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  flex-shrink: 0;
  align-self: center;
}

.cf-flow-arrow svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   BENEFÍCIOS DA PÁGINA COMO FUNCIONA
   -------------------------------------------------------------------------- */
.cf-benefits {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.cf-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

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

.cf-benefit {
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  transition: var(--transition-smooth);
  text-align: center;
}

.cf-benefit:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 53, 0.12);
  transform: translateY(-4px);
}

.cf-benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.14);
  border-radius: 14px;
}

.cf-benefit-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
}

.cf-benefit h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cf-benefit p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   RESPONSIVO — COMO FUNCIONA
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .cf-hero {
    padding: 130px 0 70px;
  }

  .cf-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .cf-hero-content {
    max-width: 640px;
    margin: 0 auto;
  }

  .cf-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .cf-hero-actions,
  .cf-hero-flow {
    justify-content: center;
  }

  .cf-hero-image-frame {
    max-width: 360px;
    aspect-ratio: 3/4;
  }

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

  .cf-admin-grid {
    grid-template-columns: 1fr;
  }

  .cf-admin-support-grid {
    grid-template-columns: 1fr;
  }

  .cf-spotlight,
  .cf-spotlight--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cf-spotlight--reverse .cf-spotlight-image {
    order: 1;
  }

  .cf-spotlight--reverse .cf-spotlight-body {
    order: 2;
  }

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

  .cf-flow-diagram {
    padding: 32px 24px;
  }

  .cf-flow-icon {
    width: 64px;
    height: 64px;
  }

  .cf-flow-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .cf-hero {
    padding: 110px 0 50px;
  }

  .cf-hero-flow {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 6px;
  }

  .cf-hero-image-frame {
    max-width: 300px;
  }

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

  .cf-step-image {
    aspect-ratio: 16/10;
  }

  .cf-admin-card-image {
    min-height: 230px;
  }

  .cf-admin-support {
    padding: 28px 24px;
  }

  .cf-flow-diagram {
    flex-direction: column;
    gap: 16px;
    padding: 32px 20px;
  }

  .cf-flow-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .cf-flow-arrow svg {
    width: 32px;
    height: 32px;
  }

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

  .cf-spotlight-body h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .cf-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cf-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cf-step {
    padding: 20px;
  }

  .cf-admin-card {
    padding: 20px;
  }

  .cf-admin-support {
    padding: 24px 20px;
  }

  .cf-admin-card-image-path {
    left: 12px;
    bottom: 12px;
  }

  .cf-status {
    padding: 14px 16px;
  }
}
