/* ══════════════════════════════════════════════════
   Wagner Consultoria — folha de estilos principal
   Fonte única de verdade. Não há CSS inline no HTML.
   Paleta: primária #32366C, secundária #9E812C, terciária #D28641
   ══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #32366C;
  --navy-dark: #23264C;
  --black:     #191919;
  --white:     #ffffff;
  --off-white: #f8f8f6;
  --gray-mid:  #707070;
  --gray-light:#ebebea;
  --copper:    #9E812C;
  --gold-tertiary: #D28641;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'IBM Plex Sans', system-ui, sans-serif;
  --container: 3.75rem;
  --nav-h:     6.25rem;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 0.5s ease-in;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }

/* ── TYPE SCALE ── */
.h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 5vw, 5.5rem); line-height: 1.1; letter-spacing: -0.02em; }
.h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 5vw, 6.875rem); line-height: 1; letter-spacing: -0.015em; }
.h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4vw, 5rem); line-height: 1.1; letter-spacing: -0.01em; }
.h4 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.75rem, 3vw, 3.75rem); line-height: 1.1; letter-spacing: -0.008em; }
.h5 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.5vw, 3.125rem); line-height: 1.25; }
.h6 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.25rem, 2vw, 2.5rem); line-height: 1.3; }
.body-1 { font-family: var(--sans); font-weight: 300; font-size: 1.375rem; line-height: 1.85; }
.body-2 { font-family: var(--sans); font-weight: 300; font-size: 1.125rem; line-height: 1.85; }

/* ── GLOBAL PARAGRAPH SPACING ── */
p { margin-bottom: 2rem; line-height: 1.85; }
p:last-child { margin-bottom: 0; }

.eyebrow { font-family: var(--sans); font-weight: 500; font-size: 1rem; line-height: 1.2; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold-tertiary); flex-shrink: 0; }

/* ── CONTAINER ── */
.lc { padding-left: var(--container); padding-right: var(--container); }

/* ── NAV ── */
.nav-root {
  position: fixed;
  isolation: isolate;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 248, 246, 0.78);
  backdrop-filter: blur(3px) url(#liquid-glass-filter);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.05);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-root.scrolled {
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  border-bottom: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px) url(#liquid-glass-filter);
  -webkit-backdrop-filter: blur(24px) saturate(160%) brightness(1.04);
  box-shadow:
    0 8px 32px rgba(50, 54, 108, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  outline: none;
}

.nav-root.scrolled::before {
  display: none;
}

.nav-root.scrolled::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.9) 70%,
    transparent
  );
  border-radius: 100px;
  pointer-events: none;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0.75rem var(--container);
  transition: all 0.4s ease;
}

.nav-root.scrolled .nav-bar {
  padding: 0 1.5rem;
}

.nav-logo img {
  height: 56px;
  width: auto;
  transition: height 0.4s ease;
}

.nav-root.scrolled .nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  height: 100%;
  gap: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  transition: color 0.3s, text-decoration-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--copper);
  text-decoration-color: currentColor;
  transform: translateY(-3px);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 2px solid var(--navy);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 1rem;
  flex-shrink: 0;
  align-self: center;
  transition: color 0.3s, background-color 0.3s;
}

