/* ════════════════════════════════════════════════════════════════════
   MRW DIGITAL PLATFORM — PREMIUM DESIGN SYSTEM (SaaS V2 + ADVANCED MOTION)
   Core Architecture: Pure CSS3, Tokenized Variables, HostGator Speed Optimized
   No Orange — Tech Accent: Electric Cyan (#0EA5E9 / #00F0FF) & Azure Blue (#2563EB)
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand Core Colors */
  --mrw-blue-deep: #0B132B;
  --mrw-blue-brand: #0F5EA8;
  --mrw-blue-light: #1D70B8;
  
  /* Accent Conversion Colors (Electric Cyan & Royal Azure - ZERO ORANGE) */
  --accent-cyan: #0EA5E9;
  --accent-cyan-bright: #00F0FF;
  --accent-cyan-glow: rgba(14, 165, 233, 0.25);
  --accent-azure: #2563EB;
  --accent-azure-light: #38BDF8;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0EA5E9 0%, #00F0FF 50%, #3B82F6 100%);
  --grad-text: linear-gradient(135deg, #38BDF8 0%, #00F0FF 40%, #60A5FA 70%, #0EA5E9 100%);
  --grad-dark-card: linear-gradient(180deg, rgba(20, 27, 41, 0.75) 0%, rgba(13, 17, 26, 0.95) 100%);
  --grad-border: linear-gradient(135deg, rgba(14, 165, 233, 0.5), rgba(255, 255, 255, 0.05));
  --grad-glow: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.2) 0%, transparent 70%);

  /* Dark Mode Default Theme Tokens */
  --bg-main: #070A11;
  --bg-surface: #0D121F;
  --bg-surface-hover: #141B2D;
  --bg-card: rgba(15, 22, 36, 0.8);
  --bg-glass: rgba(13, 18, 31, 0.88);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(14, 165, 233, 0.5);
  
  /* Text & Typography */
  --text-main: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-inverse: #070A11;

  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-cyan: 0 8px 32px rgba(14, 165, 233, 0.3);

  /* Structure & Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container-max: 1240px;
  --header-height: 92px;

  /* Motion */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Overrides */
[data-theme="light"] {
  --bg-main: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-hover: #F1F5F9;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-glass: rgba(255, 255, 255, 0.88);
  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-hover: rgba(14, 165, 233, 0.5);

  --text-main: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --grad-dark-card: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--bg-main);
  transition: background-color var(--tr-normal), color var(--tr-normal);
}

/* Cyber Grid Pattern Background Overlay */
.cyber-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, transparent 80%);
}

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

/* Text Gradient & Shimmer Motion */
.tg {
  background: var(--grad-text);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  animation: textShimmer 6s ease infinite;
}

@keyframes textShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Section Header Typography */
.s-hdr {
  margin-bottom: 56px;
  text-align: left;
}

.s-hdr.c {
  text-align: center;
}

.s-eye {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.s-eye::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan-bright);
  animation: dotPulse 2s ease-in-out infinite;
}

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

.s-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.s-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 680px;
  font-weight: 400;
  line-height: 1.6;
}

.s-hdr.c .s-sub {
  margin: 0 auto;
}

/* Buttons System */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--grad-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cyan);
  transition: all var(--tr-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00F0FF 0%, #2563EB 100%);
  opacity: 0;
  transition: opacity var(--tr-fast);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(14, 165, 233, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--bg-surface);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: all var(--tr-fast);
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-3px) scale(1.02);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all var(--tr-fast);
}

.btn-wa:hover {
  background: #25D366;
  color: #000000;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon-svg svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Glass Cards & Bento Base com MOVIMENTO DINÂMICO NO MOUSEOVER */
.gcard {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gcard::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

/* MOVIMENTO INTENSIFICADO DOS CARDS NO MOUSEOVER */
.gcard:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45), 0 0 32px rgba(14, 165, 233, 0.25);
}

.gcard:hover::after {
  transform: rotate(30deg) translateY(100%);
}

/* ════════════════════════════════════════════════════════════════════
   NAVBAR & HEADER
   ════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--tr-normal), border var(--tr-normal);
}

.navbar-inner {
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--tr-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-links a:hover {
  color: var(--accent-cyan);
}

.badge-new {
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--grad-primary);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.theme-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: scale(1.08);
}

.theme-btn svg {
  width: 20px;
  height: 20px;
}

.navbar-cta {
  padding: 10px 20px;
  background: var(--grad-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--tr-fast);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
}

.navbar-cta:hover {
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--tr-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════
   HERO SECTION (TAMANHO AMPLIADO DA IMAGEM + EFEITO ZOOM IN / ZOOM OUT)
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-glow-main {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.24) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

/* HIERARQUIA AMPLIADA: 1fr 1.15fr DANDO MAIOR DESTAQUE PARA A IMAGEM DO HERO */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: all var(--tr-fast);
}

