/*
Theme Name: Paim Contabilidade
Theme URI: https://agenciacrie.com/
Author: Agência Crie
Author URI: https://agenciacrie.com/
Description: Tema responsivo e otimizado para a Paim Contabilidade, feito sob medida.
Version: 1.0.0
Text Domain: paim-contabilidade
*/

/* =============================================================
   PAIM CONTABILIDADE — SISTEMA DE DESIGN
   Regra 60-30-10:
   60% → Fundos dominantes (dark #060f1d | light #fff | off #F0F4F9)
   30% → Textos, nav, caixas de conteúdo (#0A437D | #9DA7B3 | escala)
   10% → Acento exclusivo para CTAs (#25D366 wpp | #0A437D em bg claro)
   ============================================================= */

/* ===== TOKENS ===== */
:root {
  /* 60% — Backgrounds dominantes */
  --bg-dark:    #0A3663;
  --bg-light:   #ffffff;
  --bg-off:     #F0F4F9;
  --bg-navy:    #093561;
  --bg-footer:  #062341;

  /* 30% — Secundário: textos e estrutura */
  --navy:       #093561;
  --navy-dk:    #062341;
  --silver:     #9DA7B3;
  --silver-lt:  #c2cad3;

  /* Texto em bg escuro */
  --txt-dark-h: #EDF2F7;         /* Títulos sobre dark */
  --txt-dark-b: #8fa3b8;         /* Corpo sobre dark */
  --txt-dark-m: rgba(157,167,179,0.55); /* Muted sobre dark */

  /* Texto em bg claro */
  --txt-lt-h:   #0d1c2e;         /* Títulos sobre light */
  --txt-lt-b:   #4a5f74;         /* Corpo sobre light */
  --txt-lt-m:   #8fa1b3;         /* Muted sobre light */

  /* Texto em bg navy */
  --txt-nv-h:   #ffffff;
  --txt-nv-b:   rgba(255,255,255,0.72);
  --txt-nv-m:   rgba(255,255,255,0.45);

  /* 10% — Acento: uso EXCLUSIVO em CTAs */
  --acc-wpp:    #1aa24e;
  --acc-wpp-hv: #14803d;
  --acc-cta:    #093561;         /* CTA sobre bg claro */
  --acc-cta-hv: #0c4780;

  /* Bordas */
  --bdr-dark:   rgba(255,255,255,0.07);
  --bdr-light:  rgba(9,53,97,0.12);
  --bdr-navy:   rgba(255,255,255,0.14);

  /* Transição padrão */
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; }
a { text-decoration: none; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--txt-lt-h);
  background: var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--navy); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5%, 3rem);
}

/* ===== TIPOGRAFIA — hierarquia clara ===== */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
p { line-height: 1.75; }

/* Eyebrow — etiqueta de seção */
.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}

/* ===== BOTÕES — 10% acento, uso estrito ===== */

