:root {
  --bg: #06110f;
  --bg-soft: #0b1b18;
  --bg-card: rgba(10, 23, 20, 0.82);
  --bg-card-strong: rgba(12, 27, 24, 0.94);
  --bg-glass: rgba(255, 255, 255, 0.05);

  --text: #f4fffc;
  --text-soft: #c6ddd7;
  --text-muted: #9fb8b1;

  --primary: #00f5c3;
  --primary-strong: #00d9ab;
  --primary-dark: #032d24;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(0, 245, 195, 0.22);

  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.24);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.18);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1180px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #06110f;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(5, 11, 10, 0.76), rgba(5, 11, 10, 0.88)),
    url('../imagens/bgindex.jpg') center center / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 245, 195, 0.09), transparent 24%),
    radial-gradient(circle at 85% 22%, rgba(0, 245, 195, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(6, 17, 15, 0.15), rgba(6, 17, 15, 0.38));
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 17, 15, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
  white-space: nowrap;
}

.logo:hover {
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.97rem;
  font-weight: 500;
  transition: color var(--transition), opacity var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(0, 245, 195, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(0, 245, 195, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(0, 245, 195, 0.25);
  background: rgba(255, 255, 255, 0.09);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover {
  border-color: rgba(0, 245, 195, 0.35);
  color: var(--primary);
}

.btn-large {
  min-height: 56px;
  padding: 0 26px;
  font-size: 1rem;
}

.full-width {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 32px;
}

.hero-bg,
.hero-overlay {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 36px;
}

.hero-content {
  max-width: 690px;
}

.hero-tag,
.section-kicker,
.plan-tag,
.insight-badge,
.dashboard-mini-label,
.panel-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 245, 195, 0.10);
  border: 1px solid rgba(0, 245, 195, 0.18);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-tag {
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 12ch;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--primary);
}

.hero-description {
  margin: 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-item {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(9, 22, 19, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.proof-item span {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  width: 100%;
  max-width: 540px;
  background: linear-gradient(180deg, rgba(13, 28, 25, 0.95), rgba(8, 18, 16, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-title {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-body {
  padding: 20px;
  display: grid;
  gap: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.chart-card,
.insight-card,
.step-card,
.benefit-card,
.panel-card,
.plan-card,
.proof-box,
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.metric-card {
  padding: 16px;
  border-radius: 18px;
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.metric-card strong {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.35;
}

.chart-card {
  padding: 18px;
  border-radius: 22px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.chart-header span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.chart-header strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.bars {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.bar {
  flex: 1;
  min-width: 0;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  transition: transform var(--transition), opacity var(--transition);
}

.bar:hover {
  transform: translateY(-4px);
}

.bar.active {
  background: linear-gradient(180deg, rgba(0, 245, 195, 0.95), rgba(0, 245, 195, 0.22));
  box-shadow: 0 12px 24px rgba(0, 245, 195, 0.16);
}

.insight-card {
  padding: 18px;
  border-radius: 20px;
}

.insight-badge {
  margin-bottom: 12px;
}

.insight-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* MARCAS */
.brands {
  position: relative;
  z-index: 2;
  margin-top: -8px;
  padding: 0 0 16px;
}

.brands-inner {
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(9, 21, 19, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.brand-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 600;
}

/* SEÇÕES */
.section {
  padding: 84px 0;
}

.section-dark {
  background:
    radial-gradient(circle at center, rgba(0, 245, 195, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(11, 27, 24, 0.78), rgba(8, 20, 18, 0.92));
}

/* remove o fundo escuro da seção benefícios */
.section-beneficios {
  background: transparent;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2,
.product-content h2,
.contact-content h2,
.proof-box h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-header p,
.product-content p,
.contact-content p,
.proof-box p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* COMO FUNCIONA */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  padding: 26px;
  border-radius: 24px;
  transition: transform var(--transition), border-color var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(0, 245, 195, 0.12);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.98rem;
}

.step-card h3,
.benefit-card h3,
.plan-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.step-card p,
.benefit-card p,
.plan-card li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* BENEFÍCIOS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  padding: 24px;
  border-radius: 24px;
  min-height: 100%;
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

/* =========================
   DEMONSTRAÇÃO 3D FIXA
   ========================= */
#demonstracao-3d .section-header {
  max-width: 860px;
}

.showcase-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.showcase-3d-card {
  background: linear-gradient(180deg, rgba(13, 28, 25, 0.94), rgba(8, 18, 16, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  overflow: hidden;
}

.showcase-3d-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.showcase-3d-top h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.showcase-3d-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 245, 195, 0.10);
  border: 1px solid rgba(0, 245, 195, 0.18);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.showcase-3d-frame {
  position: relative;
  min-height: 380px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-3d-scene {
  width: 100%;
  height: 350px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #00ffd0;
  box-shadow:
    0 0 0 12px rgba(190, 190, 190, 0.72) inset,
    0 0 24px rgba(0, 255, 208, 0.55);
  background: #17191d;
  position: relative;
}

.showcase-3d-scene::before {
  content: "Janela 3D";
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dffcf6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  pointer-events: none;
}

/* PAINEL */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  line-height: 1.7;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(0, 245, 195, 0.08);
}

.product-panel {
  display: flex;
}

.panel-card {
  width: 100%;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 28, 24, 0.96), rgba(9, 21, 19, 0.92));
}

.panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.panel-head strong {
  color: var(--text);
  font-size: 1.05rem;
}

.panel-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-line span {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.panel-line strong {
  color: var(--text);
  font-size: 1.02rem;
  text-align: right;
}

.panel-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-note span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 700;
}

.panel-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* PROVA */
.section-proof {
  padding-top: 18px;
  padding-bottom: 18px;
}

.proof-box {
  padding: 28px 30px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

/* PLANOS */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  padding: 26px;
  border-radius: 28px;
  position: relative;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 195, 0.25);
}

.plan-card.featured {
  border-color: rgba(0, 245, 195, 0.34);
  box-shadow: 0 18px 44px rgba(0, 245, 195, 0.10);
}

.plan-tag {
  margin-bottom: 14px;
}

.plan-price {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
}

.plan-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

/* CONTATO */
.contact-box {
  padding: 34px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.96);
  color: #17322c;
  padding: 16px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: #6a847d;
}

input:focus,
textarea:focus {
  border-color: rgba(0, 217, 171, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 245, 195, 0.10);
}

textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 18px;
}

/* MODAL */
.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.modal-content {
  width: min(100%, 440px);
  background: #222226;
  border: 1px solid rgba(0, 245, 195, 0.18);
  border-radius: 22px;
  padding: 34px 22px 28px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(0, 245, 195, 0.06),
    0 0 28px rgba(0, 245, 195, 0.20),
    0 12px 40px rgba(0, 0, 0, 0.38);
}

.titulo-modal {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 2.3rem);
  line-height: 1.1;
  font-weight: 800;
}

.texto-modal {
  margin: 0 0 22px;
  color: #d3d3d3;
  font-size: 1.02rem;
  line-height: 1.45;
}

/* BOTÃO MODAL COM VÍDEO ANTIGO */
.botao-video {
  position: relative;
  width: 100%;
  height: 55px;
  margin: 12px 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.botao-video video,
.botao-video .video-fundo-botao {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.botao-video button {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
  transition: color .3s ease, filter .3s ease;
  animation: glow 2s ease-in-out infinite;
}

.botao-video:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
}

.botao-video:hover button {
  color: #ffffff;
  filter: brightness(1.3);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 8px rgba(0, 255, 200, 0.2);
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 255, 200, 0.6);
  }
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 200, 0.2);
  }
}

/* WHATSAPP ANTIGO */
.whatsapp-fixo {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
}

.whatsapp-conteudo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.88);
  border: 1.8px solid #00f5c3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fixo:hover .whatsapp-conteudo {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: #25d366;
  padding: 5px;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

.whatsapp-texto {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* FOOTER */
.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(6, 17, 15, 0.88);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner span {
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1300;
  max-width: 380px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(7, 18, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--primary);
}

.cookie-banner button {
  margin-top: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--primary-dark);
  font-weight: 800;
  cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .hero-grid,
  .product-grid,
  .contact-box,
  .proof-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 26px 0 10px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .dashboard-card {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-3d-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-proof,
  .steps-grid,
  .benefits-grid,
  .plans-grid,
  .metric-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .brands-inner,
  .contact-box,
  .proof-box,
  .panel-card,
  .plan-card,
  .step-card,
  .benefit-card,
  .showcase-3d-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .showcase-3d-frame {
    min-height: 340px;
  }

  .showcase-3d-scene {
    height: 310px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav {
    gap: 12px 14px;
  }

  .nav a {
    font-size: 0.93rem;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-description,
  .section-header p,
  .product-content p,
  .contact-content p,
  .proof-box p {
    font-size: 1rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-header h2,
  .product-content h2,
  .contact-content h2,
  .proof-box h2 {
    font-size: 2rem;
  }

  .dashboard-top,
  .dashboard-body,
  .brands-inner,
  .proof-box,
  .contact-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .chart-card,
  .metric-card,
  .insight-card,
  .step-card,
  .benefit-card,
  .plan-card,
  .panel-card,
  .showcase-3d-card {
    border-radius: 20px;
  }

  .showcase-3d-frame {
    min-height: 300px;
    padding: 10px;
  }

  .showcase-3d-scene {
    height: 270px;
    box-shadow:
      0 0 0 8px rgba(190, 190, 190, 0.72) inset,
      0 0 20px rgba(0, 255, 208, 0.45);
  }

  .botao-video {
    height: 52px;
  }

  .botao-video button {
    font-size: 1.2rem;
  }

  .whatsapp-fixo {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-conteudo {
    min-height: 52px;
    padding: 5px 12px 5px 7px;
    gap: 9px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .whatsapp-texto {
    font-size: 0.98rem;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 80px;
    max-width: none;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

.bars-profissional {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 190px;
  margin-top: 10px;
  padding-bottom: 6px;
}

.bar-group {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.bar-group .bar {
  flex: 0 0 auto;
  width: 100%;
  max-width: 42px;
  min-height: 20px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.12));
}

.bar-group .bar.active {
  background: linear-gradient(180deg, #19e6c0, #0aa88d);
  box-shadow: 0 0 18px rgba(25, 230, 192, 0.25);
}

.bar-time {
  font-size: 0.9rem;
  color: #dce7e3;
  font-weight: 600;
  line-height: 1;
}

.chart-summary {
  margin-top: 10px;
  color: #ffffff;
  font-size: 0.95rem;
}