.hero-pill:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.hero-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 2;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-bar-wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-v-bar {
  width: 4px;
  background: var(--grad-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-sub-title {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: 'JetBrains Mono', monospace;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* HERO RIGHT — TAMANHO AUMENTADO & EFEITO ZOOM IN / ZOOM OUT NO MOUSEOVER */
.hero-glass-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 6px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.5) 0%, rgba(37, 99, 235, 0.2) 50%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(14, 165, 233, 0.25);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  cursor: pointer;
}

.hero-glass-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 70px rgba(14, 165, 233, 0.4);
}

.hero-img-wrap {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 520px; /* TAMANHO DA IMAGEM DO HERO AUMENTADO */
  background: #080C14;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.06) brightness(0.95);
  display: block;

  /* EFEITO ZOOM IN E ZOOM OUT SUAVE NO MOUSEOVER */
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  transform: scale(1);
}

/* EFEITO ZOOM IN QUANDO PASSA O MOUSE */
.hero-glass-frame:hover .hero-img-wrap img,
.hero-img-wrap:hover img {
  transform: scale(1.09); /* ZOOM IN FLUIDO */
  filter: contrast(1.1) brightness(1);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 10, 17, 0.55) 0%,
    transparent 35%,
    transparent 75%,
    rgba(7, 10, 17, 0.3) 100%
  ),
  linear-gradient(
    to top,
    rgba(7, 10, 17, 0.75) 0%,
    transparent 45%
  );
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color-hover);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md), 0 0 24px rgba(14, 165, 233, 0.25);
  animation: badgeFloat 4s ease-in-out infinite alternate;
  z-index: 2;
}

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

.hfb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.hfb-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.hfb-num {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
}

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

/* ════════════════════════════════════════════════════════════════════
   TICKER INFINITO / MARQUEE
   ════════════════════════════════════════════════════════════════════ */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
  position: relative;
}

.ticker-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.ticker-item {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.ticker-item::after {
  content: '✦';
  color: var(--accent-cyan);
  font-size: 0.8rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════════
   SEÇÃO "PARA QUEM É" (BENTO GRID SEGMENTOS)
   ════════════════════════════════════════════════════════════════════ */
.forwhom {
  padding: 100px 0;
  position: relative;
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.seg-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seg-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  transition: transform var(--tr-fast);
}

.seg-card:hover .seg-icon {
  transform: scale(1.12);
  background: rgba(14, 165, 233, 0.2);
}

.seg-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.seg-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.seg-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════════════
   SEÇÃO DIFERENCIAL ("O QUE MUDA NO SEU NEGÓCIO")
   ════════════════════════════════════════════════════════════════════ */
.feature {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ZOOM IN NA FOTO SECUNDÁRIA NO MOUSEOVER */
.feature-img:hover img {
  transform: scale(1.08);
}

.fi-pills {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fi-pill {
  padding: 6px 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fi-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 2;
}

.feature-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 10, 17, 0.95) 100%);
}

.fi-overlay-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.fi-overlay-title span {
  color: var(--accent-cyan-bright);
}

.fi-overlay-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

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

.f-check {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.f-check-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.f-check-ico svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.f-check-txt strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.f-check-txt span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════════════
   SEÇÃO SERVIÇOS
   ════════════════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  position: relative;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.svc-card {
  display: flex;
  flex-direction: column;
}

.svc-card.hl {
  border-color: var(--accent-cyan);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08) 0%, rgba(13, 18, 31, 0.85) 100%);
  box-shadow: var(--shadow-cyan);
}

.svc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.svc-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.svc-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.svc-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
}

.svc-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr-fast);
}

.svc-link:hover {
  color: var(--accent-cyan);
}

/* ════════════════════════════════════════════════════════════════════
   CASES DE SUCESSO (MOTION SLIDER + LIGHTBOX)
   ════════════════════════════════════════════════════════════════════ */
.cases-sec {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.cases-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  padding: 20px 0;
}

.cases-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: casesMarquee 45s linear infinite;
}

.cases-track:hover {
  animation-play-state: paused;
}

.case-card {
  width: 320px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--tr-fast);
  background: #000;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity var(--tr-fast);
  opacity: 0.85;
}

.case-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-cyan);
}

.case-card:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 10, 17, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.case-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.case-title-txt {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
}

.case-zoom-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.case-zoom-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

@keyframes casesMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7, 10, 17, 0.92);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-normal);
  padding: 24px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color-hover);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(14, 165, 233, 0.3);
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.lightbox-close:hover {
  background: var(--accent-cyan);
  color: #000000;
}

/* ════════════════════════════════════════════════════════════════════
   SHOWCASE CRM + IA (BANNER IMERSIVO)
   ════════════════════════════════════════════════════════════════════ */
.ai-sec {
  padding: 100px 0;
  position: relative;
}

.ai-inner {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-color-hover);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(14, 165, 233, 0.15);
  position: relative;
  overflow: hidden;
}