.nav-cta:hover {
  color: var(--navy);
  background: transparent;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 102;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

/* ── HERO IMAGE CARD ── */
.hero-image-card {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 420px;
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 1s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* ── HERO ── */
.hero {
  padding: calc(var(--nav-h) + 4rem) var(--container) 5rem;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
}

.hero-eyebrow {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-title {
  max-width: 900px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.hero-title em { font-style: italic; color: var(--navy); }
.hero-title::after { content: ''; display: block; width: 48px; height: 2px; background: var(--copper); margin-top: 2rem; }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--gray-light);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-text { color: var(--gray-mid); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--copper);
  border: 2px solid var(--copper);
  border-radius: 100px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}

.btn-primary:hover {
  color: var(--copper);
  background: transparent;
}

.btn-link {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: text-decoration-color 0.3s, color 0.3s;
}

.btn-link::after { content: '→'; transition: transform 0.3s ease-out; }
.btn-link:hover { color: var(--copper); }
.btn-link:hover::after { transform: translateX(3px); }

/* ── PROBLEMA ── */
.problem {
  padding: 8rem var(--container);
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.problem-highlight {
  max-width: 1300px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}

.problem-highlight h2 {
  color: var(--black);
  max-width: 800px;
  margin-top: 1.5rem;
}

.problem-highlight h2 em {
  font-style: italic;
  color: var(--copper);
}

.problem-body {
  max-width: 640px;
}

.problem-body p { color: var(--gray-mid); }
.problem-body p:last-child { margin-bottom: 0; }

/* ── SOBRE ── */
.about {
  background: var(--navy);
  padding: 8rem var(--container);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1300px;
}

.about .eyebrow { color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.about h2 { color: var(--white); margin-top: 0; }
.about h2 em { color: rgba(255,255,255,0.5); font-style: italic; }

.about-grid p {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  line-height: 1.85;
}

.about-grid p:last-child { margin-bottom: 0; }

.about-image-card {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  margin: 4rem 0 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 1s ease;
  filter: brightness(0.88);
}

/* ── SERVIÇOS ── */
.services {
  padding: 8rem var(--container);
  background: var(--white);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
  max-width: 1300px;
}

.services-header .eyebrow { color: var(--navy); margin-bottom: 1rem; }

.services-header-right {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-mid);
  max-width: 240px;
  text-align: right;
  line-height: 1.6;
}

.service-list { list-style: none; max-width: 1300px; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-light);
  align-items: start;
  transition: background 0.4s ease, padding 0.3s ease;
  cursor: default;
}

.service-row:last-child { border-bottom: 1px solid var(--gray-light); }
.service-row:hover {
  background: var(--off-white);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.service-row:hover .service-name { color: var(--gold-tertiary); }

.service-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-mid);
}

.service-name {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  transition: color 0.3s;
}

.service-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.85;
}

/* ── GET IN TOUCH ── */
.getintouch {
  background: var(--navy-dark);
  padding: 8rem var(--container) 10rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.getintouch-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.getintouch-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.getintouch-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--copper);
}

.getintouch-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.getintouch-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.getintouch-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, gap 0.3s;
  text-decoration: none;
}

.getintouch-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
  gap: 1.5rem;
}

.getintouch-btn svg { transition: transform 0.3s ease; }
.getintouch-btn:hover svg { transform: translateX(4px); }

/* ── FOOTER ── */
.footer-rich {
  background: var(--black);
  padding: 1.5rem var(--container);
}

.footer-rich-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links { display: flex; gap: 2rem; list-style: none; }
.footer-bottom-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,1); }

/* ── CONTATO FORM ── */
.contact {
  padding: 8rem var(--container);
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 8rem;
  align-items: start;
  max-width: 1300px;
}

.contact-left .eyebrow { color: var(--navy); margin-bottom: 1.5rem; }
.contact-left h2 { color: var(--black); margin-bottom: 1.5rem; }
.contact-left p {
  color: var(--gray-mid);
  font-size: 1.125rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gray-mid);
  min-width: 80px;
}

.contact-detail a, .contact-detail span {
  font-size: 1rem;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}

.contact-detail a:hover { text-decoration-color: currentColor; }

.contact-form {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-field {
  border-bottom: 1px solid var(--gray-light);
  transition: border-color 0.4s ease;
}

.form-field:focus-within { border-bottom-color: var(--copper); }

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  padding: 1.25rem 0;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-mid); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.form-field textarea { min-height: 100px; resize: none; }
.form-submit { margin-top: 2.5rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ── PULL QUOTES ── */
.pullquote {
  margin: 2.5rem 0;
  padding: 1.5rem;
  border: 1px solid var(--copper);
  border-radius: 8px;
  background: var(--off-white);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(50, 54, 108, 0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.pullquote:hover {
  background: rgba(158, 129, 44, 0.04);
  box-shadow: 0 8px 20px rgba(50, 54, 108, 0.14);
  transform: translateY(-4px);
}

.pullquote.visible {
  box-shadow: 0 2px 8px rgba(50, 54, 108, 0.08);
}

.pullquote p {
  margin: 0;
}

.pullquote strong {
  color: var(--copper);
  font-weight: 500;
}

/* ── DEFINIÇÃO-CHAVE SECTION ── */
.definition-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--navy);
  padding: 3rem 0;
  margin: 0;
}

.definition-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container);
}

.definition-key-text {
  margin: 0;
  font-size: 22px;
  line-height: 1.8;
  color: var(--white);
  font-weight: 300;
  font-family: var(--sans);
}

