/*
  SP SOLUÇÕES DIGITAIS — LUXURY TECH & BUSINESS INTELLIGENCE
  ──────────────────────────────────────────────────────────
  Background:    Grafite Profundo  #0F0F0F
  Surface:       #161616 / #1C1C1C
  Accent:        Azul Google       #4285F4
  Text:          Branco Puro       #FFFFFF
  Secundário:    Cinza Prestige    #999999
  Font:          Inter
*/

/* ================================================
   TOKENS
   ================================================ */
:root {
  --bg:         #000000;
  --bg-alt:     #050505;
  --surface:    #0F0F0F;
  --surface-lt: #121212;

  --white:      #FFFFFF;
  --black:      #000000;
  --body:       #A0A0A0;
  --muted:      #666666;
  --dim:        #333333;

  --blue-glow:  rgba(0,86,210,0.25);
  --blue:       #0056D2; /* Azul Royal */
  --green:      #0056D2; /* Era Verde, agora Azul Royal */
  --green-glow: rgba(0,86,210,0.4);

  --border:     rgba(0,86,210,0.15); 
  --border-md:  rgba(0,86,210,0.25);
  --border-lt:  rgba(0,86,210,0.1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-xs:  4px;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-pill:100px;

  --max-w: 1200px;
  --ease:  cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  /* Responsive Typography & Spacing */
  --fluid-h1: clamp(2.2rem, 8vw, 3.8rem);
  --fluid-h2: clamp(1.8rem, 6vw, 2.8rem);
  --fluid-sub: clamp(1rem, 2vw, 1.1rem);
  --container-pad: clamp(20px, 5vw, 40px);
}


/* ================================================
   RESET
   ================================================ */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1,h2,h3,h4 {
  font-family: var(--font);
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1.5px;
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
strong { font-weight:600; color:var(--white); }

.container { max-width:var(--max-w); margin:0 auto; padding:0 var(--container-pad); position:relative; z-index:1; }

.mobile-only { display: none; }
@media (max-width: 768px) {
  .mobile-only { display: block; }
}


/* ================================================
   HEADER — Luxury Minimal
   ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

.site-header.scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 1px 40px rgba(0,0,0,0.8);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: height 0.3s var(--ease);
}

.site-header.scrolled .header-container {
  height: 80px;
}

/* ─── Logo: Ícone Verde Apenas ─── */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 0;
  margin: 0;
}

.logo-img {
  width: clamp(140px, 15vw, 180px) !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0;
  padding: 0;
  margin: 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  filter: drop-shadow(0 0 10px rgba(0,86,210,0.2));
  transition: all .3s var(--ease);
}

.logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(0,86,210,0.3));
}

/* ─── Nav: Elegant Scale (isolado do logo) ─── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: color .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.nav-link--highlight {
  color: var(--blue);
  font-weight: 700;
}

.nav-link--highlight:hover {
  color: var(--white);
  background: var(--blue-subtle);
}

/* ─── CTA: Apple/Tesla Ghost Button ─── */
.header-cta-wrap {
  flex-shrink: 0;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: 14px 36px;
  border-radius: var(--r-pill);
  border: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: all .35s var(--ease);
  box-shadow: 0 4px 15px rgba(0,86,210,0.4);
}