/* WhatsApp — acento primário em bg escuros */
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(to bottom, #f1f4f8 0%, #d2d8e0 50%, #b8c0cc 100%);
  color: var(--navy);
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: transform var(--ease), box-shadow var(--ease), color 0.3s ease, border-color 0.3s ease, background 0.35s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  /* 3D bevel inset shadows + outer blue glow matching image */
  box-shadow: 
    0 4px 15px rgba(9, 53, 97, 0.15),
    0 0 25px rgba(9, 53, 97, 0.25),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.85),
    inset 0 -2px 0 rgba(9, 53, 97, 0.12);
}
.btn-wpp svg { width: 20px; height: 20px; flex-shrink: 0; position: relative; z-index: 2; }
.btn-wpp::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}
.btn-wpp:hover::before {
  left: 150%;
  transition: left 0.85s ease-in-out;
}
.btn-wpp:hover {
  background: linear-gradient(135deg, #1db557 0%, #179346 100%);
  color: #fff;
  border-color: #1ba550;
  transform: translateY(-2px);
  /* Green glow on hover */
  box-shadow: 
    0 8px 24px rgba(26, 162, 78, 0.3),
    0 0 20px rgba(26, 162, 78, 0.2),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}
.btn-wpp--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* WhatsApp na seção navy — versão outline branca */
.btn-wpp-on-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #fff;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.55);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-wpp-on-navy svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wpp-on-navy:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* CTA sobre bg claro */
.btn-sobre {
  display: inline-flex;
  align-items: center;
  color: var(--acc-cta);
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 2px solid var(--acc-cta);
  padding-bottom: 2px;
  transition: color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-sobre:hover {
  color: var(--acc-cta-hv);
  border-color: var(--acc-cta-hv);
  transform: translateX(4px);
}

/* Ghost — ação secundária em bg escuros */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--txt-dark-h);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: border-color var(--ease), color var(--ease);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--ease), padding var(--ease), border-color var(--ease), backdrop-filter var(--ease);
  padding: 1.25rem 0;
}
.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 54, 99, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bdr-dark);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo { line-height: 0; }
.nav-logo-img {
  height: 85px;
  width: auto;
  opacity: 1;
  transition: opacity var(--ease);
}
.nav-logo-img:hover { opacity: 1; }

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

.nav-link {
  color: var(--silver);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  transition: color var(--ease);
}
.nav-link:hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to bottom, #f1f4f8 0%, #d2d8e0 50%, #b8c0cc 100%);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.1rem;
  margin-left: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: transform var(--ease), box-shadow var(--ease), color 0.3s ease, border-color 0.3s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 3px 10px rgba(9, 53, 97, 0.12),
    0 0 15px rgba(9, 53, 97, 0.18),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1.5px 0 rgba(9, 53, 97, 0.1);
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}
.nav-cta:hover::before {
  left: 150%;
  transition: left 0.85s ease-in-out;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #1db557 0%, #179346 100%);
  color: #fff;
  border-color: #1ba550;
  transform: translateY(-1px);
  box-shadow: 
    0 6px 18px rgba(26, 162, 78, 0.25),
    0 0 15px rgba(26, 162, 78, 0.15),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1.5px 0 rgba(0, 0, 0, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver);
  transition: transform var(--ease), opacity var(--ease);
}

/* ===== HERO — bg: dark (60%), texto em escala clara ===== */
.hero {
  background: var(--bg-dark);
  padding-top: 11.5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

/* Textura diagonal discreta — geométrica, não genérica */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      rgba(9,53,97,0.06) 0px,
      rgba(9,53,97,0.06) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
}
/* Vinheta de fundo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 20% 40%, rgba(9,53,97,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-bottom: 5rem;
}

.hero-content {
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-dark-h);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--txt-dark-h);
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--silver-lt);
  display: inline-block;
  margin-top: 0.25rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--txt-dark-b);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Visual column */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border: 1px solid rgba(157, 167, 179, 0.18);
  pointer-events: none;
  z-index: 0;
}
.hero-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 13;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  background: rgba(10, 54, 99, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  width: 250px;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--ease), border-color var(--ease);
}
.hero-floating-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}
.hero-floating-card--1 {
  top: 12%;
  right: -12%;
}
.hero-floating-card--2 {
  bottom: 12%;
  right: -12%;
}
.hero-floating-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-floating-icon svg {
  width: 18px;
  height: 18px;
  color: var(--silver-lt);
}
.hero-floating-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.hero-floating-text p {
  font-size: 0.72rem;
  color: var(--txt-dark-b);
  line-height: 1.4;
}

/* Stats bar — separador horizontal elegante */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--bdr-dark);
  padding: 2.5rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(10, 54, 99, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1.75rem;
  transition: transform var(--ease), border-color var(--ease);
}
.hero-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(10, 54, 99, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--silver-lt);
  stroke-width: 1.8px;
}

.hero-stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat-n {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-stat-l {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver);
}

/* ===== DOR — bg: white (60%), layout assimétrico ===== */
.pain {
  background: var(--bg-light);
  padding: 9rem 0;
  overflow: hidden;
}

