/* ==========================================================================
   M2 Soluções Contábeis — Landing Page
   Recriação estática fiel ao WordPress/Elementor original.
   ========================================================================== */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; font-family: 'Outfit', sans-serif; color: var(--text-primary); background: var(--bg-primary); line-height: 1.5; -webkit-font-smoothing: antialiased; }

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: #1a1a1a;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #F2D5DD,
    #F2B6A0
  );
  border-radius: 12px;
  border: 2px solid #1a1a1a;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
p { margin: 0; }
strong, b { font-weight: 600; }

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Colors — Rose family */
  --rose-50:  #F8F4F3;
  --rose-100: #F2D7D0;
  --rose-200: #F2D5DD;
  --rose-300: #F2BBAE;
  --rose-400: #F2B6A0;
  --rose-500: #E8A898;
  --rose-600: #E89475;
  /* Copper / Gold / Glow */
  --copper-100: #E8B898;
  --copper-300: #D4906E;
  --copper-500: #C98060;
  --copper-600: #C47A5A;
  --copper-700: #B86A4A;
  --gold-accent: #D4AF37;
  --glow-warm:  #FFB462;
  /* Neutrals */
  --neutral-0:   #FFFFFF;
  --neutral-50:  #FCFCFC;
  --neutral-100: #F2F2F2;
  --neutral-200: #E2E2E2;
  --neutral-300: #D8D8D8;
  --neutral-400: #C8C8C8;
  /* Dark */
  --dark-bg:   #423431;
  --dark-900:  #1A1A1A;
  --dark-1000: #000000;
  /* Semantic */
  --bg-primary: var(--neutral-0);
  --text-primary: var(--dark-1000);
  --text-secondary: var(--dark-bg);
  --text-on-dark: var(--neutral-200);
  --text-on-dark-muted: var(--neutral-400);
  --text-decor: rgba(66,52,49,0.19);
  --footer-copy: rgba(15,13,13,0.47);
  /* Spacing */
  --sp-xs: 4px; --sp-sm: 8px; --sp-md: 12px; --sp-base: 16px;
  --sp-lg: 20px; --sp-xl: 24px; --sp-2xl: 30px; --sp-3xl: 40px;
  --sp-4xl: 60px; --sp-5xl: 90px;
  /* Radius */
  --r-sm: 12px; --r-md: 20px; --r-pill: 100px; --r-full: 200px;
  /* Effects */
  --shadow-glow: 0 0 30px -2px rgba(255,180,98,0.7);
  /* Layout */
  --container-max: 1140px;
  --whatsapp-link-color: var(--dark-1000);
}

/* ---------- 3. Utilities ---------- */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--sp-lg); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 1;
  padding: 15px 35px; border-radius: var(--r-pill);
  color: var(--dark-1000); background: var(--rose-300);
  transition: transform .2s ease, box-shadow .3s ease, background .3s ease;
  cursor: pointer; text-align: center; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(
    105deg,
    var(--rose-300) 0%,
    var(--rose-200) 30%,
    var(--rose-300) 45%,
    #fff8f5 50%,
    var(--rose-300) 55%,
    var(--rose-200) 70%,
    var(--rose-300) 100%
  );
  background-size: 200% auto;
  border: none;
  box-shadow: var(--shadow-glow);
  animation: shineBtn 3.5s linear infinite;
}
.btn--primary:hover { transform: translateY(-2px); }

@keyframes shineBtn {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}
.btn--md { font-size: 21px; padding: 12px 30px; }
.btn--lg { font-size: 23px; padding: 15px 35px; }
.btn__icon { display: inline-flex; align-items: center; justify-content: center; }
.btn__icon svg { width: 22px; height: 22px; fill: currentColor; }
.btn--lg .btn__icon svg { width: 24px; height: 24px; }
/* Row-reverse to place icon after text (matches original) */
.btn { flex-direction: row-reverse; }