.header-cta-btn:hover {
  background: #0045A8; /* Azul Royal escurecido */
  box-shadow: 0 8px 25px rgba(0,86,210,0.6);
  transform: translateY(-2px);
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Nav ─── */
@media (max-width: 1024px) {
  .header-container { height: 70px; justify-content: center; }
  .hamburger { position: absolute; right: var(--container-pad); }

  .logo-img { width: 120px !important; }

  .header-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    animation: navFadeIn .3s var(--ease-out);
  }

  .header-nav.open { display: flex; }
  @keyframes navFadeIn { from { opacity:0; } to { opacity:1; } }

  .nav-link {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.5px;
    padding: 18px 40px;
    color: var(--white);
  }

  .header-cta-wrap { display: none; }

  .header-cta-wrap.open {
    display: flex;
    position: fixed;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
  }

  .header-cta-wrap.open .header-cta-btn {
    padding: 20px 48px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}


.footer-logo-img--large {
  width: 324px !important; /* 180px * 1.8 = 324px */
  transition: transform .3s var(--ease);
}

.footer-logo-img--large:hover {
  transform: scale(1.05);
}

/* ================================================
   HERO — Luxury Impact
   ================================================ */
.hero {
  padding: 220px 0 80px; /* Aumentado para 220px para maior respiro com relação ao menu fixo */
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,86,210,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: stretch;
}

/* ─── Hero Text ─── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 3;
  padding: 20px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  padding: 0;
  position: relative;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: var(--fluid-h1);
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 100%;
  color: var(--white);
}

.hero-text h1 .accent-blue {
  /* Gradiente Azul Royal Consistente com Alto Contraste */
  background: linear-gradient(180deg, #1A6CFF 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;

  /* Sombra preta nítida para contraste absoluto sem borrar */
  filter: drop-shadow(2px 4px 0px #000000);
}

.glow {
  text-shadow: 0 0 20px rgba(0,86,210,0.8), 0 0 40px rgba(0,86,210,0.6) !important;
}

/* ─── Hero Triad (Visual Proof) ─── */
.hero-triad {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.triad-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.triad-icon {
  font-size: 20px;
  filter: drop-shadow(0 0 10px var(--blue-glow));
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  border-radius: 50%;
  padding: 4px;
}

.triad-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hero-stagger-1 { transition-delay: 0s !important; }
.hero-stagger-2 { transition-delay: 0.3s !important; }
.hero-stagger-3 { transition-delay: 0.6s !important; }
.hero-stagger-4 { transition-delay: 0.9s !important; }
.hero-stagger-5 { transition-delay: 1.2s !important; }
.hero-stagger-6 { transition-delay: 1.5s !important; }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--body);
  line-height: 1.9;
  margin-bottom: 56px;
  max-width: 500px;
}

/* ─── CTA Buttons ─── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 24px 56px;
  border-radius: var(--r-pill); /* Padrão do botão Fale com Estrategista */
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--ease-out);
  box-shadow: 0 6px 28px rgba(0,86,210,0.4);
}

/* ─── Pill & Glow Pulse ─── */
.btn-pill {
  border-radius: var(--r-pill);
}

.btn-glow-pulse {
  background: var(--blue) !important;
  color: #FFFFFF !important;
  font-weight: 800;
  box-shadow: 0 0 25px var(--blue-glow);
  animation: btnGlowPulse 2.2s infinite ease-in-out;
  border: none !important;
}

@keyframes btnGlowPulse {
  0% { box-shadow: 0 0 15px var(--blue-glow); transform: scale(1); }
  50% { box-shadow: 0 0 45px rgba(0,86,210, 0.8); transform: scale(1.03); }
  100% { box-shadow: 0 0 15px var(--blue-glow); transform: scale(1); }
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,86,210,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--body);
  background: transparent;
  padding: 20px 32px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(0,86,210,0.4);
  background: rgba(0,86,210,0.03);
}

/* ─── Hero Image — Parallax & Height Match ─── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 1;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  
  /* Borda difusa (fade extra suave) na base e na lateral esquerda */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 40%), linear-gradient(to top, transparent 0%, #000 35%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, #000 40%), linear-gradient(to top, transparent 0%, #000 35%);
  mask-composite: intersect;

  /* Realce e ambientação tecnológica - Luz de Contorno Verde & Glow Azul Profundo */
  filter: brightness(1.1) contrast(1.05) drop-shadow(0 0 2px var(--green)) drop-shadow(0 0 40px rgba(0, 102, 255, 0.4));
  animation: heroFloat 8s ease-in-out infinite;
  z-index: 2;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 25%), linear-gradient(to top, transparent 0%, #000 20%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 25%), linear-gradient(to top, transparent 0%, #000 20%);
}

/* ─── Hero Revenue Badge (Floating Element) ─── */
.hero-revenue-badge {
  position: absolute;
  bottom: 10%;
  left: 0;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 86, 210, 0.4);
  padding: clamp(12px, 2vw, 18px) clamp(16px, 3vw, 24px);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  z-index: 10;
  animation: badgeFloat 5s ease-in-out infinite;
  max-width: calc(100vw - 40px);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(5px); }
}