.pain-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;   /* 42/58 — assimétrico intencional */
  gap: 5rem;
  align-items: start;
}

.pain-lead h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--txt-lt-h);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pain-lead > p {
  font-size: 0.95rem;
  color: var(--txt-lt-b);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pain-highlight {
  color: var(--navy);
}

.pain .eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 0.45rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.pain .eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--navy);
}

/* Dashboard Mockup */
.pain-graphic {
  position: relative;
  margin-top: 3.5rem;
  max-width: 380px;
  width: 100%;
}
.pain-db {
  background: #ffffff;
  border: 1px solid var(--bdr-light);
  box-shadow: 0 15px 35px rgba(9, 53, 97, 0.03);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pain-db:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(9, 53, 97, 0.06);
}
.pain-db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bdr-light);
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
}
.pain-db-dots {
  display: flex;
  gap: 0.35rem;
}
.pain-db-dot {
  width: 6px;
  height: 6px;
  background: var(--txt-lt-m);
  border-radius: 50%;
  opacity: 0.4;
}
.pain-db-dot:nth-child(1) { background: #ff5f56; opacity: 1; }
.pain-db-dot:nth-child(2) { background: #ffbd2e; opacity: 1; }
.pain-db-dot:nth-child(3) { background: #27c93f; opacity: 1; }

.pain-db-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-lt-m);
}
.pain-db-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
  padding-top: 1rem;
}
.pain-db-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(9, 53, 97, 0.03) 1px, transparent 1px);
  background-size: 100% 20px;
  pointer-events: none;
}
.pain-db-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.pain-db-bar {
  width: 12px;
  height: var(--height);
  background: rgba(9, 53, 97, 0.06);
  transition: background var(--ease), height 0.4s ease;
}
.pain-db-bar:nth-child(2),
.pain-db-bar:nth-child(4) {
  background: rgba(9, 53, 97, 0.15);
}
.pain-db:hover .pain-db-bar {
  background: rgba(9, 53, 97, 0.12);
}
.pain-db:hover .pain-db-bar:nth-child(2),
.pain-db:hover .pain-db-bar:nth-child(4) {
  background: var(--navy);
}
.pain-db-circle-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.pain-db-circle {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.circular-chart {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.circle-bg {
  fill: none;
  stroke: rgba(9, 53, 97, 0.04);
  stroke-width: 2.8;
}
.circle {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.8;
  stroke-linecap: round;
  transition: stroke-dasharray 0.5s ease, stroke 0.3s ease;
}
.pain-db:hover .circle {
  stroke-dasharray: 85, 100;
}

/* Floating Warning Card */
.pain-floating-warning {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #ffffff;
  border: 1px solid var(--bdr-light);
  box-shadow: 0 8px 20px rgba(9, 53, 97, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cc3333; /* warning red color */
  animation: float-warning 4s ease-in-out infinite;
  z-index: 2;
  transition: transform 0.3s ease;
}
.pain-floating-warning:hover {
  transform: scale(1.1);
}
.pain-floating-warning svg {
  width: 18px;
  height: 18px;
}

@keyframes float-warning {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Pain timeline and card list */
.pain-list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 2rem;
}
.pain-list::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  right: 0;
  width: 1.5px;
  background: var(--bdr-light);
  z-index: 1;
}

.pain-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--bdr-light);
  box-shadow: 0 4px 20px rgba(9, 53, 97, 0.02);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.pain-card:last-child {
  margin-bottom: 0;
}
.pain-card::after {
  content: '';
  position: absolute;
  right: -2.25rem;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--txt-lt-m);
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-sizing: content-box;
  transform: translateY(-50%);
  z-index: 2;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.pain-card:hover::after {
  background: var(--navy);
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(9, 53, 97, 0.15);
  transform: translateY(-50%) scale(1.25);
}
.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 53, 97, 0.22);
  box-shadow: 0 10px 30px rgba(9, 53, 97, 0.06);
}

