/*
 * AH Brand — tokens e layout público unificado
 * Verde institucional + dourado de destaque. Sem alterar textos.
 */
:root {
  --ah-primary: #1b3d2f;
  --ah-secondary: #2d5016;
  --ah-accent: #ffd600;
  --ah-gold: #c9a651;
  --ah-ink: #1a1f1c;
  --ah-muted: #5a6c7d;
  --ah-surface: #ffffff;
  --ah-surface-alt: #f3f6f4;
  --ah-radius: 10px;
  --ah-shadow: 0 8px 28px rgba(27, 61, 47, 0.12);
  --ah-gradient: linear-gradient(135deg, #1b3d2f 0%, #2d5016 100%);
  --ah-nav-h: 75px;
  --ah-font: "Montserrat", system-ui, sans-serif;
}

/* Tipografia base (reforço) */
body {
  font-family: var(--ah-font);
  color: var(--ah-ink);
}

.text-success,
h2.text-success,
h3.text-success {
  color: var(--ah-primary) !important;
}

/* --------------------------------------------------------------------------
 * Hero institucional (só na home via block)
 * -------------------------------------------------------------------------- */
.ah-hero {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 62vh, 560px);
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: var(--ah-primary);
}

.ah-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ah-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(27, 61, 47, 0.78) 0%,
    rgba(45, 80, 22, 0.45) 55%,
    rgba(27, 61, 47, 0.25) 100%
  );
}

.ah-hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 6vw, 4.5rem);
  color: #fff;
}

.ah-hero__brand {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ah-accent);
  margin: 0 0 0.85rem;
}

.ah-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  max-width: 11.5em;
  text-align: left !important;
}

.ah-hero__lead {
  margin: 0 0 1.6rem;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--ah-accent);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  max-width: 36ch;
}

.ah-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ah-accent);
  color: var(--ah-primary);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--ah-radius);
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ah-hero__cta:hover,
.ah-hero__cta:focus {
  background: #fff;
  color: var(--ah-secondary);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .ah-hero {
    min-height: min(78vh, 520px);
  }

  .ah-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(27, 61, 47, 0.35) 0%,
      rgba(27, 61, 47, 0.72) 100%
    );
  }

  .ah-hero__content {
    justify-content: flex-end;
    padding-bottom: 2.75rem;
  }

  .ah-hero__title {
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
 * Faixa 76 anos (home)
 * -------------------------------------------------------------------------- */
.ah-milestone {
  background: var(--ah-gradient);
  color: #fff;
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
  position: relative;
  overflow: hidden;
}

.ah-milestone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 12% 50%, rgba(255, 214, 0, 0.14), transparent 55%);
  pointer-events: none;
}

.ah-milestone__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.ah-milestone__years {
  margin: 0;
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ah-accent);
  flex: 0 0 auto;
}

.ah-milestone__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.ah-milestone__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.ah-milestone__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff !important;
  max-width: 22ch;
}

.ah-milestone__lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.ah-milestone__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ah-milestone__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ah-accent);
  color: var(--ah-primary);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--ah-radius);
  padding: 0.65rem 1.35rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ah-milestone__cta:hover,
.ah-milestone__cta:focus {
  background: #fff;
  color: var(--ah-secondary);
  transform: translateY(-1px);
}

.ah-milestone__cta--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.ah-milestone__cta--ghost:hover,
.ah-milestone__cta--ghost:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

@media (max-width: 575.98px) {
  .ah-milestone__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
 * ESG / Sustentabilidade (home)
 * -------------------------------------------------------------------------- */
.ah-esg {
  background: var(--ah-surface-alt);
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
  border-top: 1px solid rgba(27, 61, 47, 0.08);
  border-bottom: 1px solid rgba(27, 61, 47, 0.08);
}

.ah-esg__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.ah-esg__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ah-gold);
}

.ah-esg__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--ah-primary) !important;
  max-width: 22ch;
}

.ah-esg__lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ah-muted);
  max-width: 54ch;
}

.ah-esg__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.ah-esg__item {
  padding: 0;
  background: transparent;
  border: 0;
}

.ah-esg__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  color: var(--ah-primary);
  font-size: 1.35rem;
}

.ah-esg__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ah-ink);
}

.ah-esg__item p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ah-muted);
}