.badge-icon-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  font-size: 18px; /* Reduzido conforme solicitado */
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.hero-badge-pain {
  background: rgba(10, 10, 10, 0.45) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
}

.hero-badge-pain .badge-status-val {
  color: var(--white);
  opacity: 1;
  text-shadow: none;
  font-size: clamp(10px, 1.5vw, 12px);
  letter-spacing: 0.5px;
  font-weight: 700;
}

.image-glow-blue {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(66,133,244,0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}


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


/* ================================================
   SECTION SHARED
   ================================================ */
.section { padding: 60px 0; position: relative; z-index: 1; } /* Reduzido em 70% solicitado */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.section-title {
  font-size: var(--fluid-h2);
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.section-title.centered { margin-left:auto; margin-right:auto; text-align:center; }

.section-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.85;
  max-width: 520px;
}

.section-sub.centered { margin-left:auto; margin-right:auto; text-align:center; }


/* ================================================
   MÉTODO (3 PILARES) — Dashboard Cards
   ================================================ */
.method-section {
  background: #000;
  border: none;
}

.method-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.method-card {
  background: var(--surface);
  border: 1.5px solid var(--green);
  border-radius: var(--r-lg);
  padding: 56px 40px;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: visible; /* Prevent cutting any content */
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.method-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.3;
  word-wrap: break-word;
}

.method-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: auto; /* Push text to bottom if icons/titles vary */
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.3;
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.8),
    0 0 30px rgba(0,86,210,0.15);
}

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

/* ─── Method Icon — Premium Line Icon in Google Blue ─── */
.method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,86,210,0.25) 0%, rgba(0,86,210,0.05) 100%);
  border: 1px solid rgba(0,86,210,0.4);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 8px 16px rgba(0,0,0,0.4), 0 0 20px rgba(0,86,210,0.4);
  border-radius: var(--r-md);
  margin-bottom: 28px;
  color: var(--blue);
  flex-shrink: 0;
  transition: all .4s var(--ease);
}

.method-card:hover .method-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0,86,210,0.3) 0%, rgba(0,86,210,0.1) 100%);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 12px 24px rgba(0,0,0,0.6), 0 0 30px rgba(0,86,210,0.6);
}

.method-icon svg {
  color: var(--blue);
  stroke: var(--blue);
}

.method-step {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.method-step::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--green);
}

.method-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.2;
}

.method-card p {
  font-size: 18px; /* Legibilidade aumentada */
  font-weight: 400;
  color: var(--body);
  line-height: 1.6; /* Espaçamento solicitado */
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.method-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.method-checks li {
  font-size: 18px;
  font-weight: 500;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.method-checks li svg {
  color: var(--green);
  stroke: var(--green);
  flex-shrink: 0;
  opacity: 1;
}


/* ================================================
   SCARCITY STRATEGY — Performance Focus
   ================================================ */
.scarcity-section {
  background: #000;
  text-align: center;
}

.scarcity-block {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 48px 40px;
  border: 1px solid var(--green);
  border-radius: var(--r-lg);
  background: rgba(0, 86, 210, 0.03);
}

.scarcity-desc {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.8;
  max-width: 600px;
  margin: 24px auto 0;
}

.scarcity-desc strong {
  color: var(--green);
  font-weight: 700;
}

.why-now-block {
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.why-now-block .section-eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.why-now-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.9;
  text-align: center;
}

.why-now-text strong {
  color: var(--white);
}

.scarcity-cta {
  text-align: center;
}

/* Footer tagline — discrete line above copyright */
.copyright-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}


/* ================================================
   INDICADORES — Pilares da Estratégia
   ================================================ */
.indicators-section {
  background: #000;
}

.indicators-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.indicator-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 48px 36px;
  text-align: center;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.indicator-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.indicator-card:hover {
  border-color: rgba(0,86,210,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

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

.indicator-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,86,210,0.08);
  border: 1px solid rgba(0,86,210,0.2);
  margin-bottom: 28px;
  color: var(--green);
}

.indicator-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.indicator-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* Responsive: indicators stack on mobile */
@media (max-width: 992px) {
  .indicators-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 20px;
  }
}


