/* 
   VOID DIGITAL - Main Premium Stylesheet
   Dark UI, Premium, Minimalist, Cyber-Minimalist Aesthetic
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-black: #000000;
  --bg-deep: #050508;
  --bg-card: rgba(10, 10, 16, 0.7);
  --bg-card-hover: rgba(18, 18, 28, 0.85);
  
  --primary: #7B4DFF;
  --primary-glow: rgba(123, 77, 255, 0.2);
  --primary-glow-heavy: rgba(123, 77, 255, 0.55);
  --primary-bright: #9B6CFF;
  --primary-dark: #4d24c7;
  
  --success: #00E676;
  --success-glow: rgba(0, 230, 118, 0.2);
  
  --error: #FF1744;
  --error-glow: rgba(255, 23, 68, 0.15);
  
  --text-white: #F5F5F5;
  --text-gray: #B8B8B8;
  --text-dim: #6c6c7d;
  
  --border-color: rgba(123, 77, 255, 0.12);
  --border-hover: rgba(155, 108, 255, 0.35);
  --border-light: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions & Layout */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #050505;
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  background: 
    radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.5) 100%), /* Vinheta discreta */
    radial-gradient(circle at top left, rgba(33, 92, 255, 0.07), transparent 40%), /* Glow azul escuro sutil */
    radial-gradient(circle at bottom right, rgba(116, 46, 255, 0.05), transparent 45%), /* Glow púrpura escuro sutil */
    #050505;
  background-attachment: fixed;
}

/* Background Grids & Ambient Glows */
.bg-noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 0); /* Grain/noise quase imperceptível */
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

.bg-grid {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-size: 80px 80px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.004) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.004) 1px, transparent 1px); /* Grade ultrafina */
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Desativar Orbes Neon Flutuantes e Animadas */
.glow-orb {
  display: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-white);
}

p {
  color: var(--text-gray);
  font-weight: 400;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-white) 30%, var(--primary-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #A78BFA 0%, var(--primary) 50%, #4D24C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout Utilities */
.main-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 700px;
  margin-bottom: 5rem;
}

.section-header .tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(123, 77, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--primary-bright);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-header p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Premium Buttons & Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  border: 1px solid var(--primary-bright);
  box-shadow: 0 8px 30px -4px var(--primary-glow-heavy);
}

.btn-primary:hover {
  background: var(--primary-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -2px rgba(155, 108, 255, 0.7);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(25deg);
  transition: var(--transition-smooth);
  opacity: 0;
}

.btn-primary:hover::after {
  left: 130%;
  opacity: 1;
  transition: all 0.6s ease;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

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

/* Premium Cards & Glassmorphism */
.premium-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(155, 108, 255, 0.08),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.premium-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px -15px var(--primary-glow);
  transform: translateY(-6px);
}

.premium-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.premium-card p {
  position: relative;
  z-index: 2;
}

/* Navbar / Floating Glass Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

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

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.void-logo-svg {
  height: 28px;
  width: 145px;
  color: var(--primary-bright);
  transition: var(--transition-smooth);
}

.void-logo-img {
  height: 28px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo:hover .void-logo-svg {
  color: var(--text-white);
  filter: drop-shadow(0 0 8px var(--primary-glow-heavy));
}

.logo:hover .void-logo-img {
  filter: drop-shadow(0 0 8px var(--primary-glow-heavy));
}

.footer .void-logo-svg {
  height: 22px;
  width: 114px;
}

.footer .void-logo-img {
  height: 22px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(123, 77, 255, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Hero Section */
.hero {
  padding-top: 12rem;
  padding-bottom: 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(123, 77, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-bright);
  margin-bottom: 2rem;
  animation: pulse-border 3s infinite alternate;
}

.hero-tag svg {
  color: var(--success);
}

@keyframes pulse-border {
  0% { border-color: rgba(123, 77, 255, 0.15); }
  100% { border-color: rgba(123, 77, 255, 0.5); }
}

.hero-content h1 {
  font-size: 4.2rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--text-white);
  font-size: 0.95rem;
}

.bullet-item svg {
  flex-shrink: 0;
  color: var(--primary-bright);
}

