/* ==========================================================================
   Chatvendas - Modern High-Converting Omnichannel Platform Stylesheet
   Palette: Deep Nebula (#070913), Electric Blue (#0066FF), WhatsApp Emerald (#00F260 & #00a884)
   ========================================================================== */

/* --- Custom Properties & Design Tokens --- */
:root {
  /* Backgrounds */
  --color-bg: #070913;
  --color-bg-subtle: #0c1022;
  --color-bg-card: rgba(16, 22, 44, 0.65);
  --color-bg-card-hover: rgba(22, 31, 60, 0.85);
  
  /* Brand Accent Colors */
  --color-blue: #0070f3;
  --color-blue-electric: #00d2ff;
  --color-blue-glow: rgba(0, 112, 243, 0.4);
  
  --color-green: #00F260;
  --color-wa: #00a884;
  --color-wa-glow: rgba(0, 242, 96, 0.35);
  
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-subtle: #64748b;
  
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-bright: rgba(255, 255, 255, 0.16);
  
  /* Typography - Fonte Comercial de Alta Conversão */
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* --- Ambient Light Orbs --- */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

.glow-blue {
  top: -100px;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.2) 0%, transparent 70%);
}

.glow-green {
  top: 600px;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 242, 96, 0.12) 0%, transparent 70%);
}

.glow-cyan {
  bottom: 800px;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top Announcement Bar --- */
.top-bar-announcement {
  background: linear-gradient(90deg, #091124 0%, #0d1e3d 50%, #081a17 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.top-bar-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 112, 243, 0.18);
  border: 1px solid rgba(0, 112, 243, 0.35);
  color: var(--color-blue-electric);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.bg-pill-emerald {
  background: rgba(0, 242, 96, 0.15);
  border-color: rgba(0, 242, 96, 0.3);
  color: var(--color-green);
}

.top-bar-text strong {
  color: #fff;
}

.top-bar-link {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.top-bar-link:hover {
  text-decoration: underline;
}

/* --- Floating Header --- */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 1000;
  width: 100%;
  margin-bottom: -72px;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.site-header.scrolled .header-inner {
  background: rgba(8, 12, 25, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.brand-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.4);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.main-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--ease-smooth) 0.3s;
}

.btn-emerald-glow {
  background: rgba(0, 242, 96, 0.12);
  color: var(--color-green);
  border-color: rgba(0, 242, 96, 0.3);
}

.btn-emerald-glow:hover {
  background: var(--color-green);
  color: #030712;
  box-shadow: 0 8px 24px var(--color-wa-glow);
  transform: translateY(-2px);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #00f260 0%, #00a884 100%);
  color: #030712;
  font-size: 16px;
  padding: 16px 36px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 242, 96, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 242, 96, 0.45);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border-bright);
  color: #fff;
  font-size: 16px;
  padding: 16px 30px;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-emerald-solid {
  background: var(--color-green);
  color: #040915;
  width: 100%;
  padding: 14px 20px;
  box-shadow: 0 8px 20px var(--color-wa-glow);
}

.btn-emerald-solid:hover {
  background: #00d654;
  transform: translateY(-2px);
}

.btn-plan-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-border-bright);
  color: #fff;
  width: 100%;
  padding: 14px 20px;
}

.btn-plan-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

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

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 90px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 112, 243, 0.1);
  border: 1px solid rgba(0, 112, 243, 0.3);
  color: var(--color-blue-electric);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

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

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #fff;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #ffffff 20%, var(--color-blue-electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-green {
  background: linear-gradient(135deg, #00f260 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-description strong {
  color: #fff;
}