/* ================================================
   CONVERSION — Diagnostic Form
   ================================================ */
.conversion-section {
  background: #000;
  border: none;
  padding: 60px 0; /* Reduzido em 70% solicitado */
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: flex-start;
}

.conversion-text {
  padding-top: 16px;
}

.conversion-text .section-title {
  max-width: 500px;
  font-weight: 600;
  line-height: 1.15;
}

.conversion-text .section-sub {
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 2;
  color: var(--body);
  max-width: 460px;
}

/* Investment tag — prestige badge */
.investment-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid #2A2A2A;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.investment-tag svg {
  flex-shrink: 0;
  color: var(--green);
  opacity: 1;
}

/* Scarcity badge */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
  opacity: 0.8;
}

.scarcity-badge svg { flex-shrink: 0; opacity: 0.8; }

/* ─── Minimalist Form — Clean Dark ─── */
.form-card {
  background: var(--surface);
  border: 1px solid #1A1A1A;
  border-radius: var(--r-lg);
  padding: 56px 48px;
  position: sticky;
  top: 156px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.form-card-header {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.form-card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.form-card-header p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Underline-only inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0 4px;
  border-bottom: 1px solid var(--border-md);
  transition: border-color .3s var(--ease);
}

.form-group:focus-within {
  border-color: var(--green);
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.form-group input {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  border: none;
  padding: 8px 0;
  outline: none;
  transition: color .2s;
  width: 100%;
}

.form-group input::placeholder {
  color: var(--dim);
  font-weight: 400;
}

/* Submit button — CTA Premium */
.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 22px 40px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: all .35s var(--ease-out);
  box-shadow: 0 10px 30px var(--blue-glow);
  position: relative;
  overflow: hidden;
}

/* Dominnance Map Image */
.dominance-map-wrapper {
  margin: 20px 0;
  width: 100%;
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dominance-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
}

.btn-submit:hover::before { transform: translateX(100%); }

.btn-submit:hover {
  background: var(--blue-dk, #3069cc); /* Azul Padronizado */
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(66, 133, 244, 0.4);
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85); /* Branco Fosco */
  margin-top: 15px; /* Respiro preciso do botão */
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1.4;
}

.form-privacy svg.privacy-lock {
  flex-shrink: 0;
  color: var(--blue);
  opacity: 1;
  margin-top: 2px;
}

.form-privacy strong {
  font-weight: 700;
  color: var(--white);
}

/* Disclaimer Premium (Diferencial Competitivo) */
.form-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md, 8px);
  padding: 24px;
  margin-top: 32px;
  text-align: left;
}

.disclaimer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
}

.disclaimer-title svg {
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

.disclaimer-text strong {
  color: var(--white);
  font-weight: 800;
}


/* ================================================
   SOCIAL PROOF NOTIFICATION — Widget
   ================================================ */
.social-proof-widget {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 98;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 12px 20px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  pointer-events: none;
}

.social-proof-widget.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
  pointer-events: auto;
}

.proof-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,86,210,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(0,86,210,0); }
}

.proof-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--body);
  line-height: 1.5;
}

.proof-text strong {
  color: var(--white);
  font-weight: 600;
}

.proof-time {
  font-size: 0.65rem;
  color: var(--dim);
  margin-top: 2px;
  display: block;
}

.proof-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 18px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: color .2s;
}

.proof-close:hover { color: var(--body); }


/* ================================================
   FOOTER — Executive Authority (Refined)
   ================================================ */
.site-footer {
  background: #000;
  padding: 40px 0 30px; /* Reduzido em 70% solicitado */
  color: var(--body);
  position: relative;
}

/* ─── Top Border ─── */
.footer-top-border {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.05);
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Colunas solicitado */
  gap: 40px;
  align-items: center; /* Alinhamento vertical centralizado */
}

/* ─── Column: Branding ─── */
.footer-column.branding {
  max-width: 440px;
}