.ai-eye {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.ai-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}

.ai-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ai-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: border-color var(--tr-fast), transform var(--tr-fast);
}

.ai-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}

.ai-card.full {
  grid-column: span 2;
}

.ai-card-t {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.ai-card-d {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════════════
   SEÇÃO "COMO FUNCIONA" (PROCESS STEPS)
   ════════════════════════════════════════════════════════════════════ */
.how {
  padding: 100px 0;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════════════
   RESULTADOS & DEPOIMENTOS
   ════════════════════════════════════════════════════════════════════ */
.results {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.results-nums {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rnum-card {
  padding: 24px;
  text-align: center;
}

.rnum {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-cyan);
  font-family: 'JetBrains Mono', monospace;
  display: block;
}

.rnum-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.testi-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-card {
  padding: 28px;
}

.testi-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 16px;
}

.testi-name {
  font-weight: 700;
  color: var(--accent-cyan);
}

.testi-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════════
   FORMULÁRIO MULTI-STEP DE DIAGNÓSTICO
   ════════════════════════════════════════════════════════════════════ */
.form-sec {
  padding: 100px 0;
  position: relative;
}

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

.ben-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.ben-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.ben-ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.ben-txt strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.ben-txt span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Form Card Container */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-hover);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
}

.step-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.step-dot {
  flex: 1;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  transition: background var(--tr-fast);
}

.step-dot.active {
  background: var(--accent-cyan);
}

.progress-track {
  height: 2px;
  background: var(--border-color);
  margin-bottom: 24px;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 33.3%;
  background: var(--grad-primary);
  transition: width var(--tr-normal);
}

.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.req {
  color: var(--accent-cyan);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--tr-fast);
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px var(--accent-cyan-glow);
}

.err {
  font-size: 0.8rem;
  color: #EF4444;
  display: none;
}

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

.opt-label {
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--tr-fast);
}

.opt-label input {
  display: none;
}

.opt-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  transition: all var(--tr-fast);
}

.opt-label.selected {
  border-color: var(--accent-cyan);
  background: rgba(14, 165, 233, 0.1);
}

.opt-label.selected .opt-dot {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
}

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.btn-back-form {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.btn-next-form {
  padding: 14px 28px;
  background: var(--grad-primary);
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

.form-disclaimer a {
  color: var(--accent-cyan);
}

.success-box {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.success-ico-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-ico-wrap svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

/* ════════════════════════════════════════════════════════════════════
   CTA FINAL BANNER
   ════════════════════════════════════════════════════════════════════ */
.cta-sec {
  padding: 100px 0;
  background: var(--bg-surface);
  text-align: center;
  position: relative;
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-cyan);
  stroke-width: 2.5;
  fill: none;
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER & PARTNER BADGES
   ════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-inner > div:first-child img {
  height: 85px !important;
  width: auto;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color var(--tr-fast);
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

/* Official Partner Logos Bar */
.footer-partners-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 36px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 48px;
}

.footer-partners-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin: 0;
}

.footer-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.partner-badge img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-badge img:hover {
  transform: translateY(-2px) scale(1.04);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--accent-cyan);
}

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform var(--tr-fast);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Reveal Classes for Motion System */
.reveal-fade-up {
  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-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════
   SYSTEM RESPONSIVE BREAKPOINTS (TABLET & MOBILE OPTIMIZATION)
   ════════════════════════════════════════════════════════════════════ */

/* TABLET (1024px e abaixo) */
@media (max-width: 1024px) {
  .hero-inner, .feature-grid, .ai-inner, .results-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-right {
    order: 2;
  }
  
  .hero-left {
    order: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-floating-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: auto;
  }
}

/* MOBILE (768px e abaixo) */
@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Header & Mobile Drawer Navigation */
  .navbar-links, .navbar-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(7, 10, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 20px 32px;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  }

  .mobile-menu a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu .btn-primary {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
  }

  /* Hero Section Mobile */
  .hero {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    line-height: 1.15;
  }

  .hero-pills {
    gap: 6px;
  }

  .hero-pill {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

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

  .hero-actions .btn-primary, 
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stat {
    padding: 16px;
    text-align: center;
  }

  .hero-floating-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  /* Section Headers & Typography */
  .s-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .s-sub {
    font-size: 0.95rem;
  }

  /* Cases Carousel Mobile Card Dimensions */
  .cases-sec .case-card {
    width: 240px;
    height: 330px;
    border-radius: 14px;
  }

  /* Forms & Grids Mobile */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .field-row, .opt-grid, .ai-cards {
    grid-template-columns: 1fr;
  }

  .ai-card.full {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  /* Floating WhatsApp Mobile Button */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* SMALL MOBILE (480px e abaixo) */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo img {
    height: 54px !important;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .footer-partners-logos {
    gap: 20px 24px;
  }

  .partner-badge img {
    height: 42px;
  }
}