/* Omnichannel Chips */
.channel-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.wa-chip .chip-dot { background: var(--color-green); box-shadow: 0 0 6px var(--color-green); }
.ig-chip .chip-dot { background: #e1306c; box-shadow: 0 0 6px #e1306c; }
.tg-chip .chip-dot { background: #0088cc; box-shadow: 0 0 6px #0088cc; }
.web-chip .chip-dot { background: var(--color-blue-electric); box-shadow: 0 0 6px var(--color-blue-electric); }

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

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.trust-stars {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: 14px;
}

.trust-item p {
  font-size: 13px;
  color: var(--color-text-muted);
}

.trust-item strong {
  color: #fff;
}

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

.trust-icon {
  font-size: 18px;
}

/* --- Hero Smartphone Simulation Frame --- */
.hero-phone-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-perspective-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.iphone-17-device {
  width: 100%;
  height: 640px;
  background: linear-gradient(135deg, #2a2e39 0%, #12151e 50%, #2a2e39 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 46px;
  padding: 8px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8),
              0 0 50px rgba(0, 242, 96, 0.08);
  position: relative;
  margin: 0 auto;
  animation: heroFloat 6s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: translateY(0) rotate(0.4deg); }
  100% { transform: translateY(-14px) rotate(-0.4deg); }
}

.phone-frame {
  width: 100%;
  height: 100%;
  background-color: #0b141a;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.95);
}

.phone-dynamic-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background-color: #000000;
  border-radius: 10px;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-status-bar {
  height: 34px;
  padding: 12px 18px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #FFFFFF;
  font-weight: 500;
  z-index: 90;
  background-color: #1f2c34;
}

.status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.chat-header-bar {
  background-color: #1f2c34;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 80;
}

.chat-back-btn {
  color: var(--color-green);
  font-size: 18px;
  font-weight: bold;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  background-color: var(--color-green);
  color: #030712;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.chat-user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.chat-user-name {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
}

.chat-user-status {
  font-size: 9px;
  color: var(--color-green);
  font-weight: 500;
}

.chat-actions {
  display: flex;
  gap: 10px;
  color: #aebac1;
  font-size: 11px;
}

.phone-screen-body {
  flex: 1;
  padding: 12px 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #0b141a;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.phone-screen-body::-webkit-scrollbar {
  display: none;
}

.phone-screen-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: radial-gradient(#ffffff 1px, transparent 0), radial-gradient(#ffffff 1px, transparent 0);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
  pointer-events: none;
}

.phone-footer-bar {
  background-color: #1f2c34;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 90;
}

.chat-input-wrapper {
  flex: 1;
  background-color: #2a3942;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  gap: 6px;
}

.chat-mock-input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 11px;
  flex: 1;
  outline: none;
}

.emoji-picker-btn, .attachment-btn {
  font-size: 12px;
  cursor: default;
  opacity: 0.8;
}

.chat-send-btn-mock {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #00a884;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chat Bubbles */
.msg-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.4;
  word-wrap: break-word;
  animation: msgBubbleIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  position: relative;
}

@keyframes msgBubbleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.msg-bot {
  background-color: #202c33;
  color: #e9edef;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.msg-user {
  background-color: #005c4b;
  color: #e9edef;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background-color: #202c33;
  border-radius: 12px;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.typing-dot {
  width: 5px;
  height: 5px;
  background-color: #8696a0;
  border-radius: 50%;
  animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

.wa-btn-container {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -8px;
}

.wa-btn {
  padding: 9px 12px;
  text-align: center;
  color: #53bdeb;
  font-size: 11px;
  font-weight: 700;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.2s;
}

.wa-btn:last-child {
  border-bottom: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.wa-btn.selected {
  background-color: rgba(0, 114, 255, 0.15);
  color: #00d2ff !important;
}

/* WhatsApp Carousel */
.wa-carousel-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px 0;
  width: 100%;
  scrollbar-width: none;
}

.wa-carousel-container::-webkit-scrollbar {
  display: none;
}

.wa-carousel-card {
  flex: 0 0 160px;
  background-color: #1f2c34;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.wa-card-header {
  width: 100%;
  height: 85px;
  overflow: hidden;
  position: relative;
  background-color: #111b21;
}

.wa-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-card-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  font-size: 10px;
}

.wa-card-title {
  font-weight: 700;
  color: #e9edef;
}

.wa-card-desc {
  color: #8696a0;
  font-size: 8px;
  line-height: 1.3;
}

.wa-card-price {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-green);
  margin-top: auto;
}

.wa-card-buttons {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.wa-card-btn {
  padding: 8px;
  text-align: center;
  color: #53bdeb;
  font-size: 10px;
  font-weight: 700;
  background: transparent;
  border: none;
  width: 100%;
}

.wa-card-btn.selected {
  background-color: rgba(0, 114, 255, 0.15);
  color: #00d2ff !important;
}

/* Summary Card */
.wa-summary-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.wa-summary-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
}

.wa-summary-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wa-summary-section-title {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 10px;
}

.wa-summary-item {
  display: flex;
  justify-content: space-between;
  color: #e9edef;
  font-size: 10px;
  padding-left: 6px;
}

.wa-summary-total {
  margin-top: 4px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 4px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 11px;
  color: var(--color-green);
}

/* Pix & Invoice Cards */
.pix-payment-card {
  width: 100%;
  background-color: #1f2c34;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.5s ease;
}

.pix-payment-card.paid {
  border-color: rgba(0, 242, 96, 0.4);
  box-shadow: 0 0 15px rgba(0, 242, 96, 0.15);
  background-color: rgba(32, 44, 51, 0.8);
}