.footer-logo {
  display: block;
  margin-bottom: 32px;
}

.footer-logo-elite {
  width: 170px !important; /* Reduzido levemente conforme solicitado */
  min-width: 170px !important;
  filter: drop-shadow(0 0 15px rgba(0,86,210,0.2));
  transition: transform .4s var(--ease-out);
}

.footer-logo-elite:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(0,86,210,0.4));
}

.footer-slogan {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 16px;
}

.company-name {
  color: var(--white);
  font-weight: 700;
}

.footer-support {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

/* ─── Column: Nav & Contact Shared ─── */
.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 32px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body);
  transition: all .3s var(--ease);
}

.footer-nav-list a:hover {
  color: var(--blue);
  transform: translateX(4px);
}

/* ─── Scarcity Trigger (Alert Style) ─── */
.scarcity-trigger {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(66,133,244,0.08); /* Slightly lighter */
  border: 1px solid var(--blue); /* Google Blue Border */
  border-radius: var(--r-sm);
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  animation: dotPulse 2s infinite;
}

.scarcity-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* ─── Contact & Socials ─── */
.status-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pulse-green {
  width: 8px;
  height: 8px;
  background: #0056D2;
  border-radius: 50%;
  position: relative;
}

.pulse-green::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #0056D2;
  animation: dotPulse 2s infinite;
}

.contact-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--body);
}

.contact-info .availability {
  color: var(--white);
  font-weight: 500;
}

.location {
  margin-top: 4px;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 0; /* Removido para alinhar melhor na vertical */
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  color: var(--muted);
  background: transparent;
  transition: all .4s var(--ease);
}

.social-icon:hover {
  color: #000;
  background: var(--green); /* Hover Verde WhatsApp solicitado */
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--green-glow);
}

/* ─── Footer Bottom ─── */
.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding: 32px 0;
}

.copyright {
  font-size: 12px;
  color: #333;
  line-height: 1.6;
  text-align: left;
}


/* ================================================
   WHATSAPP FLOAT — Premium Pill Button
   ================================================ */

/* Wrapper: posiciona todo o conjunto */
.wa-float-wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: flex;
  align-items: center;
}

/* Pill Button — Azul Google, Ícone + Texto */
.fixed-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #FFFFFF;
  border-radius: var(--r-pill);
  border: none;
  padding: 16px 28px 16px 22px;
  cursor: pointer;
  box-shadow:
    0 8px 32px rgba(66,133,244,0.45),
    0 2px 12px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s;
  white-space: nowrap;
  animation: waMagneticPulse 3s infinite;
}

@keyframes waMagneticPulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(66,133,244,0.45), 0 2px 12px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  }
  50% {
    box-shadow: 0 0 40px rgba(66,133,244,0.8), 0 0 0 4px rgba(66,133,244,0.3);
  }
}

.fixed-wa:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--blue-dk);
  box-shadow:
    0 14px 48px rgba(66,133,244,0.55),
    0 0 0 1px rgba(66,133,244,0.3),
    0 4px 16px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* WhatsApp filled icon */
