/* ============================================================
   Conectamais Telecom — Landing Page Styles
   Mobile-first | Clean & Modern
   ============================================================ */

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

:root {
  --blue:        #4158D0;
  --purple:      #C850C0;
  --green:       #3DD68C;
  --green-dark:  #25A96A;
  --gradient:    linear-gradient(135deg, #4158D0 0%, #C850C0 50%, #3DD68C 100%);
  --gradient-h:  linear-gradient(90deg, #4158D0 0%, #C850C0 50%, #3DD68C 100%);
  --dark:        #0F172A;
  --dark-2:      #1E293B;
  --mid:         #475569;
  --light:       #94A3B8;
  --bg-off:      #F8FAFC;
  --bg-white:    #FFFFFF;
  --whatsapp:    #25D366;
  --whatsapp-d:  #1DA851;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(65, 88, 208, 0.10);
  --shadow-lg:   0 8px 40px rgba(65, 88, 208, 0.18);
  --transition:  all 0.3s ease;
  --header-h:    72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { color: var(--mid); line-height: 1.75; }

.text-gradient {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }
section:nth-child(even) { background: var(--bg-off); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(65,88,208,0.30);
}
.btn-primary:hover {
  background: #3449b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(65,88,208,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(65,88,208,0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cloud {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-brand-img {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-2);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }

.nav-cta .btn { padding: 10px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 24px 20px;
    border-bottom: 1px solid #e2e8f0;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open a { font-size: 1rem; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  /* Ocupa exatamente o viewport — svh desconta barra do browser no mobile */
  min-height: 100svh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Espaço reservado para o header fixo */
  padding-top: var(--header-h, 72px);
  padding-bottom: clamp(24px, 4vh, 48px);
  background: linear-gradient(160deg, #F0F4FF 0%, #FAF5FF 50%, #F0FFF8 100%);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Fallback para browsers sem suporte a svh */
@supports not (height: 100svh) {
  .hero { min-height: 100vh; height: 100vh; }
}

.hero > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,88,208,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,214,140,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(65,88,208,0.08);
  border: 1px solid rgba(65,88,208,0.15);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: clamp(12px, 2vh, 20px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-pre {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: var(--mid);
  padding-left: 14px;
  border-left: 3px solid var(--blue);
  margin-bottom: clamp(10px, 1.5vh, 16px);
  line-height: 1.4;
}

.hero-title {
  margin-bottom: clamp(10px, 2vh, 20px);
  font-weight: 900;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(14px, 2vh, 20px);
  max-width: 500px;
}

.hero-nots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(20px, 3vh, 36px);
}

.hero-nots li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 500;
  color: var(--dark-2);
}

.hero-not-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  color: #EF4444;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(20px, 3vh, 40px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
}

.trust-item .icon { font-size: 1rem; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(12px, 2vh, 24px) clamp(20px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: rgba(65,88,208,0.12);
  z-index: -1;
}

.hero-card-logo {
  margin: 0 auto clamp(6px, 1vh, 10px);
  width: 240px !important;
}

.hero-card-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card h3 {
  margin-bottom: 8px;
  color: var(--dark);
}

.hero-card p {
  font-size: 0.9rem;
}

.hero-card-stats {
  display: flex;
  justify-content: space-around;
  margin-top: clamp(14px, 2vh, 24px);
  padding-top: clamp(14px, 2vh, 24px);
  border-top: 1px solid #e2e8f0;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
}

.stat span { font-size: 0.75rem; color: var(--light); }

@media (max-width: 768px) {
  /* ── NAV: transparente sobre hero dark ── */
  .header {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header.scrolled {
    background: rgba(10, 16, 35, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(255,255,255,0.07);
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  }
  /* Remove hambúrguer no mobile */
  .nav-toggle { display: none !important; }

  /* Logo maior no mobile */
  .nav-cloud { height: 46px; }
  .nav-brand-img { height: 28px; }

  /* ── HERO: dark navy profundo ── */
  .hero {
    height: auto;
    padding: 0;
    background: linear-gradient(155deg, #080e22 0%, #111e4a 55%, #090e20 100%) !important;
  }
  /* Remove os brilhos decorativos claros */
  .hero::before, .hero::after { display: none !important; }

  .hero > .container {
    padding: 0;
    max-width: 100%;
  }

  /* Grid vira bloco — cada filho controla seu próprio espaço */
  .hero-inner { display: block; }

  /* Primeira tela: conteúdo de texto preenche 100svh */
  .hero-content {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 28px 110px;
  }

  /* Textos adaptados para fundo escuro */
  .hero-badge {
    background: rgba(65, 88, 208, 0.20);
    border-color: rgba(65, 88, 208, 0.50);
    color: #7B9CF7;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    box-shadow: 0 0 12px rgba(65,88,208,0.25);
  }
  .hero-pre {
    color: rgba(255,255,255,0.6);
    border-left-color: var(--blue);
    font-size: 0.92rem;
  }
  .hero-title {
    color: #fff;
    font-size: clamp(2.1rem, 8.5vw, 2.9rem);
    line-height: 1.13;
  }
  /* Destaque do título: branco puro — premium, sem ruído visual */
  .hero-title .text-gradient {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
    opacity: 0.92;
  }
  .hero-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.97rem;
    margin-top: 14px;
  }
  .hero-nots li { color: rgba(255,255,255,0.75); }
  .hero-not-icon {
    background: none;
    color: #EF4444;
    font-size: 1.2rem;
    font-weight: 900;
    width: auto;
    height: auto;
    border-radius: 0;
  }
  .hero-trust {
    margin-top: 22px;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

  /* Remove botões do hero — sticky bar faz esse papel */
  .hero-actions { display: none !important; }

  /* Segunda "dobra": card como seção própria */
  .hero-visual {
    order: unset;
    background: #fff;
    padding: 40px 24px 48px;
    border-top: 1px solid rgba(0,0,0,0.07);
  }
  .hero-card {
    max-width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
  }
  .hero-card-logo { width: 65% !important; }
}

/* ============================================================
   SECTION 2 — PROBLEMA
   ============================================================ */
.problem {
  background: var(--dark) !important;
  color: #fff;
}

.problem h2 { color: #fff; }
.problem p { color: rgba(255,255,255,0.7); }

.problem-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.problem-header h2 { margin-bottom: 16px; }

.problem-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.problem-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.problem-block:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(65,88,208,0.3);
  transform: translateY(-4px);
}

.problem-block .pb-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.problem-block h3 { color: #fff; margin-bottom: 8px; }

.problem-quote {
  text-align: center;
  padding: 40px;
  background: var(--blue);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.problem-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-size: 200px;
  color: rgba(255,255,255,0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.problem-quote p strong {
  color: #fff;
  font-weight: 800;
}

.problem-quote p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTION 3 — PROPOSTA DE VALOR
   ============================================================ */
.value {
  background: var(--blue) !important;
  position: relative;
  overflow: hidden;
}

.value::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.value::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.value-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.value-header h2 { margin-bottom: 12px; color: #fff; }
.value-header p { font-size: 1.05rem; color: rgba(255,255,255,0.75); }

.value .section-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.value-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.pillar-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  text-align: center;
}

.pillar-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.3);
}

.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.pillar-card h3 { margin-bottom: 10px; color: #fff; }
.pillar-card p { color: rgba(255,255,255,0.75); }

.value-cta { text-align: center; position: relative; z-index: 1; }

.value .btn-primary {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.value .btn-primary:hover {
  background: #f0f4ff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* ============================================================
   SECTION 4 — COMO FUNCIONA
   ============================================================ */
.how {
  background: #EEF2FF !important;
}

.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.how-header h2 { margin-bottom: 12px; }

.steps {
  max-width: 760px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid rgba(65,88,208,0.08);
  box-shadow: 0 2px 12px rgba(65,88,208,0.06);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(65,88,208,0.2);
  box-shadow: 0 6px 24px rgba(65,88,208,0.12);
  transform: translateX(6px);
}

/* Marca d'água do número */
.step::after {
  content: attr(data-step);
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 88px;
  font-weight: 800;
  color: rgba(65,88,208,0.05);
  line-height: 1;
  pointer-events: none;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: -0.04em;
}

.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-content { position: relative; z-index: 1; }
.step-content h3 { margin-bottom: 4px; }
.step-content p { font-size: 0.9rem; }

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

@media (max-width: 480px) {
  .step { padding: 20px; gap: 16px; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; border-radius: 10px; }
  .step::after { font-size: 60px; }
}

/* ============================================================
   SECTION 5 — DIFERENCIAIS
   ============================================================ */
.diferenciais {
  background: #111827 !important;
}

.diff-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.diff-header h2 { margin-bottom: 12px; color: #fff; }
.diff-header p { color: rgba(255,255,255,0.6); }

.diferenciais .section-label {
  background: rgba(65,88,208,0.2);
  color: rgba(255,255,255,0.85);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.diff-card {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.diff-card:hover {
  background: rgba(65,88,208,0.15);
  transform: none;
}

.diff-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(65,88,208,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.diff-text h3 { margin-bottom: 6px; font-size: 1rem; color: #fff; }
.diff-text p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   SECTION 6 — PROVA SOCIAL
   ============================================================ */
.social-proof {
  background: var(--dark) !important;
  color: #fff;
}

.social-proof h2 { color: #fff; text-align: center; margin-bottom: 12px; }
.social-proof > .container > p { text-align: center; color: rgba(255,255,255,0.65); margin-bottom: 56px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  text-align: center;
}

.metric {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.metric-num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.metric span:last-child { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

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

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

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

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name { font-weight: 600; color: #fff; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.stars { color: #FBBF24; font-size: 0.85rem; margin-top: 2px; }

@media (max-width: 600px) {
  .metrics { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 7 — SÍNDICO
   ============================================================ */
.sindico {
  background: linear-gradient(135deg, #F0F4FF 0%, #FAF5FF 100%) !important;
  position: relative;
  overflow: hidden;
}

.sindico::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,88,208,0.06) 0%, transparent 70%);
}

.sindico-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sindico-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(65,88,208,0.08);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sindico-left h2 { margin-bottom: 12px; }
.sindico-left > p { margin-bottom: 32px; }

.sindico-pains, .sindico-benefits {
  margin-bottom: 28px;
}

.sindico-pains h3, .sindico-benefits h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light);
  margin-bottom: 14px;
}

.pain-item, .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--mid);
}

.pain-item .icon { color: #EF4444; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item .icon { color: var(--green-dark); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.sindico-right {
  position: relative;
}

.sindico-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 4px solid var(--blue);
}

.sindico-card-icon { font-size: 3.5rem; margin-bottom: 16px; }
.sindico-card h3 { margin-bottom: 10px; }
.sindico-card p { font-size: 0.9rem; margin-bottom: 28px; }

@media (max-width: 768px) {
  .sindico-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   SECTION 8 — FORMULÁRIO
   ============================================================ */
.form-section { background: var(--bg-white) !important; }

.form-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.form-header h2 { margin-bottom: 12px; }

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-left h3 { margin-bottom: 16px; font-size: 1.3rem; }
.form-left > p { margin-bottom: 28px; }

.form-perks { margin-bottom: 32px; }

.perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.perk-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(65,88,208,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.perk-text strong { display: block; font-size: 0.9rem; color: var(--dark); }
.perk-text span { font-size: 0.82rem; color: var(--light); }

.form-whatsapp-alt {
  padding: 20px;
  background: rgba(37,211,102,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(37,211,102,0.2);
  text-align: center;
}

.form-whatsapp-alt p {
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(65,88,208,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 6px;
}

.form-group label span { color: #EF4444; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--bg-off);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(65,88,208,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.lgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.lgpd-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.lgpd-check label {
  font-size: 0.8rem;
  color: var(--mid);
  cursor: pointer;
  line-height: 1.5;
}

.lgpd-check a { color: var(--blue); text-decoration: underline; }

.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--green-dark); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; }

@media (max-width: 900px) {
  .form-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-left { order: 1; }
}

@media (max-width: 480px) {
  .lead-form { padding: 24px; }
}

/* ============================================================
   SECTION 9 — CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--dark) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(65,88,208,0.15);
}

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

.cta-final h2 { color: #fff; margin-bottom: 16px; }
.cta-final > .container > p { color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

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

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

.seal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.seal .icon { font-size: 1rem; color: rgba(255,255,255,0.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08101F;
  color: rgba(255,255,255,0.65);
  padding: 60px 0 24px;
}

@media (min-width: 768px) {
  .footer { padding-bottom: 80px; }
}

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

.footer-brand img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

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

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-link:hover {
  background: var(--blue);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-contact-item .icon { font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

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

.footer-legal a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
/* Desktop: float oculto — sticky bar faz esse papel */
@media (min-width: 768px) {
  .whatsapp-float { display: none !important; }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--whatsapp-d);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================================
   WHATSAPP DESKTOP STICKY BAR
   ============================================================ */
.wa-desktop-bar {
  display: none;
}

@media (min-width: 768px) {
  .wa-desktop-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 14px 40px;
    background: rgba(8, 13, 30, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: auto;
  }

  .wa-desktop-bar.wa-desktop-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  .wa-desktop-bar__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.01em;
    margin: 0;
  }

  .wa-desktop-bar__text strong {
    color: #fff;
    font-weight: 700;
  }

  .wa-desktop-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--whatsapp);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
    white-space: nowrap;
  }

  .wa-desktop-bar__btn:hover {
    background: var(--whatsapp-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  }
}

/* ============================================================
   WHATSAPP MOBILE STICKY BAR
   ============================================================ */
.wa-mobile-bar {
  display: none;
}

@media (max-width: 767px) {
  /* Mostra a barra sticky no mobile */
  .wa-mobile-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: #111e4a;
    border-top: 1px solid rgba(255,255,255,0.10);
    box-shadow: none;
  }

  .wa-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: #25D366;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: none;
    transition: opacity 0.2s, transform 0.2s;
  }

  .wa-mobile-btn:active {
    opacity: 0.88;
    transform: scale(0.98);
  }

  .wa-mobile-tagline {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: #fff;
    margin-top: 6px;
    letter-spacing: 0.04em;
    font-weight: 600;
  }

  /* Esconde o botão circular flutuante no mobile */
  .whatsapp-float {
    display: none !important;
  }

  /* Esconde botões de CTA do formulário — sticky bar faz esse papel */
  .form-submit,
  .form-whatsapp-alt {
    display: none !important;
  }

  /* Padding no rodapé para não ficar atrás da barra sticky */
  body {
    padding-bottom: 90px;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(65,88,208,0.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* --- Loading state button --- */
.btn.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}