.pix-card-title {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
}

.pix-qrcode-wrapper {
  width: 110px;
  height: 110px;
  background-color: #FFFFFF;
  padding: 6px;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pix-qrcode-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qrcode-scan-line {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: 2px;
  background-color: var(--color-green);
  animation: scanQrcode 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--color-green);
}

@keyframes scanQrcode {
  0%, 100% { top: 6px; }
  50% { top: 102px; }
}

.pix-copy-paste-btn {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9edef;
  font-size: 9px;
  font-weight: 600;
  padding: 5px;
  border-radius: 4px;
  text-align: center;
}

.pix-status-label {
  font-size: 9px;
  font-weight: 700;
  color: #ffbd2e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pdf-attachment-bubble {
  background-color: #202c33;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 90%;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pdf-icon-wrapper {
  background-color: #d93025;
  color: #fff;
  font-weight: 800;
  font-size: 9px;
  padding: 6px;
  border-radius: 6px;
}

.pdf-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pdf-name {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.pdf-details {
  font-size: 8px;
  color: #8696a0;
}

.pdf-download-btn {
  font-size: 14px;
}

/* Floating badges near smartphone */
.floating-bubble {
  position: absolute;
  background: rgba(13, 19, 39, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  z-index: 120;
}

.floating-bubble strong {
  display: block;
  font-size: 12px;
  color: #fff;
}

.floating-bubble small {
  font-size: 10px;
  color: var(--color-green);
}

.floating-bubble .f-icon {
  font-size: 20px;
}

.bubble-top-right {
  top: 40px;
  right: -30px;
  animation: floatSubtle1 5s infinite ease-in-out;
}

.bubble-bottom-left {
  bottom: 60px;
  left: -40px;
  animation: floatSubtle2 6s infinite ease-in-out;
}

@keyframes floatSubtle1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatSubtle2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Live Metrics Section --- */
.live-metrics-section {
  padding: 20px 0 60px 0;
}

.metrics-glass-card {
  background: linear-gradient(135deg, rgba(16, 23, 47, 0.6) 0%, rgba(9, 14, 30, 0.8) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.metric-card-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-big-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 30%, var(--color-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.metric-sublabel {
  font-size: 12px;
  color: var(--color-text-subtle);
}

.metric-separator {
  display: none;
}

/* --- Section Headings (Global) --- */
.section-heading {
  margin-bottom: 60px;
}

.section-heading.text-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Omnichannel Channels Grid --- */
.channels-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 112, 243, 0.05) 0%, transparent 70%);
}

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

.channel-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--ease-smooth) 0.4s;
  display: flex;
  flex-direction: column;
}

.channel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--color-bg-card-hover);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.channel-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.card-whatsapp:hover .channel-card-glow {
  background: radial-gradient(circle at top right, rgba(0, 242, 96, 0.15), transparent 70%);
  opacity: 1;
}

.card-instagram:hover .channel-card-glow {
  background: radial-gradient(circle at top right, rgba(225, 48, 108, 0.15), transparent 70%);
  opacity: 1;
}

.card-telegram:hover .channel-card-glow {
  background: radial-gradient(circle at top right, rgba(0, 136, 204, 0.15), transparent 70%);
  opacity: 1;
}

.card-webchat:hover .channel-card-glow {
  background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.15), transparent 70%);
  opacity: 1;
}

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

.channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-bg { background: rgba(0, 242, 96, 0.15); color: var(--color-green); }
.ig-bg { background: rgba(225, 48, 108, 0.15); color: #f77737; }
.tg-bg { background: rgba(0, 136, 204, 0.15); color: #0088cc; }
.web-bg { background: rgba(0, 112, 243, 0.15); color: var(--color-blue-electric); }

.channel-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.wa-badge { background: rgba(0, 242, 96, 0.1); color: var(--color-green); }
.ig-badge { background: rgba(225, 48, 108, 0.1); color: #ff5e97; }
.tg-badge { background: rgba(0, 136, 204, 0.1); color: #38bdf8; }
.web-badge { background: rgba(0, 210, 255, 0.1); color: var(--color-blue-electric); }

.channel-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.channel-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.channel-desc strong {
  color: #fff;
}

.channel-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  font-size: 12px;
  color: var(--color-text-subtle);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

/* --- Features Breakdown Section --- */
.features-section {
  padding: 100px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-sub-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-blue-electric);
  margin-bottom: 12px;
}

.bg-badge-ai {
  color: var(--color-green);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.check-item strong {
  color: #fff;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 242, 96, 0.15);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.mockup-frame {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: transform 0.4s var(--ease-smooth);
}

.mockup-frame:hover {
  transform: translateY(-6px);
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  object-fit: cover;
}

.mockup-caption {
  font-size: 11px;
  color: var(--color-text-subtle);
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

/* --- Workflow / How it works Section --- */
.how-it-works-section {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 112, 243, 0.04) 50%, transparent 100%);
}

.workflow-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.workflow-step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  flex: 1;
  position: relative;
  text-align: center;
  transition: transform 0.3s;
}

.workflow-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: var(--color-blue);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap {
  font-size: 32px;
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.workflow-step-arrow {
  color: var(--color-green);
  font-size: 24px;
  font-weight: bold;
}

/* --- Pricing Plans Section --- */
.pricing-section {
  padding: 100px 0;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--ease-smooth) 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-bright);
}

.pricing-card.featured-plan {
  background: linear-gradient(180deg, rgba(16, 28, 60, 0.9) 0%, rgba(10, 16, 36, 0.95) 100%);
  border: 2px solid var(--color-green);
  box-shadow: 0 20px 60px rgba(0, 242, 96, 0.15);
  transform: scale(1.04);
}

.pricing-card.featured-plan:hover {
  transform: scale(1.04) translateY(-6px);
}

.featured-badge-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-green);
  color: #030712;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.plan-type {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
}

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

.plan-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}

.plan-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 6px;
  margin-bottom: 20px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.currency {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-right: 4px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.period {
  font-size: 14px;
  color: var(--color-text-subtle);
  margin-left: 6px;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.plan-features-list strong {
  color: #fff;
}

.feat-check {
  color: var(--color-green);
  font-weight: bold;
  margin-right: 8px;
}

/* --- FAQ Accordion Section --- */
.faq-section {
  padding: 80px 0 100px 0;
}

.faq-accordion-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-accordion-item.active {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-size: 22px;
  color: var(--color-green);
  transition: transform 0.3s;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
}

.faq-accordion-body p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-accordion-body strong {
  color: #fff;
}

/* --- Final CTA Section --- */
.final-cta-section {
  padding: 40px 0 80px 0;
}

.cta-banner-glass {
  background: linear-gradient(135deg, #09132c 0%, #061c16 100%);
  border: 1px solid rgba(0, 242, 96, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-banner-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 96, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
}

/* --- Modern Footer --- */
.site-footer {
  background: #03050c;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px 0;
  font-size: 14px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.brand-col .footer-logo {
  margin-bottom: 16px;
}

.footer-bio {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}

.status-indicator-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 96, 0.08);
  border: 1px solid rgba(0, 242, 96, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--color-green);
}

.status-green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 6px var(--color-green);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.legal-badge-box {
  margin-top: 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--color-text-muted);
  display: inline-block;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-subtle);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-inline a {
  color: var(--color-text-subtle);
  text-decoration: none;
}

.footer-legal-inline a:hover {
  color: #fff;
}

/* --- Scroll Reveal Animations Engine --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Legal Pages Styling (politica-de-privacidade & termos-de-servico) --- */
.legal-page-header {
  padding: 160px 0 50px 0;
  text-align: center;
  position: relative;
}

.legal-header-box {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 96, 0.1);
  border: 1px solid rgba(0, 242, 96, 0.25);
  color: var(--color-green);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.legal-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 28px auto;
  line-height: 1.6;
  text-align: center;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-bright);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-smooth);
}

.legal-back-btn:hover {
  background: rgba(0, 242, 96, 0.15);
  border-color: var(--color-green);
  color: var(--color-green);
  transform: translateY(-2px);
}

.legal-content-section {
  padding: 40px 0 100px 0;
}

.legal-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.legal-card h2, .legal-card h3 {
  font-family: var(--font-display);
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-card h2 { font-size: 22px; }
.legal-card h3 { font-size: 18px; }

.legal-card p {
  margin-bottom: 16px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-card li {
  margin-bottom: 8px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-main-title {
    font-size: 44px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .channel-pills-row, .hero-cta-wrapper, .hero-trust-metrics {
    justify-content: center;
  }
  
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metrics-glass-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .pricing-card.featured-plan {
    transform: none;
  }
  
  .pricing-card.featured-plan:hover {
    transform: translateY(-6px);
  }
  
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workflow-steps-grid {
    flex-direction: column;
  }
  
  .workflow-step-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-main-title {
    font-size: 34px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-glass-card {
    grid-template-columns: 1fr;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-bubble {
    display: none; /* Avoid overflowing mobile screens */
  }
}