.pain-card-icon-wrap {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}
.pain-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(9, 53, 97, 0.03);
  border: 1px solid rgba(9, 53, 97, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.pain-card:hover .pain-card-icon {
  background: rgba(9, 53, 97, 0.07);
  border-color: rgba(9, 53, 97, 0.18);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(9, 53, 97, 0.04);
}
.pain-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8px;
}

.pain-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.pain-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pain-card-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.pain-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--txt-lt-h);
  letter-spacing: -0.02em;
}
.pain-card-content p {
  font-size: 0.88rem;
  color: var(--txt-lt-b);
  line-height: 1.65;
}

/* ===== PARA QUEM — bg: off-white ===== */
.nicho {
  background: var(--bg-off);
  padding: 8rem 0;
  border-top: 1px solid var(--bdr-light);
}

.nicho-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.nicho-head {
  text-align: left;
}
.nicho-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--txt-lt-h);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.nicho-intro {
  font-size: 0.95rem;
  color: var(--txt-lt-b);
  line-height: 1.75;
}

.nicho-image-wrap {
  position: relative;
  width: 100%;
}
.nicho-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(9, 53, 97, 0.15);
  z-index: 2;
}
.nicho-badge svg {
  width: 20px;
  height: 20px;
}
.nicho-img-container {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--bdr-light);
  box-shadow: 0 15px 35px rgba(9, 53, 97, 0.04);
}
.nicho-img {
  width: 100%;
  height: auto;
  display: block;
}

.nicho-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.nicho-card {
  background: #ffffff;
  border: 1px solid var(--bdr-light);
  padding: 1.1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.nicho-card:hover {
  transform: translateY(-2px);
  border-color: rgba(9, 53, 97, 0.22);
  box-shadow: 0 8px 24px rgba(9, 53, 97, 0.04);
}
.nicho-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(9, 53, 97, 0.03);
  border: 1px solid rgba(9, 53, 97, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease);
}
.nicho-card:hover .nicho-card-icon {
  background: rgba(9, 53, 97, 0.07);
  border-color: rgba(9, 53, 97, 0.18);
}
.nicho-card-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8px;
}
.nicho-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--txt-lt-h);
  line-height: 1.35;
}

.nicho-notice {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(9, 53, 97, 0.03);
  border-left: 3px solid var(--navy);
  padding: 1.25rem 1.75rem;
}
.nicho-notice-icon {
  color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nicho-notice-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8px;
}
.nicho-notice-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--txt-lt-b);
  line-height: 1.6;
}

.nicho .eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 0.45rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.nicho .eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--navy);
}

/* ===== SOBRE — bg: white, layout editorial ===== */
.sobre {
  background: var(--bg-light);
  padding: 8rem 0;
  border-top: 1px solid var(--bdr-light);
}

/* Bloco de citação principal — tratamento tipográfico */
.sobre-quote-block {
  max-width: 820px;
  margin: 5rem auto 0;
  text-align: center;
  border-top: 1px solid var(--bdr-light);
  padding-top: 4rem;
}

.sobre-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: var(--txt-lt-h);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  position: relative;
}
.sobre-quote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0.6;
  color: var(--bdr-light);
  position: absolute;
  top: -0.5rem;
  left: -1.5rem;
  font-style: normal;
}

.sobre-cite {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-lt-m);
}

/* Layout bio: 2 colunas assimétricas (Foto destaque, Detalhes) — intencional, editorial */
.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: center;
}

.sobre-foto-container {
  position: relative;
  background: transparent;
  padding: 0;
}
/* Efeito de box-shadow físico deslocado de fundo */
.sobre-foto-container::before {
  content: '';
  position: absolute;
  top: 15px; left: -15px;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 0;
  transition: transform 0.4s ease;
}
.sobre-foto-container:hover::before {
  transform: translate(6px, -6px);
}
.sobre-foto {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.05) brightness(0.96);
  transition: filter var(--ease), transform 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}
