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

:root {
  /* Verde primário BitSac */
  --green: #06e8e1;
  --green-dark: #06e8e1;
  --green-glow: rgba(6, 232, 225, 0.18);

  /* Teal secundário BitSac */
  --teal: #16c5c4;
  --teal-dark: #0fa8a7;
  --teal-glow: rgba(22, 197, 196, 0.18);

  /* Fundos */
  --dark: #131820;
  --dark2: #1a1d24;
  --dark3: #1e2228;
  --card: #1e2228;
  --card2: #242830;

  /* Bordas */
  --border: rgba(22, 197, 196, 0.12);
  --border2: rgba(6, 232, 225, 0.12);

  /* Textos */
  --text: #e4eef4;
  --muted: #6b8a9a;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.gtm-noscript {
  display: none;
  visibility: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 197, 196, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  height: 52px;
  width: auto;
  display: block;
}

.meta-badge-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.meta-badge-img:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--green);
  color: var(--dark);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 70% 50%,
      rgba(6, 232, 225, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 20%,
      rgba(6, 232, 225, 0.05) 0%,
      transparent 60%
    );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 232, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 232, 225, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 232, 225, 0.1);
  border: 1px solid rgba(6, 232, 225, 0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.meta-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 102, 255, 0.08);
  border: 1px solid rgba(8, 102, 255, 0.28);
  color: #70a8ff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--green);
  color: var(--dark);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6, 232, 225, 0.25);
}