/* ---------- 5. Ticker ---------- */
.ticker {
  background-image: linear-gradient(180deg, var(--rose-300) 0%, var(--rose-400) 100%);
  overflow: hidden; padding: 12px 0;
  border-top: 6px solid transparent;
  border-image: linear-gradient(
    to right,
    var(--rose-300),
    transparent,
    var(--rose-300)
  ) 1;
}
.ticker__track {
  display: flex; width: max-content;
  animation: ticker-scroll 18s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 20px; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--dark-1000); white-space: nowrap;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  background: url('../img/assessoria-contabil-empresas-prestadores-servico.webp') no-repeat center right / cover;
  background-color: var(--dark-900);
  padding: 80px 0;
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(to right, var(--rose-200), var(--rose-400), var(--rose-200)) 1;
}
/* Overlay escuro esquerdo (leitura do texto) */
.hero::before {
  content: ""; position: absolute; inset: 0 40% 0 0;
  z-index: 1; pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(10, 6, 4, 0.95) 0%,
    rgba(10, 6, 4, 0.85) 40%,
    rgba(10, 6, 4, 0.50) 75%,
    transparent 100%
  );
}
/* Glow dourado pulsante à direita */
.hero::after {
  content: ""; position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background: radial-gradient(
    ellipse at 85% 50%,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 55%
  );
  animation: goldenGlow 3s ease-in-out infinite alternate;
}
@keyframes goldenGlow {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1440px; margin-inline: auto; padding-inline: 80px;
  display: flex; align-items: center; width: 100%;
}
.hero__content {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 32px; max-width: 620px; width: 50%;
}
.hero__logo { display: inline-block; margin-bottom: -16px; }
.hero__logo img { width: 200px; height: auto; }
.hero__title {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  letter-spacing: -0.02em; display: flex; flex-direction: column;
  background: linear-gradient(105deg,
    var(--rose-400) 0%, var(--rose-200) 20%, var(--rose-300) 35%,
    #ffffff 45%, var(--rose-300) 55%, var(--rose-200) 70%, var(--rose-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto;
  animation: shineText 4s linear infinite;
}
.hero__title-sub  { font-size: 26px; font-weight: 500; line-height: 1.35; letter-spacing: 0; margin-bottom: 6px; opacity: 0.9; padding-bottom: 0.08em; }
.hero__title-main { font-size: 64px; font-weight: 700; line-height: 1.15; padding-bottom: 0.12em; }
@keyframes shineText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero__lead {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 400;
  color: var(--neutral-0); max-width: 500px; line-height: 1.6;
  opacity: 0.9;
}
.hero .btn { margin-top: 8px; }

/* Desktop/laptop: empurra o conteúdo um toque pra cima (fora do centro perfeito) */
@media (min-width: 1025px) {
  .hero__content { margin-top: -40px; }
}

/* ---------- 7. Section: Mais clareza (post-hero, com vídeo) ---------- */
/* Espaçamento 1:1 com o Elementor original (post-644 · elemento 7fe9d9f). */
.pos-hero { background: var(--neutral-50); padding: 0; }
.pos-hero__inner {
  max-width: 1440px; margin-inline: auto;
  display: grid; grid-template-columns: 65% 35%;
  padding: 20px 80px 40px;
  align-items: stretch;
}
.pos-hero__content {
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
  gap: 24px; padding-right: 60px;
}
.pos-hero__title {
  font-family: 'Outfit', sans-serif; font-size: 46px; font-weight: 600; line-height: 1.15;
  margin-top: -16px;
  background: linear-gradient(
    105deg,
    #c47a5a 0%,
    #d4906e 20%,
    #c98060 35%,
    #e8b898 45%,
    #c98060 55%,
    #d4906e 70%,
    #b86a4a 100%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto;
  animation: shineTextSlow 4s linear infinite;
  padding-bottom: 0.12em;
}
@keyframes shineTextSlow {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}
/* Símbolo colorido dentro de heading com gradient — sobrescreve o fill transparent */
.pos-hero__title .simbolo,
.simbolo {
  font-size: 65px; font-weight: 600; line-height: 0;
  color: var(--rose-400);
  -webkit-text-fill-color: var(--rose-400);
  vertical-align: middle;
  position: relative; bottom: 6px;
}
.pos-hero__copy p {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 400;
  color: var(--dark-1000); margin-bottom: 12px; line-height: 1.6;
}
.pos-hero__video {
  position: relative; overflow: hidden;
  min-height: 43em; padding-top: 40px;
  border-radius: 20px;
  display: flex; flex-direction: column;
}
.pos-hero__video video {
  flex: 1; width: 100%; object-fit: cover;
}
/* Fade branco na parte inferior do vídeo (dissolve os 40% de baixo) */
.pos-hero__video::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 40%;
  pointer-events: none; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 30%,
    transparent 100%
  );
}