.wa-pill-icon {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Label text */
.wa-btn-label {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}


/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

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

.method-grid .reveal:nth-child(2) { transition-delay: .12s; }
.method-grid .reveal:nth-child(3) { transition-delay: .24s; }

.metrics-strip .reveal:nth-child(2) { transition-delay: .08s; }
.metrics-strip .reveal:nth-child(3) { transition-delay: .16s; }
.metrics-strip .reveal:nth-child(4) { transition-delay: .24s; }


/* ================================================
   RESPONSIVE — Tablet
   ================================================ */
@media (max-width: 992px) {
  .container { padding: 0 28px; }
  .section { padding: 120px 0; }

  .hero { padding: 200px 0 100px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; text-align: center; }
  .hero-text { align-items: center; }
  .hero-text h1 { font-size: 2.6rem; max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-tag { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; justify-content: center; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
  .hero-revenue-badge { left: 50%; transform: translateX(-50%); bottom: -20px; width: 90%; justify-content: center; animation: badgeFloatMobile 5s ease-in-out infinite; }
  
  @keyframes badgeFloatMobile {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-10px) translateX(-50%); }
  }
  .hero-triad { align-items: center; }

  .section-title { font-size: 2.2rem; }

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

  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3), .metric-item:nth-child(4) { border-top: 1px solid var(--border); }
  .metric-item:nth-child(3) { border-right: 1px solid var(--border); }

  .conversion-grid { grid-template-columns: 1fr; gap: 56px; }
  .conversion-text { text-align: center; }
  .conversion-text .section-sub { margin-left: auto; margin-right: auto; }
  .conversion-text .section-eyebrow { justify-content: center; }
  .scarcity-badge { margin-left: auto; margin-right: auto; }
  .form-card { position:static; max-width:520px; margin:0 auto; }

  /* Footer Responsivo Mobile/Tablet */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-nav-list {
    align-items: center;
  }
  .social-links {
    justify-content: center;
  }

  .social-proof-widget { 
    max-width: 340px;
    width: calc(100% - 32px);
    bottom: 90px; 
    left: 16px; 
    right: auto;
    padding: 10px 14px;
    font-size: 12px;
  }
  .proof-text { font-size: 11px; }
  .proof-dot { width: 6px; height: 6px; }
}


/* ================================================
   RESPONSIVE — Mobile
   ================================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .hero { padding: 160px 0 64px; }
  .hero-text h1 { font-size: 2rem; padding: 0 20px; }
  .hero-sub { font-size: 1rem; margin-bottom: 40px; padding: 0 20px; }
  .hero-image-wrap { max-width: 280px; overflow: hidden; }
  .hero-img, .dominance-map-img { max-width: 100% !important; height: auto; }

  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-actions p { text-align: center; margin: 0 auto !important; }
  .btn-primary, .btn-ghost, .btn-submit { width: 100%; justify-content: center; padding: 18px 24px; font-size: 13px; }
  .btn-primary svg { width: 16px; height: 16px; }

  .section-title { font-size: 1.7rem; }

  .metrics-strip { grid-template-columns: 1fr; }
  .metric-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .metric-item:last-child { border-bottom: none; }

  .form-card { padding: 32px 24px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links-row { justify-content: center; }

  .wa-float-wrap { bottom: 20px; right: 16px; }
  .fixed-wa { padding: 14px 20px 14px 18px; gap: 8px; }
  .wa-btn-label { font-size: 13px; }

  .social-proof-widget { 
    bottom: 100px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .method-grid { grid-template-columns: 1fr; gap: 16px; }
}


/* ================================================
   PRINT
   ================================================ */
@media print {
  .site-header, .fixed-wa, .hamburger, .social-proof-widget { display:none !important; }
  .section { padding:40px 0; }
  .reveal { opacity:1 !important; transform:none !important; }
  body { background:#FFF; color:#333; }
  body::before { display:none; }
}
/* ================================================
   FIX MOBILE FINAL
   ================================================ */

@media (max-width: 768px) {

  .form-card {
    position: relative !important;
    top: 0 !important;
  }

  .header-container {
    height: 70px !important;
  }

  .hero {
    padding: 140px 0 60px !important;
  }

  .btn-primary {
    padding: 16px 24px !important;
  }

}
/* ===== FIX RESPONSIVO FINAL MOBILE ===== */
@media (max-width: 768px) {

  /* HEADER */
  .header-container {
    height: 70px !important;
  }

  /* HERO */
  .hero {
    padding: 140px 0 60px !important;
  }

  /* TITULO (CORTE RESOLVIDO) */
  h1, .hero h1, .headline, .hero-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    padding: 0 15px !important;
    text-align: center !important;
  }

  /* TEXTO */
  p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    padding: 0 10px !important;
    text-align: center;
  }

  /* BOTÃO */
  .btn-primary {
    width: 90% !important;
    max-width: 320px !important;
    padding: 16px 24px !important;
    margin: 20px auto !important;
    display: block !important;
  }

  /* FORM / CARD */
  .form-card {
    position: relative !important;
    top: 0 !important;
  }

  /* DIAGNOSTICO */
  .diagnostico-box {
    width: 90% !important;
    margin: 20px auto !important;
    padding: 12px !important;
    font-size: 14px !important;
  }

  /* REMOVE POPUP QUE ATRAPALHA */
  .notification,
  .popup,
  .toast {
    display: none !important;
  }

}