/* ── BR CONTROL ── */
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: inline; } }

/* ── PERGUNTAS ── */
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --container: 2.5rem; }
  .problem-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-header-right { text-align: left; max-width: 100%; }
  .service-row { grid-template-columns: 80px 1fr; }
  .service-desc { grid-column: 2; word-break: break-word; }
  .service-row:hover { margin: 0; padding: 2rem 0; background: none; }
  .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { justify-content: flex-start; }
  .hero-image-card { height: 240px; margin: 2rem 0; }
  .about-image-card { height: 220px; }

  .nav-hamburger {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-root.scrolled .nav-hamburger {
    display: flex;
    opacity: 1;
  }

  .nav-root.scrolled .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0.75rem;
    right: 0.75rem;
    background: rgba(248, 248, 246, 0.9);
    backdrop-filter: blur(4px) url(#liquid-glass-filter);
    -webkit-backdrop-filter: blur(80px) saturate(160%) brightness(1.06);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    border-bottom: none;
    border-radius: 24px;
    box-shadow: none;
    gap: 1.5rem;
    z-index: 99;
  }

  .nav-links.active {
    height: auto !important;
    max-height: calc(100vh - var(--nav-h) - 1.5rem);
    padding: 2.5rem 0;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
      0 16px 32px rgba(50, 54, 108, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.8) inset;
  }

  .nav-links a {
    height: auto;
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-root.scrolled ~ * .nav-links.active,
  .nav-root.scrolled .nav-links.active {
    top: calc(0.75rem + 60px + 0.75rem);
  }
}

@media (max-width: 600px) {
  :root { --container: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: calc(var(--nav-h) + 2rem) var(--container) 3rem; }
  .problem, .services, .about, .contact, .getintouch { padding: 4rem var(--container); }
  .footer-rich { padding: 1.25rem var(--container); }
  .contact-form { padding: 1.5rem; }
  .problem-grid, .about-grid, .contact-grid { gap: 2rem; }
  .services-header { margin-bottom: 2rem; }
  .service-row { padding: 1.5rem 0; gap: 0 1rem; }
  .getintouch-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-bottom { padding-top: 2rem; margin-top: 2rem; }
}

/* ── HONEYPOT ANTI-SPAM ── */
/* Campo invisível. Bots preenchem, humanos não. Não usar display:none:
   alguns bots detectam e ignoram o campo. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── ESTILOS PONTUAIS ── */

/* Eyebrow no Hero */
.hero-eyebrow {
  color: var(--navy) !important;
}

/* Parágrafos em pullquotes */
.pullquote p {
  margin: 0;
}

/* Seção de Ativos Tributários */
#ativos-tributarios {
  background: linear-gradient(135deg, rgba(52, 34, 111, 0.95) 0%, rgba(52, 34, 111, 0.9) 100%) !important;
  border-top: 1px solid rgba(184, 124, 76, 0.3);
  border-bottom: 1px solid rgba(184, 124, 76, 0.3);
}

/* Eyebrow dentro da seção ativos */
#ativos-tributarios .eyebrow {
  color: var(--copper) !important;
}

/* Heading h5 dentro da seção ativos */
#ativos-tributarios .h5 {
  color: #ffffff !important;
}

/* Parágrafos dentro da seção ativos */
#ativos-tributarios p {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Link CTA com hover suave */
.ativos-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--copper) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

a.ativos-link:hover {
  color: #ffffff !important;
  border-bottom-color: var(--copper) !important;
  transform: translateX(4px) !important;
}

.ativos-link span {
  font-size: 1.2em;
}

/* Footer grid */
.footer-rich-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem var(--container) 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Coluna do footer */
.footer-column {
  flex: 1;
  min-width: 250px;
}

/* Heading do footer - apenas o primeiro parágrafo da coluna esquerda */
.footer-column:first-child > p:first-child {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  margin-top: 0;
}

/* Heading h5 com margin bottom */
.about h5 {
  margin-bottom: 2rem;
}

/* Mensagens de sucesso/erro do formulário */
#form-success {
  display: none;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #2d7a3a;
}

#form-error {
  display: none;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #a02020;
}

/* Copyright footer - override all parent styles */
.footer-column .footer-copyright-text {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  text-transform: none !important;
}