/* ---------- 8. Section: Quem Atendemos (dark) ---------- */
.quem-atendemos {
  background: var(--dark-bg); padding: 60px 0;
  position: relative; z-index: 10; overflow: hidden;
  border-top: 6px solid transparent;
  border-image: linear-gradient(to right, var(--rose-100), var(--rose-400), var(--rose-100)) 1;
}
/* Padrão de bolinhas rose com máscara elíptica central */
.quem-atendemos::before {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(242, 182, 160, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 50%,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%
  );
}
/* Padrão de bolinhas gold maiores com anel de máscara */
.quem-atendemos::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.08) 3px, transparent 2px);
  background-size: 28px 28px;
  background-position: 14px 14px;
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 50%,
    transparent 30%,
    rgba(0,0,0,0.4) 70%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    transparent 30%,
    rgba(0,0,0,0.4) 70%,
    transparent 100%
  );
}
/* Sobrepõe um pouco o final do vídeo da pos-hero (desktop apenas) */
@media (min-width: 1025px) {
  .quem-atendemos { margin-top: -120px; }
}
.quem-atendemos__inner {
  max-width: 1440px; margin-inline: auto; padding-inline: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.quem-atendemos__media { display: flex; justify-content: center; }
.quem-atendemos__media img {
  border-radius: 20px;
  max-width: 100%; height: auto;
  display: block;
}
.quem-atendemos__content {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.quem-atendemos__title {
  font-family: 'Outfit', sans-serif; font-size: 45px; font-weight: 600; line-height: 1.15;
  color: var(--neutral-0);
}
.quem-atendemos__copy p {
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 400;
  color: var(--neutral-0); margin-bottom: 12px;
}

/* ---------- 9. Section: Nossos Serviços ---------- */
.nossos-servicos { background: var(--neutral-0); padding: 60px 0; }
.nossos-servicos__header {
  text-align: center; max-width: 900px; margin: 0 auto 40px;
  padding-inline: var(--sp-lg);
}
.nossos-servicos__title {
  font-family: 'Outfit', sans-serif; font-size: 46px; font-weight: 600;
  line-height: 1.15;
  background: linear-gradient(
    105deg,
    #c47a5a 0%,
    #d4906e 20%,
    #c98060 35%,
    #e8b898 45%,
    #c98060 55%,
    #d4906e 70%,
    #b86a4a 100%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto;
  animation: shineTextSlow 4s linear infinite;
  padding-bottom: 0.12em;
}
.nossos-servicos__lead {
  font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 400;
  color: var(--dark-1000); margin-top: 16px;
}
.nossos-servicos__cta { text-align: center; margin: 40px 0 0; padding-bottom: 60px; }

/* ---- Interactive service cards (m2-cards) ---- */
.m2-wrap { padding: 1rem 20px; font-family: 'Outfit', sans-serif; max-width: 1300px; margin-inline: auto; }
.m2-cards { display: flex; gap: 10px; height: 280px; }
.m2-card {
  border-radius: 16px; background: #1a110a;
  border: 0.5px solid rgba(242,181,160,0.15);
  padding: 20px 16px; cursor: pointer;
  transition: flex .45s cubic-bezier(.4,0,.2,1), background .35s, border-color .35s;
  flex: 1; min-width: 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.m2-card.active { flex: 3.5; background: #120c07; border-color: rgba(242,213,221,0.4); }
.m2-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.m2-num {
  font-size: 26px; font-weight: 300;
  background: linear-gradient(105deg, var(--rose-400), var(--rose-200), var(--rose-300), var(--rose-100));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  white-space: nowrap; transition: font-size .3s;
}
.m2-card.active .m2-num { font-size: 34px; }
.m2-arrow { font-size: 14px; color: var(--rose-400); opacity: 0.5; }
.m2-card.active .m2-arrow { opacity: 1; color: var(--rose-200); }
.m2-title {
  font-size: 16px; font-weight: 500; color: var(--rose-200); line-height: 1.4;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity .3s, max-height .35s;
}
.m2-card.active .m2-title { opacity: 1; max-height: 100px; }
.m2-desc {
  font-size: 18px; font-weight: 300; color: rgba(242,187,174,0.75); line-height: 1.6;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity .35s .1s, max-height .35s; margin-top: 10px;
}
.m2-card.active .m2-desc { opacity: 1; max-height: 120px; }
.m2-bottom {
  font-size: 19px; font-weight: 400; color: rgba(242,182,160,0.5); line-height: 1.35;
  transition: opacity .2s; writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg); align-self: flex-end; min-height: 0; overflow: hidden;
}
.m2-card > div:first-child { flex-shrink: 0; }
.m2-card.active .m2-bottom { opacity: 0; height: 0; }
.m2-line {
  width: 24px; height: 1px;
  background: linear-gradient(to right, var(--rose-400), var(--rose-200), transparent);
  margin: 8px 0; transition: width .3s;
}
.m2-card.active .m2-line { width: 48px; }

/* ---------- 10. Section: Tomar decisões (reverse, accent title) ---------- */
.tomar-decisoes { background: var(--neutral-100); padding: 60px 0; }
.tomar-decisoes__inner {
  max-width: 1440px; margin-inline: auto; padding-inline: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.tomar-decisoes__content {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.tomar-decisoes__title {
  font-family: 'Outfit', sans-serif; font-size: 42px; font-weight: 600; line-height: 1.15;
  background: linear-gradient(
    105deg,
    #c47a5a 0%,
    #d4906e 20%,
    #c98060 35%,
    #e8b898 45%,
    #c98060 55%,
    #d4906e 70%,
    #b86a4a 100%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto;
  animation: shineTextSlow 4s linear infinite;
  padding-bottom: 0.12em;
}
.tomar-decisoes__copy p {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 400;
  color: var(--dark-1000); margin-bottom: 12px; line-height: 1.6;
}
.tomar-decisoes__media { display: flex; justify-content: center; }
.tomar-decisoes__media img {
  border-radius: 20px;
  max-width: 100%; height: auto;
  display: block;
}

/* ---------- 11. Section: Como Funciona ---------- */
.como-funciona {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--neutral-100) 0%,
    var(--rose-50) 40%,
    var(--rose-100) 100%
  );
  border-top: 6px solid transparent;
  border-image: linear-gradient(
    to right,
    var(--rose-300),
    transparent,
    var(--rose-300)
  ) 1;
}
.como-funciona__inner {
  max-width: 1440px; margin-inline: auto; padding-inline: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.como-funciona__intro { position: sticky; top: 40px; padding: 30px; align-self: flex-start; }
.como-funciona__title {
  font-family: 'Outfit', sans-serif; font-size: 46px; font-weight: 600;
  line-height: 71px; color: var(--dark-1000);
}
.como-funciona__intro p {
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 400;
  color: var(--dark-1000); margin: 12px 0 24px;
}
.check-list { display: flex; flex-direction: column; gap: 20px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 400;
  color: var(--text-secondary); line-height: 1.4;
}
.check-list svg { width: 14px; height: 14px; fill: var(--copper-500); flex-shrink: 0; margin-top: 8px; }

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  position: sticky; top: 40px;
  min-height: 200px; padding: 30px; border-radius: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 5px;
  align-items: start;
}
.step__num {
  grid-column: 2; grid-row: 1; justify-self: end;
  font-family: 'Outfit', sans-serif; font-size: 55px; font-weight: 300;
  color: var(--text-decor); line-height: 1;
}
.step__title {
  grid-column: 1; grid-row: 1; align-self: end;
  font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 600;
  color: var(--dark-bg); margin-top: -60px;
}
.step__text {
  grid-column: 1 / -1; grid-row: 2;
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 400;
  color: var(--dark-1000); margin-top: -10px;
}
.step--1 { background: var(--neutral-0); z-index: 1; }
.step--2 { background: var(--rose-100); z-index: 2; }
.step--3 { background: var(--rose-200); z-index: 3; }
.step--4 { background: var(--rose-400); z-index: 5; }

/* ---------- 12. Section: CTA Final (preto) ---------- */
.cta-final { background: var(--dark-1000); padding: 60px 0; }
.cta-final__inner {
  max-width: var(--container-max); margin-inline: auto; padding-inline: var(--sp-4xl);
  display: grid; grid-template-columns: 70% 30%; gap: 40px; align-items: center;
}
.cta-final__content { display: flex; flex-direction: column; gap: 4px; }
.cta-final__title {
  font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 600;
  color: #E2E2E2; line-height: 1.2;
}
.cta-final__lead {
  font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 600;
  color: var(--neutral-400); line-height: 1.4;
}
.cta-final__cta { justify-self: end; }

/* ---------- 13. Footer ---------- */
.site-footer { background: var(--neutral-0); padding: 60px 80px 40px; }
.site-footer__top {
  max-width: 1440px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 48px; align-items: start;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.site-footer__logo img { width: 178px; height: auto; }
.site-footer__hours {
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: -0.1px; color: var(--dark-1000);
}
.site-footer__social { display: flex; gap: 12px; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 200px; background: var(--rose-600);
  transition: background .3s;
}
.social-icon svg { width: 17px; height: 17px; fill: var(--neutral-100); }
.social-icon:hover { background: var(--rose-300); }
.social-icon:hover svg { fill: var(--neutral-0); }

.site-footer__col-title {
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--dark-1000); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.site-footer__institutional-text {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 400;
  color: var(--dark-1000); line-height: 1.6; margin-bottom: 16px;
}
.site-footer__institutional-data {
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-style: normal;
  color: var(--footer-copy); line-height: 1.5;
}
.site-footer__institutional-data strong { color: var(--dark-1000); font-weight: 600; }

.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--copper-500); transition: color .2s;
  border-bottom: 1px solid var(--copper-500); padding-bottom: 2px; align-self: flex-start;
}
.site-footer__links a:hover { color: var(--copper-700); }

.site-footer__disclaimer {
  max-width: 1440px; margin: 40px auto 0;
  padding: 20px 24px;
  background: var(--neutral-100);
  border-radius: 12px;
  border-left: 3px solid var(--rose-400);
}
.site-footer__disclaimer p {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 400;
  color: var(--footer-copy); line-height: 1.6;
}

.site-footer__bottom {
  max-width: 1440px; margin: 24px auto 0;
  border-top: 1px solid var(--neutral-300); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.site-footer__copy {
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--footer-copy);
}
.site-footer__partner img { width: 200px; height: auto; }

@media (max-width: 1024px) {
  .site-footer { padding: 48px 32px 32px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer__col--security { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .site-footer { padding: 40px 20px 24px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .site-footer__col--security { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .site-footer__disclaimer { padding: 16px 18px; }
  .site-footer__disclaimer p { font-size: 11px; }
}

/* ---------- 14b. Página 404 ---------- */
.notfound {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark-1000) 0%, var(--dark-bg) 100%);
  padding: 60px 24px;
}
.notfound__inner {
  max-width: 640px; width: 100%; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.notfound__logo { display: inline-block; margin-bottom: 16px; }
.notfound__logo img { width: 160px; height: auto; }
.notfound__code {
  font-family: 'Outfit', sans-serif; font-size: 120px; font-weight: 300;
  line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(
    105deg,
    #c47a5a 0%, #d4906e 20%, #c98060 35%, #e8b898 45%,
    #c98060 55%, #d4906e 70%, #b86a4a 100%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto;
  animation: shineTextSlow 4s linear infinite;
  padding-bottom: 0.05em;
}
.notfound__title {
  font-family: 'Outfit', sans-serif; font-size: 34px; font-weight: 600;
  color: var(--neutral-0); line-height: 1.15;
}
.notfound__lead {
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 400;
  color: var(--neutral-200); line-height: 1.6; max-width: 520px;
  opacity: 0.9;
}
.notfound__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-top: 16px;
}
.notfound__nav {
  margin-top: 32px; font-family: 'Outfit', sans-serif; font-size: 14px;
  color: var(--neutral-400); display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.notfound__nav a { color: var(--rose-300); border-bottom: 1px solid var(--rose-300); padding-bottom: 1px; }
.notfound__nav a:hover { color: var(--rose-200); border-bottom-color: var(--rose-200); }
@media (max-width: 767px) {
  .notfound__code { font-size: 88px; }
  .notfound__title { font-size: 26px; }
  .notfound__lead { font-size: 15px; }
  .notfound__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- 14. Legal pages (Política / Termos) ---------- */
.legal-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--neutral-200);
  padding: 20px 0;
  position: sticky; top: 0; z-index: 20;
}
.legal-header__inner {
  max-width: 1440px; margin-inline: auto; padding-inline: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.legal-header__logo img { width: 120px; height: auto; }
.legal-header__back {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--dark-1000); transition: color .2s;
}
.legal-header__back:hover { color: var(--copper-500); }

.legal { background: var(--neutral-50); min-height: 60vh; padding: 60px 0 80px; }
.legal__article {
  max-width: 900px; margin-inline: auto; padding-inline: 24px;
  font-family: 'Outfit', sans-serif; color: var(--dark-1000);
}
.legal__title {
  font-family: 'Outfit', sans-serif; font-size: 42px; font-weight: 600;
  line-height: 1.15; margin-bottom: 12px;
  background: linear-gradient(
    105deg,
    #c47a5a 0%, #d4906e 20%, #c98060 35%, #e8b898 45%,
    #c98060 55%, #d4906e 70%, #b86a4a 100%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto;
  animation: shineTextSlow 4s linear infinite;
  padding-bottom: 0.12em;
}
.legal__meta { font-size: 14px; color: var(--footer-copy); margin-bottom: 32px; }
.legal__article h2 {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 600;
  color: var(--dark-bg); margin-top: 40px; margin-bottom: 12px;
}
.legal__article p, .legal__article li {
  font-size: 16px; line-height: 1.7; color: var(--dark-1000);
}
.legal__article p { margin-bottom: 12px; }
.legal__article ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal__article ul li { margin-bottom: 6px; }
.legal__address {
  display: block; font-style: normal;
  padding: 20px 24px; background: var(--neutral-100);
  border-left: 3px solid var(--rose-400); border-radius: 8px;
  margin-top: 16px; font-size: 15px; line-height: 1.7;
}

@media (max-width: 767px) {
  .legal-header__inner { padding-inline: 20px; }
  .legal__article { padding-inline: 20px; }
  .legal__title { font-size: 30px; }
  .legal__article h2 { font-size: 19px; margin-top: 32px; }
  .legal__article p, .legal__article li { font-size: 15px; }
}

/* ==========================================================================
   Responsive — breakpoints iguais aos do Elementor original
   ========================================================================== */

/* Laptop ≤ 1366 */
@media (max-width: 1366px) {
  .hero__inner { padding-inline: 60px; }
  .hero__title-sub  { font-size: 22px; }
  .hero__title-main { font-size: 66px; }
  .hero__logo img { width: 180px; }
  .hero__content { max-width: 560px; }
  .pos-hero__title { font-size: 35px; }
  .tomar-decisoes__title { font-size: 30px; }
}

/* Tablet ≤ 1024 */
@media (max-width: 1024px) {
  .hero { background-position: 70% center; }
  .hero__inner { padding-inline: 40px; }
  .hero__content { max-width: 500px; width: 55%; gap: 24px; }
  .hero__logo img { width: 160px; }
  .hero__title-sub  { font-size: 20px; }
  .hero__title-main { font-size: 50px; }
  .hero__lead { font-size: 16px; }
  .btn--lg { font-size: 20px; }
  .pos-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .pos-hero__content { padding: 60px 40px; }
  .pos-hero__title { font-size: 26px; }
  .pos-hero__copy p { font-size: 14px; line-height: 1.4; }
  .btn--md { font-size: 20px; }
  .quem-atendemos { padding: 40px 0; }
  .quem-atendemos__inner { padding-inline: 40px; gap: 40px; }
  .quem-atendemos__title { font-size: 25px; }
  .quem-atendemos__copy p { font-size: 14px; line-height: 1.4; }
  .nossos-servicos__title { font-size: 35px; line-height: 1.2; }
  .tomar-decisoes__inner { padding-inline: 60px; gap: 30px; }
  .tomar-decisoes__title { font-size: 26px; }
  .tomar-decisoes__copy p { font-size: 14px; line-height: 1.4; }
  .como-funciona__inner { padding-inline: 30px; gap: 30px; }
  .como-funciona__title { font-size: 35px; line-height: 1; }
  .step__num { font-size: 35px; }
  .step__title { font-size: 25px; margin-top: -49px; }
  .site-footer { padding: 60px 40px 32px; }
  .site-footer__inner { flex-direction: column; text-align: center; gap: 32px; }
}

/* Mobile ≤ 767 */
@media (max-width: 767px) {
  .hero {
    background: url('../img/assessoria-contabil-empresas-mobile.webp') no-repeat center 25% / cover;
    background-color: var(--dark-900);
    min-height: auto; padding: 12vh 0 12vh;
    align-items: flex-start;
  }
  /* No mobile o overlay escuro sai do lado (60% esquerda) e vira de cima pra baixo
     pra dar contraste ao texto que agora está no topo. */
  .hero::before {
    inset: 0 0 35% 0;
    background: linear-gradient(
      to bottom,
      rgba(10, 6, 4, 0.95) 0%,
      rgba(10, 6, 4, 0.85) 40%,
      rgba(10, 6, 4, 0.50) 75%,
      transparent 100%
    );
  }
  .hero__inner { flex-direction: column; padding-inline: 24px; }
  .hero__content { max-width: 100%; width: 100%; gap: 20px; }
  .hero__logo img { width: 150px; }
  .hero__title { letter-spacing: -0.01em; }
  .hero__title-sub  { font-size: 16px; margin-bottom: 4px; }
  .hero__title-main { font-size: 44px; }
  .hero__lead { font-size: 16px; max-width: 100%; }
  .btn--lg { font-size: 18px; padding: 14px 28px; }
  .pos-hero__inner {
    grid-template-columns: 1fr; min-height: auto;
    padding: 32px 16px; gap: 32px;
  }
  .pos-hero__content {
    padding: 0 12px;
    align-items: flex-start; gap: 20px;
    order: 2;
  }
  .pos-hero__video {
    order: 1; min-height: auto; height: 60vh;
    padding-top: 0; border-radius: 16px;
  }
  .pos-hero__title { font-size: 26px; margin-top: 0; }
  .pos-hero__copy p { font-size: 15px; }
  .quem-atendemos { padding: 30px 0; }
  .quem-atendemos__inner { grid-template-columns: 1fr; padding-inline: 20px; gap: 24px; }
  .quem-atendemos__title { font-size: 25px; }
  .nossos-servicos { padding: 60px 0 30px; }
  .nossos-servicos__title { font-size: 29px; line-height: 1.3; }
  .nossos-servicos__lead { font-size: 16px; }
  .btn--md { font-size: 18px; }
  .m2-cards { flex-direction: column; height: auto; gap: 8px; }
  .m2-card {
    flex: none !important; height: auto !important; padding: 20px 16px;
    background: #120c07; border-color: rgba(242,213,221,0.4);
  }
  .m2-desc { opacity: 1 !important; max-height: 200px !important; }
  .m2-num { font-size: 28px !important; }
  .m2-title { font-size: 14px !important; color: var(--rose-200) !important; opacity: 1 !important; max-height: 200px !important; }
  .m2-line { width: 48px !important; }
  .m2-bottom { display: none; }
  .m2-arrow { opacity: 1 !important; color: var(--rose-200) !important; }
  .tomar-decisoes__inner { grid-template-columns: 1fr; padding-inline: 20px; gap: 20px; padding-top: 30px; }
  .tomar-decisoes__title { font-size: 22px; }
  .tomar-decisoes__copy p { font-size: 15px; }
  .tomar-decisoes__media { padding-top: 0; order: -1; }
  .como-funciona__inner { grid-template-columns: 1fr; padding-inline: 20px; gap: 40px; }
  .como-funciona__intro { position: static; padding: 0; }
  .como-funciona__title { font-size: 29px; line-height: 1.3; }
  .como-funciona__intro p { font-size: 15px; }
  .check-list li { font-size: 15px; }
  .step { position: static; padding: 30px; }
  .step__num { font-size: 45px; }
  .step__title { font-size: 19px; margin-top: -50px; }
  .step__text { font-size: 16px; margin-top: 0; }
  .cta-final { padding: 45px 20px; }
  .cta-final__inner { grid-template-columns: 1fr; padding-inline: 0; gap: 24px; text-align: center; }
  .cta-final__cta { justify-self: center; }
  .site-footer { padding: 45px 20px 40px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- 15. LGPD Cookie Banner ---------- */
.lgpd {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  z-index: 999; max-width: 720px; margin-inline: auto;
  background: var(--dark-1000);
  padding: 20px 24px; border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(242, 187, 174, 0.25);
  font-family: 'Outfit', sans-serif;
  display: flex; flex-direction: column; gap: 16px;
  animation: lgpd-in .4s cubic-bezier(.2, .8, .2, 1);
}
@keyframes lgpd-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.lgpd[hidden] { display: none !important; }
.lgpd__text {
  font-size: 14px; line-height: 1.5;
  color: var(--neutral-200); margin: 0;
}
.lgpd__text a {
  color: var(--rose-300);
  border-bottom: 1px solid var(--rose-300);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.lgpd__text a:hover { color: var(--rose-200); border-bottom-color: var(--rose-200); }
.lgpd__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.lgpd__btn {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px;
  padding: 10px 22px; border-radius: 100px;
  cursor: pointer; transition: background .2s, border-color .2s, color .2s;
  border: 1px solid transparent; white-space: nowrap;
}
.lgpd__btn--reject {
  background: transparent; color: var(--neutral-0);
  border-color: rgba(255, 255, 255, 0.25);
}
.lgpd__btn--reject:hover { border-color: var(--neutral-0); }
.lgpd__btn--accept {
  background: var(--rose-300); color: var(--dark-1000);
}
.lgpd__btn--accept:hover { background: var(--rose-400); }

@media (min-width: 640px) {
  .lgpd {
    flex-direction: row; align-items: center; padding: 16px 20px;
  }
  .lgpd__text { flex: 1; }
  .lgpd__actions { flex-shrink: 0; justify-content: flex-end; }
}
@media (max-width: 480px) {
  .lgpd { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .lgpd__actions { width: 100%; }
  .lgpd__btn { flex: 1; text-align: center; }
}
