/* ====================================================
   B2B Consultoria e Gestão Financeira — Estilos
   Paleta corporativa: navy / cinza / branco / dourado
   ==================================================== */

:root {
  /* Cores institucionais */
  --navy-900: #0A2540;
  --navy-800: #122F4E;
  --navy-700: #1A365D;
  --navy-600: #234876;
  --gold:     #C9A961;
  --gold-soft:#E0C68A;

  /* Neutros */
  --ink:      #0F172A;
  --slate-700:#334155;
  --slate-500:#64748B;
  --slate-300:#CBD5E1;
  --slate-200:#E2E8F0;
  --slate-100:#F1F5F9;
  --slate-50: #F8FAFC;
  --white:    #FFFFFF;

  /* Sistema */
  --success:  #16A34A;
  --warning:  #D97706;
  --danger:   #DC2626;

  /* Layout */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06);
  --shadow:    0 8px 24px rgba(10,37,64,.08);
  --shadow-lg: 0 24px 48px rgba(10,37,64,.12);

  --container: 1200px;
  --header-h:  68px;

  /* Tipografia */
  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:'Playfair Display', Georgia, "Times New Roman", serif;
}

/* ============ RESET ============ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============ UTIL ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.accent { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 16px; color: var(--slate-700); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: var(--white);
}
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--light {
  height: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  transition: color .2s;
  position: relative;
}
.main-nav a:hover { color: var(--navy-900); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a.active {
  color: var(--navy-900);
  font-weight: 600;
}
.main-nav a.active::after { width: 100%; background: var(--navy-900); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-cta-header {
  padding: 10px 18px;
  font-size: 13px;
}
.btn-area-cliente {
  border-width: 1.5px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all .25s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,169,97,.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(35,72,118,.6), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
}

/* ===== Composição visual da logo no hero ===== */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  justify-self: center;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.18);
  pointer-events: none;
}
.hero-ring--outer {
  width: 100%;
  height: 100%;
  border-style: dashed;
  border-color: rgba(201, 169, 97, 0.18);
  animation: heroRotate 90s linear infinite;
}
.hero-ring--mid {
  width: 76%;
  height: 76%;
  border-color: rgba(201, 169, 97, 0.28);
}
.hero-ring--inner {
  width: 56%;
  height: 56%;
  border-color: rgba(201, 169, 97, 0.45);
  box-shadow:
    inset 0 0 40px rgba(201, 169, 97, 0.08),
    0 0 24px rgba(201, 169, 97, 0.06);
}
.hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.22) 0%,
    rgba(201, 169, 97, 0.08) 40%,
    transparent 70%
  );
  animation: heroPulse 5s ease-in-out infinite;
  filter: blur(2px);
}
.hero-logo {
  position: relative;
  z-index: 3;
  width: 64%;
  height: auto;
  filter:
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 24px rgba(201, 169, 97, 0.18));
  transition: transform 0.6s cubic-bezier(.22,.8,.28,1);
}
.hero-visual:hover .hero-logo {
  transform: scale(1.04);
}
@keyframes heroRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  color: var(--white);
  max-width: 900px;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 680px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-cta .btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}
.hero-cta .btn-primary:hover {
  background: var(--gold-soft);
}
.hero-cta .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.hero-cta .btn-ghost:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 760px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats--two {
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 48px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-serif);
}
.hero-stats span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* ============ INDICADORES ============ */
.indicators {
  background: var(--slate-50);
  padding: 80px 0;
  border-bottom: 1px solid var(--slate-200);
}
.indicators-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.indicators-header p { margin: 0; }
.indicators-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  font-size: 13px;
  color: var(--slate-700);
  font-weight: 500;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--warning);
  animation: pulse 1.6s infinite;
}
.status-dot.connected { background: var(--success); }
.status-dot.error     { background: var(--danger); animation: none; }
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.4; }
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.indicator-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.indicator-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--navy-700);
  opacity: 0.6;
}
.indicator-card.highlight::before {
  background: var(--gold);
  opacity: 1;
}
.indicator-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--slate-300);
}
.indicator-card header {
  margin-bottom: 16px;
}
.indicator-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.indicator-card h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--navy-900);
}
.indicator-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
  min-height: 50px;
}
.indicator-value .value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
  line-height: 1;
}
.indicator-value .unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
}
.indicator-value .unit.prefix {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate-700);
}
.indicator-card footer {
  border-top: 1px solid var(--slate-100);
  padding-top: 12px;
}
.indicator-date {
  font-size: 12px;
  color: var(--slate-500);
}
.indicators-disclaimer {
  margin-top: 32px;
  font-size: 12px;
  color: var(--slate-500);
  text-align: center;
}