.btn-primary--inline {
  display: inline-block;
  margin-top: 32px;
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  background: var(--dark3);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-stars {
  color: var(--green);
  font-size: 14px;
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  position: relative;
  transform: scale(1.12);
  transform-origin: center center;
}

.dashboard-mock {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(6, 232, 225, 0.08);
}

.dashboard-mock--clean {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.mock-topbar {
  background: rgba(6, 232, 225, 0.06);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-channels {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.mock-channel {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.ch-wa {
  background: rgba(6, 232, 225, 0.15);
  color: #06e8e1;
}
.ch-ig {
  background: rgba(193, 53, 132, 0.15);
  color: #c13584;
}
.ch-fb {
  background: rgba(66, 103, 178, 0.15);
  color: #4267b2;
}

.mock-body {
  display: flex;
}

.mock-sidebar {
  width: 200px;
  border-right: 1px solid var(--border);
  padding: 12px 0;
  flex-shrink: 0;
}

.mock-chat-item {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.mock-chat-item.active {
  background: rgba(6, 232, 225, 0.08);
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.av1 {
  background: rgba(6, 232, 225, 0.15);
  color: #06e8e1;
}
.av2 {
  background: rgba(193, 53, 132, 0.15);
  color: #c13584;
}
.av3 {
  background: rgba(66, 103, 178, 0.15);
  color: #4267b2;
}
.av4 {
  background: rgba(255, 180, 0, 0.15);
  color: #ffb400;
}

.mock-chat-info {
  flex: 1;
  min-width: 0;
}
.mock-chat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-chat-preview {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-badge {
  background: var(--green);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.mock-msg.out {
  flex-direction: row-reverse;
}

.msg-bubble {
  max-width: 65%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.5;
}

.mock-msg.in .msg-bubble {
  background: var(--dark3);
  color: var(--text);
  border-radius: 4px 12px 12px 12px;
}
.mock-msg.out .msg-bubble {
  background: rgba(6, 232, 225, 0.15);
  color: var(--green);
  border-radius: 12px 4px 12px 12px;
}

.ai-suggestion {
  margin-top: 8px;
  background: rgba(6, 232, 225, 0.06);
  border: 1px dashed rgba(6, 232, 225, 0.25);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 10px;
  color: var(--muted);
}

.ai-tag {
  display: inline-block;
  background: rgba(6, 232, 225, 0.12);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-stat {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.floating-stat.top-right {
  top: -20px;
  right: -24px;
  animation: floatB 4.5s ease-in-out infinite;
}

.floating-stat.bottom-left {
  bottom: -20px;
  left: -24px;
}

.stat-value {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── NUMBERS ─── */
.numbers {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
}

.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.number-item {
  background: var(--card);
  padding: 36px 32px;
  text-align: center;
}

.number-val {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -2px;
  line-height: 1;
}

.number-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* ─── SECTION COMMON ─── */
section {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
}

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

.section-inner--center {
  text-align: center;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

.section-sub--center {
  margin: 0 auto;
}

.highlight-green {
  color: var(--green);
}

/* ─── DOR ─── */
.dor-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.dor-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dor-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.dor-item:hover {
  border-color: rgba(6, 232, 225, 0.3);
}

.dor-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 80, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.dor-text h4 {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dor-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.dor-solution {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.solution-title {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.solution-title span {
  color: var(--green);
}

.solution-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.check {
  width: 22px;
  height: 22px;
  background: rgba(6, 232, 225, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover {
  border-color: rgba(6, 232, 225, 0.3);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 232, 225, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feature-title {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.steps-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SEGMENTOS ─── */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.segment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}

.segment-card:hover {
  border-color: rgba(6, 232, 225, 0.3);
}

.segment-emoji {
  font-size: 28px;
  margin-bottom: 14px;
}

.segment-name {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.segment-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── DEPOIMENTOS ─── */
.testimonials-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.stars {
  color: #ffb400;
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
}

.author-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.author-role {
  font-size: 12px;
  color: var(--muted);
}

/* ─── PLANOS ─── */
.plans-toggle {
  display: inline-flex;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin: 40px auto 0;
}

.toggle-btn {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  letter-spacing: 1px;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(6, 232, 225, 0.25);
}

.toggle-btn:not(.active):hover {
  color: var(--text);
}

.plans-wrapper {
  overflow-x: auto;
  margin: 40px auto 0;
  padding: 16px 0 20px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 232, 225, 0.3) transparent;
}

.plans-wrapper::-webkit-scrollbar {
  height: 4px;
}

.plans-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.plans-wrapper::-webkit-scrollbar-thumb {
  background: rgba(6, 232, 225, 0.3);
  border-radius: 4px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
  margin: 0 auto;
  width: 100%;
  min-width: 1000px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.plan-card .plan-features {
  flex: 1;
}

@media (max-width: 1024px) {
  .plans-wrapper {
    margin: 36px -20px 0;
    padding: 16px 20px 24px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
  }

  .plans-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(270px, 42vw, 340px);
    justify-content: start;
    width: max-content;
    min-width: 0;
  }

  .plan-card {
    scroll-snap-align: center;
  }
}

@media (max-width: 540px) {
  .plans-grid {
    grid-auto-columns: clamp(260px, 84vw, 320px);
  }
}

.plan-card.featured {
  border-color: var(--green);
  background: linear-gradient(
    160deg,
    rgba(6, 232, 225, 0.06) 0%,
    var(--card) 60%
  );
}

.plan-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--dark);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.plan-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.plan-price {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}

.plan-consult {
  font-size: 22px !important;
  letter-spacing: -0.5px;
  padding-top: 6px;
}

.plan-price sup {
  font-size: 20px;
  letter-spacing: 0;
}
.plan-price sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 24px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  margin-top: auto;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-card.featured .plan-cta {
  background: var(--green);
  color: var(--dark);
}

.plan-card.featured .plan-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 232, 225, 0.3);
}

.plan-card:not(.featured) .plan-cta {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.plan-card:not(.featured) .plan-cta:hover {
  border-color: rgba(6, 232, 225, 0.4);
  background: rgba(6, 232, 225, 0.05);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background 0.15s;
}

.faq-q:hover {
  background: rgba(6, 232, 225, 0.04);
}

.faq-arrow {
  color: var(--green);
  font-size: 20px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── ACCORDION FAQ ─── */
.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  text-align: left;
  transition: background 0.15s;
}

.accordion-button:hover {
  background: rgba(6, 232, 225, 0.04);
}

.accordion-button .icon {
  color: var(--green);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accordion-button:not(.active) .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 400px;
}

.accordion-content p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── TO TOP ─── */
#to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #06e8e1;
  border: none;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(6, 232, 225, 0.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.2s,
    box-shadow 0.2s;
  z-index: 999;
}

#to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#to-top:hover {
  background: #06e8e1;
  box-shadow: 0 6px 28px rgba(6, 232, 225, 0.6);
}

/* WHATSAPP FLUTUANTE */
#whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  text-decoration: none;
  animation: wa-pulse 2.2s ease-in-out infinite;
}

#whatsapp-float:hover {
  background: #1ebe5d;
  animation: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  60% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* TOAST NOTIFICACAO */
.toast-notification {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0d1f17;
  border: 1px solid var(--green);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(6, 232, 225, 0.18);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-notification.is-error {
  background: #241414;
  border-color: rgba(231, 76, 60, 0.45);
  box-shadow: 0 8px 32px rgba(231, 76, 60, 0.18);
}

.toast-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-text strong {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.toast-text span {
  font-size: 13px;
  color: var(--muted);
}

/* ─── CTA FINAL ─── */
.cta-section {
  text-align: center;
  padding: 100px 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(6, 232, 225, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-section h2 span {
  color: var(--green);
}

.cta-section p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 24px;
}

.cta-guarantee {
  font-size: 13px;
  color: var(--muted);
}
.cta-guarantee span {
  color: var(--green);
}

/* ─── FORM ─── */
.form-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.form-box {
  max-width: 750px;
  margin: 60px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px;
}

.form-title {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.form-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.conditional-field {
  margin-top: 10px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px 18px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group textarea {
  min-height: 96px;
  line-height: 1.5;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(6, 232, 225, 0.5);
}

.form-group select option {
  background: var(--dark2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--dark);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 232, 225, 0.3);
}

.form-submit.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.form-submit:disabled {
  pointer-events: none;
}

.form-privacy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

.field-error {
  display: block;
  font-size: 12px;
  color: #ff5f5f;
  margin-top: 6px;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

footer a {
  color: var(--green);
  text-decoration: none;
}

.footer-links-line {
  margin-top: 8px;
}

.recaptcha-disclaimer {
  margin-top: 10px;
  font-size: 11px;
  color: #555;
}

.legal-page {
  min-height: 100vh;
  padding: 72px 20px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.legal-content h1 {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  line-height: 1.15;
  color: var(--white);
  margin: 24px 0 16px;
}

.legal-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 14px;
}

.legal-back {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-inner {
    position: relative;
    justify-content: space-between;
    gap: 0;
  }
  .nav-left {
    gap: 0;
  }
  .meta-badge-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-cta {
    font-size: 11px;
    padding: 0 14px;
    height: 52px;
    line-height: 52px;
    white-space: nowrap;
  }
  .nav-cta-extra {
    display: none;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  section {
    padding: 60px 20px;
  }
  .numbers {
    padding: 0 20px 60px;
  }
  .numbers-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .dor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .segments-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .plans-toggle {
    width: 100%;
    justify-content: center;
  }
  .form-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .form-section .section-inner {
    max-width: 100%;
  }
  .form-box {
    width: 100%;
    max-width: none;
    margin-top: 36px;
    padding: 32px 20px;
    border-radius: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 540px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .segments-grid {
    grid-template-columns: 1fr;
  }
  .numbers-inner {
    grid-template-columns: 1fr 1fr;
  }
  .number-val {
    font-size: 28px;
  }
  .form-section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .form-box {
    padding: 28px 14px;
    border-radius: 14px;
  }
  .form-title {
    font-size: 20px;
  }
  .form-desc {
    margin-bottom: 28px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 14px;
    font-size: 15px;
  }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  animation: fadeUp 0.5s ease forwards;
}
.hero h1 {
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-sub {
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-actions {
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero-trust {
  animation: fadeUp 0.5s 0.4s ease both;
}
.hero-visual {
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ─── RECAPTCHA BADGE OCULTO ─── */
.grecaptcha-badge {
  visibility: hidden !important;
}


/* ═══════════════════════════════════════════
     STATUS PAGE
  ═══════════════════════════════════════════ */

/* ─── STATUS PAGE EXTRAS ─── */
:root {
  --yellow: #f5a623;
  --yellow-bg: rgba(245, 166, 35, 0.12);
  --red: #e74c3c;
  --red-bg: rgba(231, 76, 60, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);
}

/* ─── MAIN ─── */
.status-page main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 104px 24px 80px;
}

/* ─── HERO STATUS BANNER ─── */
.status-banner {
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.status-banner.all-good {
  background: linear-gradient(
    135deg,
    rgba(6, 232, 225, 0.14) 0%,
    rgba(6, 232, 225, 0.06) 100%
  );
  border: 1px solid rgba(6, 232, 225, 0.3);
}

.status-banner.incident {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.14) 0%,
    rgba(245, 166, 35, 0.06) 100%
  );
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.status-banner.outage {
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.14) 0%,
    rgba(231, 76, 60, 0.06) 100%
  );
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.all-good .banner-icon {
  background: rgba(6, 232, 225, 0.2);
}
.incident .banner-icon {
  background: rgba(245, 166, 35, 0.2);
}
.outage .banner-icon {
  background: rgba(231, 76, 60, 0.2);
}

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

.banner-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.banner-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 2px;
}

.banner-updated {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

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

/* ─── SECTION TITLE ─── */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* ─── SERVICES GRID ─── */
.services-section {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark3);
  flex-shrink: 0;
}

.service-icon svg {
  width: 16px;
  height: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.status-badge.operational {
  background: rgba(6, 232, 225, 0.12);
  color: #06e8e1;
  border: 1px solid rgba(6, 232, 225, 0.25);
}

.status-badge.degraded {
  background: rgba(245, 166, 35, 0.12);
  color: #f5a623;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.status-badge.outage {
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

.status-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ─── UPTIME BARS ─── */
.uptime-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  margin-bottom: 6px;
}

.uptime-bar {
  flex: 1;
  height: 28px;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.15s;
}

.uptime-bar:hover {
  opacity: 0.8;
}

.uptime-bar.ok {
  background: var(--green);
  opacity: 0.6;
}
.uptime-bar.ok:hover {
  opacity: 1;
}
.uptime-bar.degraded {
  background: var(--yellow);
}
.uptime-bar.down {
  background: var(--red);
}

.uptime-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
}

.uptime-pct {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  margin-bottom: 4px;
}

/* ─── INCIDENTS ─── */
.incidents-section {
  margin-bottom: 48px;
}

.incidents-empty {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.incidents-empty svg {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 12px;
  opacity: 0.6;
}

.incident-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.incident-header {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.incident-service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
  background: rgba(6, 232, 225, 0.1);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 6px;
}

.incident-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.incident-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.incident-severity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.severity-investigating {
  background: rgba(245, 166, 35, 0.15);
  color: #f5a623;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.severity-resolved {
  background: rgba(6, 232, 225, 0.12);
  color: #06e8e1;
  border: 1px solid rgba(6, 232, 225, 0.25);
}

.incident-timeline {
  padding: 8px 24px 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-time {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  min-width: 72px;
  padding-top: 1px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--muted);
  flex-shrink: 0;
  margin-top: 5px;
}

.timeline-dot.active {
  background: var(--green);
  border-color: var(--green);
}

.timeline-content {
  flex: 1;
}

.timeline-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}

.label-investigating {
  color: var(--yellow);
}
.label-identified {
  color: #9b59b6;
}
.label-monitoring {
  color: #3498db;
}
.label-resolved {
  color: var(--green);
}

.timeline-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── METRICS ─── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.metric-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── SUBSCRIBE ─── */
.subscribe-section {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.subscribe-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.subscribe-info p {
  font-size: 0.875rem;
  color: var(--muted);
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-input {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  min-width: 220px;
  transition: border-color 0.2s;
}

.subscribe-input:focus {
  border-color: var(--green);
}
.subscribe-input::placeholder {
  color: var(--muted);
}

.btn-subscribe {
  background: var(--green);
  color: #0a0f0d;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ─── STATUS FOOTER ─── */
.status-page footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: 28px 40px;
  text-align: center;
}

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

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green);
}

/* ─── TOOLTIP ─── */
.tooltip {
  position: fixed;
  background: #1e2d23;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.15s;
  max-width: 200px;
  white-space: normal;
  text-align: center;
}

/* ─── EVEO DATA CENTER ─── */
.eveo-section {
  margin-bottom: 48px;
}

.eveo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.eveo-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.eveo-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.eveo-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.eveo-dc-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.eveo-dc-location {
  font-size: 0.75rem;
  color: var(--muted);
}

.eveo-services {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eveo-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eveo-service-name {
  font-size: 0.85rem;
  color: var(--muted);
}

.eveo-loading {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

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

.eveo-updated {
  font-size: 0.75rem;
  color: var(--muted);
}

.eveo-link {
  font-size: 0.75rem;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.2s;
}

.eveo-link:hover {
  opacity: 0.75;
}

/* ─── META API STATUS ─── */
.wa-section {
  margin-bottom: 48px;
}
.wa-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wa-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.wa-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.wa-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 232, 225, 0.12);
  border-radius: 8px;
  flex-shrink: 0;
}
.wa-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.wa-sub {
  font-size: 0.75rem;
  color: var(--muted);
}
.wa-incidents {
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}
.wa-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--green);
}
.wa-incidents-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wa-incident {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.wa-incident:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.wa-incident-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.wa-incident-title {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}
.wa-incident-date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
}

/* ─── CHAMADAS WHATSAPP ─── */
.calls-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calls-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.calls-text .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.calls-text .section-sub {
  text-align: left;
  margin: 0 0 32px;
}

.calls-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 232, 225, 0.08);
  border: 1px solid rgba(6, 232, 225, 0.25);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.825rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.calls-notice i {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.calls-notice strong {
  color: var(--green);
  font-weight: 600;
}

.bitsac-link {
  color: var(--green);
  font-weight: 600;
}

.bitphone-link {
  color: #0991c3;
  text-decoration: none;
  font-weight: 600;
}

.bitphone-link:hover {
  text-decoration: underline;
}

.calls-notice-meta-badge {
  height: 52px;
  width: auto;
  border-radius: 4px;
  opacity: 1;
  flex-shrink: 0;
}

.calls-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calls-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.calls-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-glow);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calls-features li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calls-features li strong {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Sora", sans-serif;
}

.calls-features li span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Mockup de chamada */
.calls-visual {
  display: flex;
  justify-content: center;
}

.call-mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 60px rgba(6, 232, 225, 0.08);
}

.call-mockup-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.call-channel-badge {
  background: rgba(6, 232, 225, 0.12);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.call-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.call-avatar-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.call-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(6, 232, 225, 0.25);
  animation: callPulse 2.4s ease-out infinite;
}

.call-ring.ring-1 {
  width: 68px;
  height: 68px;
  animation-delay: 0s;
}
.call-ring.ring-2 {
  width: 84px;
  height: 84px;
  animation-delay: 0.4s;
}
.call-ring.ring-3 {
  width: 100px;
  height: 100px;
  animation-delay: 0.8s;
}

@keyframes callPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.call-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  z-index: 1;
  position: relative;
}

.call-caller-name {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.call-caller-sub {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  margin-top: -12px;
}

.call-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.call-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--dark3);
  color: var(--muted);
  font-size: 1rem;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

.call-btn.hangup {
  background: #c0392b;
  border-color: #c0392b;
  color: var(--white);
  width: 56px;
  height: 56px;
  font-size: 1.1rem;
}

.call-info-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
}

.call-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.call-info-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.call-info-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.call-info-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

@media (max-width: 900px) {
  .calls-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .calls-visual {
    order: -1;
  }
  .calls-text .section-title,
  .calls-text .section-sub {
    text-align: center;
  }
  .calls-features li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ─── STATUS RESPONSIVE ─── */
@media (max-width: 640px) {
  .status-page main {
    padding: 88px 16px 60px;
  }
  .status-banner {
    padding: 24px 20px;
  }
  .banner-title {
    font-size: 1.15rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .wa-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subscribe-section {
    padding: 24px 20px;
  }
  .subscribe-input {
    min-width: 100%;
  }
  .subscribe-form {
    width: 100%;
  }
  .btn-subscribe {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .status-page footer {
    padding: 24px 20px;
  }
}
/* ─── FONT AWESOME ICON OVERRIDES ─── */

/* Ícones dentro de .dor-icon */
.dor-icon i {
  font-size: 17px;
  color: #ff5f5f;
}

/* Ícones dentro de .feature-icon */
.feature-icon i {
  font-size: 20px;
  color: var(--green);
}

/* Ícones dentro de .segment-emoji */
.segment-emoji i {
  font-size: 26px;
  color: var(--green);
}

/* Check da lista de solução */
.check i {
  font-size: 11px;
  color: var(--green);
}

/* Stars FA */
.trust-stars i,
.stars i {
  font-size: 13px;
}
.trust-stars i {
  color: var(--green);
}
.stars i {
  color: #ffb400;
}

/* AI tag sparkle */
.ai-tag i {
  font-size: 12px;
  color: var(--green);
}

/* Toast icon */
.toast-icon i {
  font-size: 20px;
  color: var(--green);
}

/* Botões com ícone FA */
.btn-primary i,
.btn-secondary i,
.form-submit i {
  margin-right: 6px;
  font-size: 0.95em;
}

/* Form privacy lock */
.form-privacy i {
  margin-right: 4px;
  color: var(--green);
}

/* CTA guarantee checks */
.cta-guarantee span i {
  margin-right: 4px;
  color: var(--green);
}

/* ─── ÍCONES FLUTUANTES REDES SOCIAIS ─── */
.social-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px 10px 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  z-index: 10;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.social-float i {
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Posições */
.sf-whatsapp {
  top: 20%;
  left: 25px;
  animation: floatA 4s ease-in-out infinite;
}
.sf-instagram {
  top: 32%;
  right: -70px;
  animation: floatB 4.5s ease-in-out infinite;
}
.sf-facebook {
  bottom: 30%;
  left: -25px;
  animation: floatC 5s ease-in-out infinite;
}
.sf-telegram {
  bottom: 20%;
  right: -10px;
  animation: floatD 3.8s ease-in-out infinite;
}

/* Cores por rede */
.sf-whatsapp i {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.sf-instagram i {
  background: rgba(225, 48, 108, 0.15);
  color: #e1306c;
}
.sf-facebook i {
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
}
.sf-telegram i {
  background: rgba(40, 160, 240, 0.15);
  color: #28a0f0;
}

/* Borda colorida sutil */
.sf-whatsapp {
  border-color: rgba(37, 211, 102, 0.25);
}
.sf-instagram {
  border-color: rgba(225, 48, 108, 0.25);
}
.sf-facebook {
  border-color: rgba(24, 119, 242, 0.25);
}
.sf-telegram {
  border-color: rgba(40, 160, 240, 0.25);
}

/* Animações de flutuação independentes */
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-16px) rotate(-1deg);
  }
}
@keyframes floatC {
  0%,
  100% {
    transform: translateY(0px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}
@keyframes floatD {
  0%,
  100% {
    transform: translateY(0px) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

/* Pulse ao hover */
.social-float:hover {
  transform: scale(1.07) translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .social-float {
    display: none;
  }
}

/* ─── IDENTIDADE VISUAL BITSAC — TEAL OVERRIDES ─── */

/* Hero background com gradiente direcional */
.hero {
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 30%,
      rgba(22, 197, 196, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 20% 80%,
      rgba(6, 232, 225, 0.05) 0%,
      transparent 60%
    ),
    var(--dark) !important;
}

/* Nav com teal glow sutil */
nav {
  border-bottom-color: rgba(22, 197, 196, 0.15) !important;
  background: rgba(19, 24, 32, 0.9) !important;
}

/* Trust badge com teal */
.trust-stars i {
  color: var(--teal) !important;
}

/* Feature icon alternado verde/teal */
.feature-card:nth-child(even) .feature-icon {
  background: rgba(22, 197, 196, 0.1);
  border-color: rgba(22, 197, 196, 0.2);
}
.feature-card:nth-child(even) .feature-icon i {
  color: var(--teal);
}

/* Números destaque com teal */
.number-item:nth-child(even) .number-value {
  color: var(--teal);
}

/* Step number com gradiente */
.step-num {
  background: linear-gradient(
    135deg,
    rgba(6, 232, 225, 0.15),
    rgba(22, 197, 196, 0.15)
  ) !important;
  border-color: rgba(22, 197, 196, 0.3) !important;
  color: var(--teal) !important;
}

/* Plano destaque com borda teal */
.plan-card.featured {
  border-color: var(--teal) !important;
  box-shadow:
    0 0 0 1px var(--teal),
    0 40px 80px rgba(22, 197, 196, 0.15) !important;
}
.plan-card.featured .plan-badge {
  background: linear-gradient(135deg, var(--green), var(--teal)) !important;
  color: var(--dark) !important;
}

/* FAQ hover com teal */
.accordion-button.active {
  color: var(--teal) !important;
}

/* Icones sociais flutuantes - ajuste teal */
.sf-whatsapp {
  border-color: rgba(37, 211, 102, 0.3) !important;
}
.sf-instagram {
  border-color: rgba(225, 48, 108, 0.3) !important;
}
.sf-facebook {
  border-color: rgba(24, 119, 242, 0.3) !important;
}
.sf-telegram {
  border-color: rgba(22, 197, 196, 0.35) !important;
}
.sf-telegram i {
  color: var(--teal) !important;
  background: rgba(22, 197, 196, 0.12) !important;
}

/* Glow na logo */
.nav-logo {
  filter: drop-shadow(0 0 8px rgba(22, 197, 196, 0.3));
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--green), var(--teal));
  border-radius: 4px;
}

/* ─── BOTÕES CORREÇÃO FINAL ─── */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: var(--green) !important;
  color: #0a0f0d !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(6, 232, 225, 0.3) !important;
}
.form-submit {
  background: var(--green) !important;
  color: #0a0f0d !important;
  opacity: 1 !important;
}
.form-submit:hover {
  background: var(--green-dark) !important;
}

/* ─── BOTÕES LADO A LADO ─── */
.hero-actions,
.cta-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  align-items: center !important;
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-actions {
    flex-wrap: wrap !important;
    flex-direction: column !important;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ─── CALLS SECTION ICONS ─── */
.calls-icon i {
  font-size: 18px;
  color: var(--green);
}

/* ─── PADRONIZAÇÃO GLOBAL DE FONTES (fora do hero) ─── */
.section-title,
.solution-title,
.cta-section h2,
.calls-text .section-title,
.plans-title,
.steps-section .section-title,
.features-section .section-title,
.dor-section .section-title,
.testimonials-section .section-title,
.faq-section .section-title,
.numbers-section .section-title {
  font-size: 26px !important;
}

.section-sub,
.solution-desc,
.cta-section p,
.calls-text .section-sub {
  font-size: 17px !important;
}