.sobre-foto-container:hover .sobre-foto {
  filter: grayscale(0%) contrast(1) brightness(1);
  transform: translate(-4px, 4px);
}

.sobre-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-bio h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--txt-lt-h);
  margin-bottom: 0.25rem;
}
.sobre-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.sobre-bio p {
  font-size: 0.95rem;
  color: var(--txt-lt-b);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Painel de credenciais — linha horizontal */
.sobre-creds-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--bdr-light);
  border-bottom: 1px solid var(--bdr-light);
  padding: 1.5rem 0;
}

.cred-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cred-n {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.cred-l {
  font-size: 0.72rem;
  color: var(--txt-lt-m);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.sobre-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.cred-crc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--bdr-light);
  background: var(--bg-off);
}
.cred-crc svg {
  width: 15px; height: 15px;
  color: var(--navy);
  flex-shrink: 0;
}

/* ===== SERVIÇOS — bg: off-white, lista numerada ===== */
.servicos {
  background: var(--bg-off);
  padding: 8rem 0;
  border-top: 1px solid var(--bdr-light);
}

/* Header com lead text à direita — quebra de simetria */
.servicos-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--bdr-light);
}

.servicos-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--txt-lt-h);
}
.servicos-sub {
  font-size: 0.95rem;
  color: var(--txt-lt-b);
  line-height: 1.8;
  align-self: end;
}

/* Grid 3-colunas com separadores tipográficos */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--bdr-light);
  border-top: 1px solid var(--bdr-light);
}

.servico-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--bdr-light);
  border-bottom: 1px solid var(--bdr-light);
  background: var(--bg-light);
  transition: background var(--ease);
}
.servico-item:hover { background: #f8fafe; }

.sn {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bdr-light);
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  /* Cor aumenta em hover via parent */
  transition: color var(--ease);
}
.servico-item:hover .sn { color: rgba(9,53,97,0.2); }

.servico-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--txt-lt-h);
  letter-spacing: -0.01em;
}
.servico-item p {
  font-size: 0.85rem;
  color: var(--txt-lt-b);
  line-height: 1.7;
}

/* ===== DIFERENCIAIS — bg: #0A437D navy, contraste máximo ===== */
.diferenciais {
  background: var(--bg-navy);
  padding: 8rem 0;
}

.dif-head {
  max-width: 680px;
  margin-bottom: 4rem;
}
.dif-head .eyebrow { color: var(--txt-nv-m); }
.dif-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--txt-nv-h);
  margin-bottom: 1rem;
}
.dif-head p {
  font-size: 0.95rem;
  color: var(--txt-nv-b);
  line-height: 1.8;
}

/* Grid 3x2 — itens com separadores internos */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--bdr-navy);
  border-left: 1px solid var(--bdr-navy);
  margin-bottom: 3.5rem;
}

.dif-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--bdr-navy);
  border-bottom: 1px solid var(--bdr-navy);
  transition: background var(--ease);
}
.dif-item:hover { background: rgba(255,255,255,0.04); }

.dn {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--txt-nv-m);
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}

.dif-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--txt-nv-h);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.dif-item p {
  font-size: 0.85rem;
  color: var(--txt-nv-b);
  line-height: 1.7;
}

.dif-cta { text-align: left; }

/* ===== DEPOIMENTOS — bg: white, card central destacado ===== */
.depoimentos {
  background: var(--bg-light);
  padding: 8rem 0;
  border-top: 1px solid var(--bdr-light);
}

.dep-head {
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.dep-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--txt-lt-h);
  margin-bottom: 0.75rem;
}
.dep-intro {
  font-size: 0.95rem;
  color: var(--txt-lt-b);
  line-height: 1.75;
}

/* Grid staggerado: card central levemente elevado */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.dep-card {
  border: 1px solid var(--bdr-light);
  padding: 2rem;
  background: var(--bg-off);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--ease), background var(--ease);
}
.dep-card:hover {
  background: #fff;
  border-color: rgba(9,53,97,0.2);
}