.ah-esg__item a {
  font-weight: 700;
  color: var(--ah-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ah-esg__item a:hover,
.ah-esg__item a:focus {
  color: var(--ah-secondary);
}

@media (max-width: 767.98px) {
  .ah-esg__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .ah-esg__title {
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
 * Seções e títulos
 * -------------------------------------------------------------------------- */
.ah-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  position: relative;
  z-index: 1;
  isolation: isolate;
  clear: both;
}

.page-home #negocios {
  z-index: 2;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* Anula layout legado de #parcerias (altura fixa 520px em main.css) */
#parcerias.ah-section,
.page-home #parcerias {
  height: auto !important;
  min-height: 0 !important;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  overflow: visible;
  padding-top: clamp(2.75rem, 5.5vw, 4.75rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.page-home #parcerias .container {
  position: relative;
  z-index: 1;
}

.page-home #parcerias .card {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  transform: none !important;
}

.page-home #parcerias .hover-card:hover {
  transform: translateY(-4px) !important;
}

.page-home #esg.ah-esg {
  position: relative;
  z-index: 0;
  margin-top: 0;
  padding-top: clamp(3rem, 6vw, 5rem);
  clear: both;
}

.page-home .ah-section-title {
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  transform: none !important;
  margin-top: 0;
}

.page-home .business-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  transform: none !important;
}

.page-home .business-card:hover {
  transform: translateY(-6px) !important;
}

.ah-section--alt {
  background: var(--ah-surface-alt);
}

.ah-section--white {
  background: var(--ah-surface);
}

.ah-section-title {
  position: relative;
  display: block;
  text-align: center;
  color: var(--ah-primary) !important;
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin: 0 auto 2.25rem;
  letter-spacing: -0.02em;
}

.ah-section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 0.75rem auto 0;
  border-radius: 2px;
  background: var(--ah-gold);
}

.ah-section-title--left {
  text-align: left;
  margin-left: 0;
}

.ah-section-title--left::after {
  margin-left: 0;
}

/* Cards de negócio / listagens */
.page-home .business-card,
.page-home .hover-card {
  border-radius: var(--ah-radius);
  box-shadow: var(--ah-shadow);
}

.page-home .btn-business {
  display: inline-block;
  background: var(--ah-gradient);
  border-radius: var(--ah-radius);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(27, 61, 47, 0.22);
}

.page-home .btn-business:hover,
.page-home .btn-business:focus {
  color: #fff;
  filter: brightness(1.08);
}