/* ================================================
   ADJUSTMENTS PER USER REQUEST (<768px)
   ================================================ */
@media (max-width: 768px) {
  /* HERO SECTION */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 40px !important;
  }
  
  .hero-visual {
    order: 2 !important; /* Image below */
    justify-content: center !important;
  }
  
  .hero-text {
    order: 1 !important; /* Text first */
    align-items: center !important;
    text-align: center !important;
  }

  /* TEXTO */
  .hero-text h1 {
    font-size: 1.8rem !important;
    padding: 0 20px !important;
    line-height: 1.2 !important;
  }
  
  .hero-sub {
    font-size: 1rem !important;
    padding: 0 20px !important;
    margin-bottom: 30px !important;
  }

  /* IMAGENS */
  img, 
  .hero-img, 
  .dominance-map-img, 
  .logo-img {

/* ================================================
   FINAL & DEFINITIVE MOBILE REFINEMENTS (<768px)
   ================================================ */
@media (max-width: 768px) {
  /* GLOBAL BOX MODEL & BACKGROUND */
  *, *::before, *::after {
    box-sizing: border-box !important;
  }
  
  body, html, section, .section, footer, .container, main {
    background: #000000 !important;
    overflow-x: hidden !important;
  }

  /* HEADLINE REFINEMENT - NO CUTTING */
  h1, .hero-text h1, .section-title {
    font-size: 22px !important;
    padding: 0 20px !important;
    max-width: 100% !important;
    text-align: center !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  /* HERO BADGE (STATUS INVISÍVEL) */
  .hero-revenue-badge {
    display: block !important;
    position: relative !important;
    width: auto !important;
    max-width: 260px !important;
    margin: -30px auto 20px !important;
    padding: 12px 18px !important;
    left: 0 !important;
    transform: none !important;
    z-index: 10 !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  }
  
  .badge-icon { font-size: 14px !important; }
  .badge-status-val { font-size: 10px !important; }

  /* HERO IMAGE REFINEMENT */
  .hero-visual {
    display: flex !important;
    justify-content: center !important;
    margin-top: 10px !important;
  }
  
  .hero-img {
    max-width: 70% !important;
    height: auto !important;
    margin: 0 auto !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  /* ACTION BUTTONS (CTA) */
  .btn-primary, 
  .btn-ghost, 
  .btn-submit,
  .header-cta-btn,
  #hero-cta,
  #scarcity-cta-btn,
  .btn, button, 
  a[href*="wa.me"], 
  a[href*="#diagnostico"] {
    width: 90% !important;
    max-width: 320px !important;
    padding: 14px 20px !important;
    margin: 15px auto !important;
    display: block !important;
    text-align: center !important;
    font-size: 14px !important;
    white-space: normal !important;
    height: auto !important;
    line-height: 1.4 !important;
    border-radius: 50px !important;
  }

  /* FLOATING WHATSAPP BUTTON (DISCRETE) */
  .wa-float-wrap {
    bottom: 15px !important;
    right: 15px !important;
    width: auto !important;
    max-width: 180px !important;
    z-index: 1000 !important;
    position: fixed !important;
  }
  
  .fixed-wa {
    width: auto !important;
    max-width: 100% !important;
    padding: 10px 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  
  .wa-btn-label {
    font-size: 11px !important;
    white-space: nowrap !important;
  }
  
  .wa-pill-icon { width: 16px !important; height: 16px !important; }

  /* NOTIFICATION POPUP (SOCIAL PROOF) */
  .social-proof-widget {
    bottom: 85px !important;
    left: 15px !important;
    right: 15px !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    padding: 10px 15px !important;
    font-size: 11px !important;
    z-index: 999 !important;
    background: rgba(15, 15, 15, 0.95) !important;
  }
  
  .proof-text { font-size: 10px !important; }

  /* SECTION BREATHING ROOM */
  section, .section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