/* Card central — destacado por posicionamento e fundo */
.dep-card--featured {
  background: var(--bg-dark);
  border-color: transparent;
  margin-top: -1.5rem;       /* Stagger visual — toque humano */
}
.dep-card--featured:hover {
  background: #072747;
  border-color: var(--bdr-dark);
}
.dep-card--featured .dep-stars { color: #fbbf24; }
.dep-card--featured .dep-text  { color: var(--txt-dark-b); }
.dep-card--featured .dep-name  { color: var(--txt-dark-h); }
.dep-card--featured .dep-job   { color: var(--txt-dark-m); }
.dep-card--featured .dep-avatar {
  background: rgba(9,53,97,0.25);
  color: var(--silver-lt);
}

.dep-stars {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #f59e0b;
}
.dep-text {
  font-size: 0.9rem;
  color: var(--txt-lt-b);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
}
.dep-author { display: flex; align-items: center; gap: 0.75rem; }
.dep-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bdr-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  border: 1px solid var(--bdr-light);
}
.dep-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--txt-lt-h);
  line-height: 1.2;
}
.dep-job {
  font-size: 0.75rem;
  color: var(--txt-lt-m);
  margin-top: 0.15rem;
}

/* ===== ISCA / CTA INTERMEDIÁRIO — bg: dark ===== */
.isca {
  background-color: var(--bg-dark);
  background-image: 
    linear-gradient(to right, rgba(10, 54, 99, 0.94) 30%, rgba(10, 54, 99, 0.78) 100%),
    url('assets/cta_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 8rem 0;
  border-top: 1px solid var(--bdr-dark);
  position: relative;
  overflow: hidden;
}
/* Acento diagonal sutil */
.isca::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(9,53,97,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.isca-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
}

.isca-content {
  text-align: left;
}

.isca-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--txt-dark-h);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.isca-sub {
  font-size: 1rem;
  color: var(--txt-dark-b);
  margin-bottom: 0;
  line-height: 1.8;
}

.isca-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-top: 2.25rem;
}
.isca-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.isca-trust-item svg {
  width: 16px; height: 16px;
  color: var(--acc-wpp);
  flex-shrink: 0;
}
.isca-trust-item span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--txt-dark-h);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.isca-card-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.isca-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.isca-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.isca-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--txt-dark-h);
  margin-bottom: 0.25rem;
}
.isca-card-note {
  font-size: 0.76rem;
  color: var(--txt-dark-m);
  font-weight: 500;
}

/* ===== FAQ — bg: off-white, 1 coluna centralizada ===== */
.faq {
  background: var(--bg-off);
  padding: 8rem 0;
  border-top: 1px solid var(--bdr-light);
}

.faq-container {
  max-width: 780px; /* limits the overall section width for optimal readability */
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--txt-lt-h);
  margin-bottom: 0.75rem;
}

.faq-lead-sub {
  font-size: 0.95rem;
  color: var(--txt-lt-b);
  line-height: 1.75;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

.faq-cta-box {
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--bdr-light);
  padding: 1.5rem 2rem;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(9, 53, 97, 0.02);
  transition: transform var(--ease), border-color var(--ease);
}
.faq-cta-box:hover {
  transform: translateY(-2px);
  border-color: rgba(9, 53, 97, 0.25);
  box-shadow: 0 8px 24px rgba(9, 53, 97, 0.05);
}
.faq-cta-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--txt-lt-h);
  margin-bottom: 0.75rem;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid var(--bdr-light);
  margin-bottom: 0.75rem;
  padding: 0 1.5rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:hover {
  border-color: rgba(9, 53, 97, 0.25);
  box-shadow: 0 4px 12px rgba(9, 53, 97, 0.03);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--txt-lt-h);
  text-align: left;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--navy); }
.faq-q[aria-expanded="true"] { color: var(--navy); }