.page-home .btn-business-link {
  display: block;
  margin-top: 0.65rem;
  color: var(--ah-primary);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .btn-business-link:hover,
.page-home .btn-business-link:focus {
  color: var(--ah-secondary);
}

.page-home .btn-outline-success {
  border-color: var(--ah-primary);
  color: var(--ah-primary);
}

.page-home .btn-outline-success:hover {
  background: var(--ah-primary);
  border-color: var(--ah-primary);
  color: #fff;
}

/* Banner DB legado (index) — esconder se vazio / não usar no 1º viewport */
.banner-section.d-none {
  display: none !important;
}

/* --------------------------------------------------------------------------
 * Cabeçalho de páginas internas
 * -------------------------------------------------------------------------- */
.ah-page-header {
  background: var(--ah-gradient);
  color: #fff;
  padding: 2.25rem 0 2rem;
  margin: 0;
}

.ah-page-header h1,
.ah-page-header .ah-page-title {
  margin: 0;
  color: #fff !important;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
}

.ah-page-header .ah-page-lead {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 40rem;
}

.ah-page-body {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

/* Notícias */
.ah-news-card {
  border: none;
  border-radius: var(--ah-radius);
  box-shadow: var(--ah-shadow);
  overflow: hidden;
  height: 100%;
  background: var(--ah-surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ah-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 61, 47, 0.16);
}

.ah-news-card img,
.ah-news-card .news-card-img,
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ah-news-card .card-body,
.ah-news-meta {
  color: var(--ah-muted);
}

.ah-news-card a.btn-link,
.ah-news-card .text-success {
  color: var(--ah-primary) !important;
  font-weight: 600;
  text-decoration: none;
}

.ah-news-detail {
  max-width: 860px;
  margin: 0 auto;
}

.ah-news-detail .ah-news-date {
  color: var(--ah-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.ah-news-detail img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ah-radius);
}

/* Compras */
.page-sales .ah-page-body .card,
.sales-page .card {
  border: none;
  border-radius: var(--ah-radius);
  box-shadow: var(--ah-shadow);
}

.page-sales h1,
.page-sales h2,
.sales-page h1,
.sales-page h2 {
  color: var(--ah-primary);
}

/* Nav: caber em telas ~1366–1536 sem cortar */
.navbar .container-fluid {
  gap: 0.35rem;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.navbar-nav .nav-link {
  padding-left: 0.55rem !important;
  padding-right: 0.55rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0 !important;
}

.navbar-icons .contact-item {
  padding: 0.4rem 0.45rem !important;
  font-size: 0.78rem !important;
}

.navbar-icons .contact-item span {
  max-width: 4.5rem;
}

/* CTA Fale Conosco no topo */
.ah-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ah-accent);
  color: var(--ah-primary) !important;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.1;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ah-nav-cta:hover,
.ah-nav-cta:focus,
.ah-nav-cta.show {
  background: #fff;
  color: var(--ah-secondary) !important;
  transform: translateY(-1px);
}

.ah-nav-cta.dropdown-toggle::after {
  margin-left: 0.4em;
  vertical-align: 0.15em;
  border-top-color: currentColor;
}

.ah-nav-cta-mobile {
  display: block !important;
  background: var(--ah-accent) !important;
  color: var(--ah-primary) !important;
  font-weight: 700 !important;
  text-align: center;
  border-radius: 8px;
  margin: 0 0.5rem 0.75rem;
  padding: 0.7rem 1rem !important;
}

.ah-nav-cta-mobile:hover,
.ah-nav-cta-mobile:focus,
.ah-nav-cta-mobile.show {
  background: #fff !important;
  color: var(--ah-secondary) !important;
}

/* Idioma: menu não corta na borda direita */
.navbar,
.navbar .container-fluid,
.navbar-collapse,
.navbar-icons,
.ah-lang-form,
.ah-lang-dd {
  overflow: visible !important;
}

.navbar-icons {
  position: relative;
  z-index: 1040;
  padding-right: 0.35rem;
  margin-right: 0.15rem;
}

.ah-lang-dd {
  position: relative;
}

.ah-lang-menu.dropdown-menu {
  right: 0 !important;
  left: auto !important;
  min-width: 11.5rem;
  width: max-content;
  max-width: calc(100vw - 1.25rem);
  padding: 0.4rem 0;
  margin-top: 0.35rem !important;
  inset: auto 0 auto auto !important;
  transform: none !important;
}

.ah-lang-menu .dropdown-item {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 1400px) {
  .navbar-nav .nav-link {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
    font-size: 0.76rem !important;
  }
  .navbar-icons .contact-item span:not(.emoji) {
    display: inline;
  }
}

/* Hero: título sem quebra feia ("em" sozinho) */
.ah-hero,
.ah-hero .ah-hero__brand,
.ah-hero .ah-hero__title,
.ah-hero .ah-hero__lead,
.ah-hero .ah-hero__content {
  text-align: left !important;
}

.ah-hero__title {
  max-width: 11.5em;
  white-space: normal;
  text-wrap: unset;
  word-spacing: normal;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.ah-hero__lead {
  max-width: 28rem;
  text-align: left !important;
}

@media (min-width: 992px) {
  .ah-hero__title {
    font-size: clamp(2.1rem, 3.4vw, 2.85rem);
    max-width: 12em;
  }
}

/* --------------------------------------------------------------------------
 * Contraste — evita texto “apagado” (cor próxima do fundo)
 * -------------------------------------------------------------------------- */

/* Conteúdo editorial: títulos legíveis em fundo claro */
.dynamic-content h1,
.dynamic-content h2,
.dynamic-content h3,
.dynamic-content h4,
.dynamic-content h5,
.dynamic-content h6,
.news-description h1,
.news-description h2,
.news-description h3,
.news-description h4,
.news-description h5,
.news-description h6,
.ah-news-card .card-title,
.ah-news-card h5,
.card .card-title,
.page-home .card h3,
.page-home .card .h4,
.page-home .card .h5 {
  color: var(--ah-primary) !important;
}

/* Faixas escuras: texto sempre branco (não aplicar o verde acima) */
.work-header,
.work-header h1,
.work-header h2,
.work-header h3,
.work-header p,
.work-header .work-title,
.work-header .work-subtitle,
.work-header .work-description,
.ah-page-header,
.ah-page-header h1,
.ah-page-header h2,
.ah-page-header p,
.ah-page-header .ah-page-title,
.ah-page-header .ah-page-lead,
.ah-hero,
.ah-hero h1,
.ah-hero p,
.bg-success,
.bg-success h1,
.bg-success h2,
.bg-success h3,
.bg-success h4,
.bg-success h5,
.bg-success p,
.bg-success .display-1,
.bg-success .display-2,
.bg-success .display-3,
.bg-success .display-4,
.bg-success.text-white,
.bg-success.text-white h1,
.bg-success.text-white h2,
.bg-success.text-white .display-4,
section.bg-success,
section.bg-success * {
  color: #fff !important;
}
.work-header .work-subtitle,
.work-header .work-description,
.ah-page-header .ah-page-lead {
  color: rgba(255, 255, 255, 0.92) !important;
}
.ah-hero__brand,
.ah-hero__lead {
  color: var(--ah-accent) !important;
}

/* Header interno: altura proporcional (não 400px vazios) */
header.ah-page-header,
.ah-page-header {
  min-height: 0 !important;
  padding: 2.25rem 0 2rem !important;
}

/* Navbar sticky: sem gap fantasma sob o menu */
body {
  padding-top: 0 !important;
}
.navbar.fixed-top + *,
.navbar.sticky-top + * {
  scroll-margin-top: 0;
}
main,
#page-top > .page-home,
#page-top > [class*="page-"],
#page-top > .dynamic-content {
  margin-top: 0;
}

/* Não justificar títulos/botões/nav (evita layout “torto”) */
.navbar,
.navbar *,
.btn,
.btn *,
h1, h2, h3, h4, h5, h6,
.ah-hero,
.ah-hero *,
.ah-page-header,
.ah-page-header *,
.work-header,
.work-header *,
.ah-section-title,
.card-title,
.nav-link {
  text-align: inherit;
}
.navbar .nav-link,
.ah-section-title,
.ah-page-header,
.work-header,
.bg-success.text-center {
  text-align: center;
}
.ah-page-header .container,
.ah-page-header h1 {
  text-align: left !important;
}
.work-header,
.work-header .text-center,
.bg-success .text-center {
  text-align: center !important;
}

/* Produto: faixa verde full-bleed e conteúdo mais largo */
.bg-success.text-white {
  width: 100%;
}
.product-content,
.page-product .container,
.dynamic-content .container {
  max-width: 1100px;
}

/* Cards sem imagem: placeholder */
.ah-news-card .card-img-top:empty,
.news-card-img[src=""],
img.news-card-img:not([src]) {
  min-height: 200px;
  background: var(--ah-surface-alt);
}

/* Texto auxiliar: cinza legível (não claro demais) */
.text-muted,
.ah-news-meta,
.ah-news-detail .ah-news-date,
.news-description,
.card-text.text-muted,
.small.text-muted {
  color: #4a5568 !important;
}

/* Trechos HTML do CKEditor com cor clara/branca no fundo branco */
.news-description,
.news-description p,
.news-description span,
.news-description li,
.ah-news-detail .description,
.ah-news-detail .description p,
.ah-news-detail .description span,
.dynamic-content .description,
.dynamic-content .description p {
  color: #2d3748 !important;
}

.news-description a,
.ah-news-detail .description a,
.dynamic-content .description a {
  color: var(--ah-primary) !important;
}

/* Cards: corpo não herda cinza em tudo */
.ah-news-card .card-body {
  color: var(--ah-ink);
}

/* Navbar: texto sempre claro no verde */
.navbar,
.navbar .nav-item,
.navbar .navbar-nav {
  color: #fff;
}
.navbar .nav-link,
.navbar-icons .contact-item,
.navbar-icons .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Footer escuro: não deixar regras antigas de main.css (fundo claro) vencerem */
footer,
footer h5,
footer h3,
footer p,
footer li,
footer .small {
  color: rgba(255, 255, 255, 0.9) !important;
}
footer a {
  color: rgba(255, 255, 255, 0.75) !important;
}
footer a:hover {
  color: #fff !important;
}
footer .btn,
footer .btn-success {
  color: #fff !important;
}

/* Botões outline legíveis */
.btn-outline-success {
  color: var(--ah-primary) !important;
  border-color: var(--ah-primary) !important;
  background: transparent !important;
}
.btn-outline-success:hover,
.btn-outline-success:focus {
  color: #fff !important;
  background: var(--ah-primary) !important;
  border-color: var(--ah-primary) !important;
}

/* Botão negócios: texto branco no gradiente */
.btn-business {
  color: #fff !important;
}

/* Iniciais / badges claros: texto escuro */
.farm-initials {
  color: var(--ah-primary) !important;
  font-weight: 700;
}

/* Páginas com ah-background: conteúdo acima precisa de contraste */
.ah-background .container,
.ah-background .ah-page-body,
.page-sales .container {
  color: var(--ah-ink);
}