/* HERO MOCKUP & DASHBOARD */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-mockup {
  position: relative;
  width: 90%;
  height: 420px;
  background: rgba(10, 10, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px -10px var(--primary-glow);
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 2;
}

.dashboard-mockup:hover {
  transform: rotateX(2deg) rotateY(-4deg) translateY(-5px);
  border-color: rgba(123, 77, 255, 0.25);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.9), 0 0 60px -5px rgba(123, 77, 255, 0.3);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

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

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.dashboard-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  height: calc(100% - 4rem);
}

.db-main {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.db-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.db-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
}

.db-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.db-stat-value {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.db-stat-value span.trend {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
}

.db-chart-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-svg {
  width: 100%;
  height: 100px;
}

.chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-chart 3s forwards ease-in-out;
}

@keyframes draw-chart {
  to { stroke-dashoffset: 0; }
}

.db-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Mock floating components on hero stack */
.floating-widget {
  position: absolute;
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 3;
  transition: var(--transition-smooth);
}

.google-ad-widget {
  top: 10%;
  left: -12%;
  width: 260px;
  background: rgba(15, 15, 25, 0.85);
  border: 1px solid rgba(66, 133, 244, 0.3); /* Google Blue Tint */
  padding: 1rem;
  animation: float-widget-1 6s infinite alternate ease-in-out;
}

.google-ad-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.google-badge {
  background: rgba(66, 133, 244, 0.15);
  color: #4285F4;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.google-ad-url {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.google-ad-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #8ab4f8; /* Google Link Blue */
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.google-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.google-stars svg {
  color: #FBBC05; /* Google Gold */
}

.google-ad-desc {
  font-size: 0.7rem;
  color: var(--text-gray);
  line-height: 1.3;
}

.whatsapp-widget {
  bottom: 8%;
  right: -10%;
  width: 250px;
  background: rgba(12, 28, 20, 0.9); /* Dark Green WhatsApp Theme */
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 0.8rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  animation: float-widget-2 7s infinite alternate-reverse ease-in-out;
}

.wa-icon {
  background: #25D366;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.wa-content {
  flex-grow: 1;
}

.wa-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.1rem;
}

.wa-msg {
  font-size: 0.7rem;
  color: #A5D6A7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
}

.wa-time {
  font-size: 0.6rem;
  color: #81C784;
  align-self: flex-start;
}

.instagram-widget {
  bottom: -5%;
  left: -2%;
  width: 220px;
  background: rgba(20, 10, 25, 0.85);
  border: 1px solid rgba(225, 48, 108, 0.25); /* Insta pink tint */
  padding: 0.8rem;
  animation: float-widget-3 8s infinite alternate ease-in-out;
}

.insta-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.insta-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 1px;
}

.insta-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
}

.insta-username {
  font-size: 0.7rem;
  font-weight: 600;
}

.insta-image {
  height: 100px;
  background: linear-gradient(135deg, rgba(123, 77, 255, 0.15) 0%, rgba(225, 48, 108, 0.05) 100%);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 500;
}

.insta-actions {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.insta-likes {
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
}

@keyframes float-widget-1 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes float-widget-2 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(-1.5deg); }
}

@keyframes float-widget-3 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(0.8deg); }
}

/* SECTION: THE PROBLEM */
.problem {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-card {
  background: rgba(255, 23, 68, 0.02);
  border: 1px solid rgba(255, 23, 68, 0.08);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  transition: var(--transition-smooth);
}

.quote-card:hover {
  background: rgba(255, 23, 68, 0.04);
  border-color: rgba(255, 23, 68, 0.25);
  transform: translateX(5px);
}

.quote-icon {
  flex-shrink: 0;
  color: var(--error);
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.quote-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-white);
  font-style: italic;
  line-height: 1.4;
}

/* Comparison visual mockup: Agenda/Store stats */
.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comparison-box {
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
}

.comp-header {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comp-header.red { color: var(--error); }
.comp-header.purple { color: var(--primary-bright); }

.calendar-grid-mockup {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 1.5rem;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
}

.cal-day.empty {
  border-color: rgba(255, 23, 68, 0.15);
  background: rgba(255, 23, 68, 0.02);
}

.cal-day.booked {
  border-color: rgba(0, 230, 118, 0.25);
  background: rgba(0, 230, 118, 0.08);
  color: var(--success);
  position: relative;
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.15);
}

.comp-status-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.comp-status-val {
  font-family: var(--font-title);
  font-weight: 700;
}

.comp-status-val.red { color: var(--error); }
.comp-status-val.green { color: var(--success); }