.faq-arrow {
  width: 18px; height: 18px;
  color: var(--silver);
  flex-shrink: 0;
  transition: transform var(--ease), color var(--ease);
}
.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--navy);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.faq-a.open {
  max-height: 250px;
  opacity: 1;
  padding-bottom: 1.25rem;
}
.faq-a p {
  font-size: 0.875rem;
  color: var(--txt-lt-b);
  line-height: 1.78;
}

/* ===== CTA FINAL — bg: very dark ===== */
.cta-final {
  background: var(--bg-dark);
  padding: 9rem 0;
  border-top: 1px solid var(--bdr-dark);
  text-align: center;
}

.cta-final-wrap { max-width: 620px; margin: 0 auto; }

.cta-final .eyebrow { justify-content: center; }

.cta-h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--txt-dark-h);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.cta-h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--silver-lt);
}

.cta-sub {
  font-size: 1rem;
  color: var(--txt-dark-b);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.75rem;
}
.cta-trust span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--txt-dark-m);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-trust span::before {
  content: '✓ ';
  color: var(--acc-wpp);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 5rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a,
.footer-col p a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--ease);
  text-decoration: none;
}

.footer-col ul li a:hover,
.footer-col p a:hover {
  color: #ffffff;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  height: 90px;
  width: auto;
  opacity: 1;
  align-self: flex-start;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
  transition: background var(--ease), color var(--ease), transform var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  color: var(--silver-lt);
  vertical-align: middle;
  display: inline-block;
  flex-shrink: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-address p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-address p svg {
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}
.footer-bottom p a:hover {
  color: #ffffff !important;
}

/* ===== WHATSAPP FLUTUANTE ===== */
@keyframes wpp-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 162, 78, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(26, 162, 78, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 162, 78, 0);
  }
}
.wpp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #1aa24e 0%, #14803d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 162, 78, 0.38);
  transition: transform var(--ease), box-shadow var(--ease);
  animation: wpp-glow 2s infinite;
}
.wpp-float svg { width: 24px; height: 24px; color: #fff; position: relative; z-index: 2; }
.wpp-float:hover {
  background: linear-gradient(135deg, #1db557 0%, #179346 100%);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 162, 78, 0.5);
  animation: none;
}
.wpp-tooltip {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: rgba(10, 54, 99, 0.95);
  color: var(--silver-lt);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--bdr-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ===== ANIMAÇÃO DE ENTRADA SUAVE ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Escalonamento suave entre irmãos */
.pain-item.reveal:nth-child(2)  { transition-delay: 0.08s; }
.pain-item.reveal:nth-child(3)  { transition-delay: 0.14s; }
.pain-item.reveal:nth-child(4)  { transition-delay: 0.2s;  }
.servico-item.reveal:nth-child(2) { transition-delay: 0.07s; }
.servico-item.reveal:nth-child(3) { transition-delay: 0.14s; }
.servico-item.reveal:nth-child(4) { transition-delay: 0.06s; }
.servico-item.reveal:nth-child(5) { transition-delay: 0.12s; }
.servico-item.reveal:nth-child(6) { transition-delay: 0.18s; }
.dif-item.reveal:nth-child(2)  { transition-delay: 0.07s; }
.dif-item.reveal:nth-child(3)  { transition-delay: 0.14s; }
.dif-item.reveal:nth-child(4)  { transition-delay: 0.05s; }
.dif-item.reveal:nth-child(5)  { transition-delay: 0.1s;  }
.dif-item.reveal:nth-child(6)  { transition-delay: 0.16s; }
.dep-card.reveal:nth-child(2)  { transition-delay: 0.1s;  }
.dep-card.reveal:nth-child(3)  { transition-delay: 0.18s; }

/* ===== RESPONSIVO ===== */
@media (max-width: 980px) {
  .pain, .nicho, .sobre, .servicos, .diferenciais, .depoimentos, .faq, .cta-final, .isca {
    padding: 5rem 0;
  }
  .hero {
    background-attachment: scroll;
    padding-top: 8.5rem;
  }
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
    padding-bottom: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-h1 {
    text-align: center;
  }
  .hero-h1 em {
    display: block;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
  .hero-img-wrap {
    width: 100%;
  }
  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .hero-visual::before {
    display: none;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .isca {
    background-attachment: scroll;
    background-image: 
      linear-gradient(180deg, rgba(10, 54, 99, 0.92) 0%, rgba(10, 54, 99, 0.88) 100%),
      url('assets/cta_background.png');
  }
  .pain-wrap    { grid-template-columns: 1fr; gap: 3rem; }
  .pain-list    { padding-right: 0; }
  .pain-list::after { display: none; }
  .pain-card::after { display: none; }
  .pain-graphic { margin-left: auto; margin-right: auto; }
  .nicho-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .nicho-image-wrap { max-width: 480px; margin: 0 auto; }
  .nicho-cards { grid-template-columns: repeat(2, 1fr); }
  .sobre-content { grid-template-columns: 1fr; gap: 3.5rem; }
  .sobre-foto-container {
    max-width: 320px;
    margin: 0 auto;
    padding-left: 15px; /* Compensa o deslocamento da sombra esquerda no mobile */
  }
  .isca-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .isca-card-container {
    justify-content: center;
  }
  .servicos-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid     { grid-template-columns: repeat(2, 1fr); }
  .dep-grid     { grid-template-columns: 1fr; }
  .dep-card--featured { margin-top: 0; }
  .faq-container { max-width: 100%; }
  .sobre-quote-block {
    padding: 3rem 1rem 0;
    margin-top: 4rem;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .sobre-quote::before { display: none; }
}

@media (max-width: 640px) {
  .pain, .nicho, .sobre, .servicos, .diferenciais, .depoimentos, .faq, .cta-final, .isca {
    padding: 4rem 0;
  }
  .hero {
    padding-top: 8rem;
  }
  .nav {
    padding: 0.65rem 0;
  }
  .nav.scrolled {
    padding: 0.65rem 0;
  }
  .nav-logo-img {
    height: 68px;
  }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: rgba(10, 54, 99, 0.98);
    border-bottom: 1px solid var(--bdr-dark);
    padding: 1.5rem clamp(1.25rem, 5%, 3rem);
    gap: 0.5rem;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .nav-menu.open .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }

  .hero-h1  { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-stat { padding: 1.25rem; }

  .servicos-grid { grid-template-columns: 1fr; }
  .dif-grid      { grid-template-columns: 1fr; }
  .cta-btns      { flex-direction: column; align-items: flex-start; }
  .cta-final     { text-align: left; }
  .cta-final-wrap { max-width: 100%; }
  .cta-btns { align-items: flex-start; }
  .cta-trust { justify-content: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.75rem; }

  .wpp-float { bottom: 1.25rem; right: 1.25rem; }
  .wpp-tooltip { display: none; }
}

@media (max-width: 500px) {
  .nicho-cards { grid-template-columns: 1fr; }
  .nicho-notice { flex-direction: column; text-align: center; gap: 0.75rem; }
  .sobre-creds-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
    padding: 1.25rem 0;
  }
  .sobre-footer-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .cred-crc {
    justify-content: center;
    text-align: center;
  }
  .btn-sobre {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions a,
  .cta-btns a,
  .isca-card a,
  .faq-cta-box a,
  .dif-cta a {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .dif-cta {
    text-align: center;
  }
  .isca-trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .isca-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== EXTREMELY SMALL SCREENS (< 360px) ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 0.85rem;
  }

  .hero-h1 {
    font-size: 2.1rem;
  }

  .pain-card {
    padding: 1.2rem 1rem;
    gap: 1rem;
  }

  .servico-item {
    padding: 1.5rem 1.1rem;
  }

  .dif-item {
    padding: 1.5rem 1.1rem;
  }

  .dep-card {
    padding: 1.5rem 1.1rem;
  }

  .isca-card {
    padding: 1.5rem 1rem;
  }

  .isca-card .btn-wpp--lg {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
  }
}