/* ============ SOBRE ============ */
.about {
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate-700);
  font-size: 15px;
}
.about-list span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.stat-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
  min-height: 92px;
  transition:
    padding   .5s cubic-bezier(.22,.8,.28,1),
    transform .5s cubic-bezier(.22,.8,.28,1),
    box-shadow .5s ease;
}
.stat-card:nth-child(even) {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .5s cubic-bezier(.22,.8,.28,1);
}
.stat-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(201,169,97,.22), transparent 70%);
  border-radius: 50%;
  transition: transform .6s ease, opacity .5s ease;
  opacity: .5;
}
.stat-card > * {
  position: relative;
  z-index: 2;
}
.stat-card strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1;
  flex-shrink: 0;
  margin: 0 auto;
  letter-spacing: 0.5px;
  transition: margin .55s cubic-bezier(.22,.8,.28,1);
}
.stat-card span {
  font-size: 15px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: right;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition:
    opacity   .35s ease .15s,
    max-width .55s cubic-bezier(.22,.8,.28,1),
    padding   .55s cubic-bezier(.22,.8,.28,1);
  padding-left: 0;
}
.stat-card:hover {
  padding: 30px 36px;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(10,37,64,.28);
}
.stat-card:hover::before {
  transform: scaleY(1);
}
.stat-card:hover::after {
  transform: scale(1.3);
  opacity: 1;
}
.stat-card:hover strong {
  margin: 0;
}
.stat-card:hover span {
  opacity: 1;
  max-width: 320px;
  padding-left: 20px;
  margin-left: auto;
}

/* Em telas touch (sem hover), exibir o card já "aberto" para acessibilidade */
@media (hover: none) {
  .stat-card strong { margin: 0; }
  .stat-card span {
    opacity: 1;
    max-width: 320px;
    padding-left: 20px;
    margin-left: auto;
    white-space: normal;
    text-align: right;
  }
  .stat-card::before { transform: scaleY(1); }
}

/* ============ SERVIÇOS ============ */
.services {
  padding: 100px 0;
  background: var(--slate-50);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p { color: var(--slate-700); font-size: 1.05rem; }
.section-head--light h2,
.section-head--light p { color: var(--white); }
.section-head--light .eyebrow { color: var(--gold-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
}
.service-card:hover {
  border-color: var(--navy-700);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-color: var(--navy-900);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.78); }
.service-card.featured .service-icon {
  background: rgba(201,169,97,.15);
  color: var(--gold);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--slate-100);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all .3s;
}
.service-icon svg {
  width: 28px;
  height: 28px;
}
.service-card:hover .service-icon {
  background: var(--navy-900);
  color: var(--gold);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 14px; margin: 0; line-height: 1.65; }

/* ============ DIFERENCIAIS ============ */
.differentials {
  padding: 100px 0;
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.differentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,169,97,.1), transparent 50%);
}
.differentials .container { position: relative; z-index: 1; }
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 32px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  transition: all .3s;
}
.diff-card:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.diff-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.diff-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.diff-card p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin: 0;
}

/* ============ PROCESSO ============ */
.process {
  padding: 100px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
  z-index: 0;
}
.process-steps li {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  color: var(--navy-900);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.process-steps h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.process-steps p {
  font-size: 14px;
  margin: 0;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10,37,64,.95), rgba(26,54,93,.95)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='10' cy='10' r='1' fill='%23C9A961' opacity='.3'/></svg>");
  color: var(--white);
  padding: 80px 0;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
  max-width: 720px;
}
.cta-banner p {
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 720px;
}
.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}
.cta-banner .btn-primary:hover {
  background: var(--gold-soft);
}

/* ============ CONTATO ============ */
.contact {
  padding: 100px 0;
  background: var(--slate-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-list a, .contact-list span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.contact-list a:hover { color: var(--navy-700); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: all .2s;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(26,54,93,.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 12px;
  color: var(--slate-500);
  text-align: center;
  margin: 12px 0 0;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text em { color: rgba(255,255,255,.6); }
.footer-brand p {
  margin-top: 16px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  max-width: 320px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 90;
  transition: all .25s;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual     { display: none; }
  .indicators-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .differentials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps   { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .main-nav,
  .header-actions { display: none; }
  .menu-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .hero { padding: 60px 0 80px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }

  .indicators-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator-value .value { font-size: 1.6rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-stats--two { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .differentials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner h2 { font-size: 1.6rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .indicators-header { flex-direction: column; align-items: flex-start; }

  section { padding: 60px 0 !important; }
}

@media (max-width: 768px) {
  .logo-img { height: 48px; }
  .logo-img--light { height: 64px; }
}

@media (max-width: 480px) {
  .indicators-grid { grid-template-columns: 1fr; }
  .about-stats     { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .logo-img { height: 42px; }
}