/* PILLARS / SOLUTIONS */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.sol-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sol-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(123, 77, 255, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.sol-card:hover .sol-icon-box {
  background: var(--primary);
  color: white;
  border-color: var(--primary-bright);
  box-shadow: 0 0 20px var(--primary-glow-heavy);
  transform: scale(1.1);
}

.sol-card ul {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sol-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.sol-card li svg {
  color: var(--primary-bright);
  flex-shrink: 0;
}

/* MIDDLE BANNER: YOU DONT NEED TO BE A BLOGGER */
.middle-cta-box {
  background: linear-gradient(135deg, rgba(123, 77, 255, 0.08) 0%, rgba(5, 5, 8, 0.6) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.middle-cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.middle-cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.middle-cta-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-white);
  font-family: var(--font-title);
  font-weight: 500;
}

.middle-cta-bullet svg {
  color: var(--error);
}

/* CHANNELS DETAILED SECTIONS */
.channel-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 0;
}

.channel-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.channel-mockup-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.channel-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Custom Mockup components */
.gmaps-mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 320px;
  background: #111216;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.map-grid-layer {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
}

.map-route-line {
  position: absolute;
  width: 150px;
  height: 80px;
  top: 40%;
  left: 30%;
  border-left: 3px dashed var(--primary-bright);
  border-bottom: 3px dashed var(--primary-bright);
  border-bottom-left-radius: 30px;
  opacity: 0.7;
}

.map-pin {
  position: absolute;
  top: 35%;
  left: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-pulse {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--primary-glow-heavy);
  border-radius: 50%;
  animation: map-pulse 2s infinite ease-out;
  z-index: 1;
}

.map-pin-icon {
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 2;
}

@keyframes map-pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-info-card {
  position: absolute;
  bottom: 1.5rem;
  left: 5%;
  right: 5%;
  background: rgba(20, 20, 28, 0.9);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  backdrop-filter: blur(8px);
}

.map-info-logo {
  background: var(--bg-black);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
}

.map-info-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}

.map-info-desc {
  font-size: 0.75rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ads-showcase-mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.search-ad-card {
  background: rgba(15, 15, 20, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.search-ad-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 133, 244, 0.4);
}

.social-ad-card {
  background: rgba(15, 15, 20, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.social-ad-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 48, 108, 0.4);
}

.social-ad-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.social-ad-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.social-ad-meta {
  display: flex;
  flex-direction: column;
}

.social-ad-sponsor {
  font-size: 0.65rem;
  color: var(--primary-bright);
  font-weight: 600;
}

.social-ad-body {
  font-size: 0.85rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.social-ad-media {
  height: 120px;
  background: linear-gradient(135deg, #13141c 0%, rgba(123, 77, 255, 0.1) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
}

.social-ad-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.7);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.social-ad-bar-btn {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

/* SECTION: PREVISIBILIDADE / MOCKUP AGENDA */
.previsibilidade {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.previsibilidade-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.forecast-dashboard {
  background: rgba(12, 12, 18, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.forecast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.forecast-tabs {
  display: flex;
  gap: 0.5rem;
}

.forecast-tab {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-gray);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.forecast-tab.active {
  background: var(--primary-glow);
  border-color: var(--primary-bright);
  color: var(--primary-bright);
}

.forecast-metric-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.forecast-metric-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 0.75rem;
}

.forecast-metric-val {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
}

.forecast-chart-container {
  height: 180px;
  position: relative;
  margin-top: 1rem;
}

.forecast-grid-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 30px;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
}

/* WHY VOID DIGITAL SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  padding: 2.5rem;
}

.why-card-grid {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(123, 77, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary-glow);
}

.why-card.highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(123, 77, 255, 0.12) 0%, rgba(5,5,8,0.7) 100%);
  border-color: rgba(123, 77, 255, 0.3);
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* FAQ ACCORDION SECTION */
.faq {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2rem;
  text-align: left;
  cursor: pointer;
  color: var(--text-white);
}

.faq-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-title {
  color: var(--primary-bright);
}

.faq-icon-shape {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-shape {
  background: var(--primary);
  border-color: var(--primary-bright);
  color: white;
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 2rem 2rem 2rem;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA / CONTACT FOOTER SECTION */
.cta-footer {
  padding: 10rem 0;
  text-align: center;
}

.cta-box {
  background: radial-gradient(ellipse at top, rgba(123, 77, 255, 0.15), transparent 60%), rgba(5,5,8,0.7);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 6rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px -10px var(--primary-glow);
}

.cta-box-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(123, 77, 255, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.cta-box h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.cta-support {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* Footer Signature */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
  background: #020203;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-desc {
  max-width: 320px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-list a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-list a:hover {
  color: var(--primary-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* LEAD CAPTURE POPUP FORM (Ugraded Onboarding Wizard) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  overflow-y: auto;
  padding: 4rem 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: rgba(8, 8, 12, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 123, 255, 0.2);
  width: 100%;
  max-width: 720px;
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  backdrop-filter: blur(20px);
  margin: 0 auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-gray);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: #00e5ff;
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.05);
}

/* Badge Premium */
.modal-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.modal-header h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 40%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-title);
  font-weight: 700;
}

.modal-header p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Progressive Progress Bar */
.modal-progress-bar {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.modal-progress-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.modal-progress-fill {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, #007bff 0%, #00e5ff 100%);
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-progress-text {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  color: #00e5ff;
  min-width: 75px;
  text-align: right;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}

/* Steps Transition */
.modal-form-step {
  display: none;
}

.modal-form-step.active {
  display: block;
  animation: modal-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Field Styles */
.form-group {
  margin-bottom: 2.2rem; /* Aumentado espaçamento entre as questões do modal */
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.required-star {
  color: #ff1744;
  margin-left: 0.15rem;
}

.optional-label {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-left: 0.25rem;
}

.modal-input {
  width: 100%;
  background: rgba(15, 15, 25, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 12px;
  padding: 0.95rem 1.25rem;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.modal-input::placeholder {
  color: var(--text-dim);
}

.modal-input:focus {
  border-color: #00e5ff;
  background: rgba(20, 20, 35, 0.8);
  outline: none;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.modal-textarea {
  min-height: 95px;
  resize: vertical;
}

/* Selectable Cards (Tiles) */
.modal-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.modal-binary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.modal-option-tile {
  position: relative;
  background: rgba(15, 15, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.95rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.modal-option-tile:hover {
  background: rgba(20, 20, 35, 0.7);
  border-color: rgba(0, 229, 255, 0.2);
}

.modal-option-tile input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.modal-option-tile input[type="radio"]::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #00e5ff;
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-smooth);
}

.modal-option-tile input[type="radio"]:checked {
  border-color: #00e5ff;
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

.modal-option-tile input[type="radio"]:checked::after {
  transform: scale(1);
}

/* Selected state for custom tile cards */
.modal-option-tile.selected {
  background: rgba(0, 229, 255, 0.08);
  border-color: #00e5ff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.option-tile-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
}

/* Error Alert box */
.modal-error-alert {
  color: #ff1744;
  font-size: 0.85rem;
  margin-top: 1rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  animation: modal-shake 0.3s ease;
}

@keyframes modal-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Footer controls */
.modal-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

/* Buttons upgrade: Blue/Cyan/Purple gradient for submitBtn */
.modal-form-footer .btn {
  padding: 0.85rem 1.6rem;
  font-size: 0.9rem;
}

/* Gradient primary button */
.modal-form-footer #modal-next-btn {
  background: linear-gradient(135deg, #007bff 0%, #00e5ff 50%, #7b4dff 100%);
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: white;
  transition: filter 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.25);
}

.modal-form-footer #modal-next-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

.modal-form-footer #modal-next-btn:active {
  transform: scale(0.98);
}

.modal-security-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 300;
}

/* Success screen visual state */
.modal-success-screen {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
  animation: modal-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-success-screen.active {
  display: block;
}

.modal-checkmark-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
}

.modal-checkmark {
  width: 70px;
  height: 70px;
  stroke: #00e676;
  stroke-width: 4;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: modal-draw-circle 0.6s ease-out forwards;
  fill: none;
}

.modal-checkmark-check {
  stroke-width: 4;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: modal-draw-check 0.4s 0.5s ease-out forwards;
  fill: none;
}

@keyframes modal-draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes modal-draw-check {
  to { stroke-dashoffset: 0; }
}

.modal-success-screen h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: white;
}

.modal-success-screen p {
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
  color: var(--text-gray);
}

/* Responsive adjustments for the upgraded Modal Onboarding Wizard */
@media (max-width: 768px) {
  .modal-content {
    padding: 2.25rem 1.5rem;
    border-radius: 20px;
  }

  .modal-header h3 {
    font-size: 1.6rem;
  }

  .modal-header p {
    font-size: 0.85rem;
  }

  .modal-binary-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .modal-form-footer {
    flex-direction: column;
    gap: 0.85rem;
  }

  .modal-form-footer .btn {
    width: 100% !important;
    justify-content: center;
  }

  .modal-form-footer #modal-prev-btn {
    order: 2; /* "Voltar" goes below "Avançar" */
  }

  .modal-form-footer #modal-next-btn {
    order: 1; /* "Avançar" or "Enviar" stays at the top */
  }
}

/* SCROLL REVEAL CLASESS (JavaScript triggered) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* RESPONSIVE LAYOUT MEDIA QUERIES (Mobile-first overrides) */

@media (max-width: 1200px) {
  .hero-mockup-wrapper {
    height: 440px;
  }
  .dashboard-mockup {
    height: 380px;
  }
  .google-ad-widget {
    left: -5%;
    width: 230px;
  }
  .whatsapp-widget {
    right: -4%;
    width: 230px;
  }
  .instagram-widget {
    left: 2%;
    bottom: -2%;
    width: 200px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-bullets {
    justify-content: center;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .channel-row, .channel-row.reverse {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .channel-mockup-col {
    order: -1;
  }
  
  .previsibilidade-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .why-card-grid {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .nav {
    display: none; /* simple mobile drawer could be added, but minimal cta is key */
  }
  
  .nav-actions .btn-secondary {
    display: none;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-card-grid {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .why-card.highlight {
    grid-column: span 1;
  }
  
  .middle-cta-box {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.8rem;
  }
  
  .middle-cta-content h3 {
    font-size: 1.8rem;
  }
  
  .middle-cta-bullets {
    align-items: center;
  }
  
  .middle-cta-bullet {
    justify-content: center;
    text-align: left;
    width: 100%;
    max-width: 320px;
  }
  
  .cta-box {
    padding: 4rem 1.5rem;
  }
  
  .cta-box h2 {
    font-size: 2.2rem;
  }
  
  .hero-bullets {
    grid-template-columns: 1fr;
    align-items: flex-start;
    max-width: 280px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
  }

  /* Responsive Hero Dashboard & Widgets */
  .hero-mockup-wrapper {
    height: 380px;
    margin-top: 2rem;
  }
  
  .dashboard-mockup {
    height: 320px;
    width: 100%;
    padding: 1.25rem;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
    height: calc(100% - 3rem);
    gap: 1rem;
  }
  
  .db-side {
    display: none; /* Hide active channels list to save mobile vertical space */
  }
  
  .db-stats-row {
    gap: 0.75rem;
  }
  
  .db-stat-card {
    padding: 0.75rem;
  }
  
  .db-stat-value {
    font-size: 1.3rem;
  }
  
  .chart-svg {
    height: 70px;
  }

  /* Reposition widgets on mobile to prevent overflow */
  .google-ad-widget, .instagram-widget {
    display: none;
  }
  
  .whatsapp-widget {
    bottom: 2%;
    right: 2%;
    left: auto;
    top: auto;
    width: 92%;
    max-width: 280px;
    animation: float-widget-2 5s infinite alternate ease-in-out;
  }
}

@media (max-width: 480px) {
  .header .container {
    padding: 0 1rem;
  }
  
  .void-logo-svg {
    height: 22px;
    width: 114px;
  }
  
  .nav-actions {
    gap: 0.5rem;
  }
  
  .nav-actions .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-ctas {
    width: 100%;
  }
}

/* Button Loading Spinner */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: btn-spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Google Forms Iframe Integration Styles
   ========================================================================== */
.iframe-container {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #ffffff; /* Fallback readable background for Google Forms */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-top: 1.5rem;
}

.google-form-iframe {
  width: 100%;
  height: 2388px;
  border: none;
  display: block;
}

/* Adjust modal padding and iframe heights for responsive breakpoints */
@media (max-width: 768px) {
  .modal-content {
    padding: 2.5rem 1rem 1rem 1rem !important;
  }
  .google-form-iframe {
    height: 2550px; /* Adjusted slightly taller for wrapping elements on tablet */
  }
}

@media (max-width: 480px) {
  .google-form-iframe {
    height: 2750px; /* Adjusted taller for small screen mobile phones */
  }
}
