header .logo-desktop,
header .logo-mobile-menu {
  width: 180px;
  margin: 1rem 0;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
}

.border-topo {
  position: relative;
  padding-bottom: 16px;
}

.border-topo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(64, 145, 67, 0) 14.12%, #409143 100%);
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--light);
}
.navbar-expand-lg .navbar-nav .nav-link:not(.dropdown-toggle) {
  position: relative;
  overflow: hidden;
}

.navbar-expand-lg .navbar-nav .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--light);
  transition: width 0.3s ease, right 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--light);
}

.navbar-toggler {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  header {
    position: relative;
    background-color: var(--dark);
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--dark);
  }
}
/* FOOTER */
footer {
  background: linear-gradient(0deg, #0d0d0d 0%, #222 100%);
}
footer .logo-desktop {
  max-width: 200px;
}
footer h3 {
  margin-top: 0;
  font-size: 1.125rem;
  color: var(--light);
}
footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  color: var(--light);
  transition: 0.3s;
}
footer .footer__nav li a i {
  font-size: 0.625rem;
}
footer .footer__nav li a:hover {
  color: var(--primary-color);
}
footer .address :is(span, a):not(.btn) {
  color: var(--light);
  font-size: 0.875rem;
  line-height: 25px;
  transition: 0.3s;
}
footer .address a:not(.btn):hover {
  color: var(--primary-color);
}

.icons-footer {
  width: 2rem;
  height: 2rem;
  display: flex;
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  transition: 0.3s ease-in-out;
}

.icons-footer:hover {
  background-color: var(--secondary-color);
  color: var(--light);
}
.copyright-footer .btn.selos {
  min-height: unset;
}
@media screen and (max-width: 992.05px) {
  footer .social {
    justify-content: center;
  }
}

.card.card--23 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: column nowrap;
  gap: 1rem;
  background-color: var(--dark);
  background-image: linear-gradient(-45deg, var(--dark), var(--grey)),
    var(--card-background);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply, normal;
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  height: 100%;
}
.card.card--23:focus-within,
.card.card--23:hover {
  box-shadow: 0 0 0 2px var(--secondary-color);
}
.card.card--23 .card__title {
  color: #fff;
  font-size: 1.25rem;
  text-shadow: 0 0 0.25rem var(--dark);
  margin: 0;
  min-height: calc(1.25rem * 2 * 1.3);
}
.card.card--23 .card__link {
  z-index: 1;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: var(--transition);
  color: var(--light);
  font-weight: 600;
  border: 2px solid currentColor;
  border-radius: 99px;
}
.card.card--23 .card__link > span {
  width: 0;
  max-width: fit-content;
  opacity: 0;
  transition: var(--transition);
}
.card.card--23 .card__link:focus > span,
.card.card--23 .card__link:hover > span {
  width: 100px;
  opacity: 1;
  margin-right: 0.5rem;
}
.card.card--23 .card__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  backface-visibility: visible;
}
.card.card--23 .card__link:focus,
.card.card--23 .card__link:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.shadow-19 {
  box-shadow: rgba(50, 50, 93, 0.25) 0 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
}

.title-subtitle {
  margin-bottom: 0;
}
.title-subtitle span {
  display: block;
  font-size: 0.9rem;
  color: #000;
  line-height: 1rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

/* ================= CLIENTES ================= */
.clientes .clientes__item {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}
.clientes .clientes__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.75;
  border-radius: var(--bs-border-radius-sm);
  transition: opacity var(--transition);
}
.clientes .clientes__item:hover img {
  opacity: 1;
}

.btn-absolute {
  background-color: #c4ddc5;
}

.title-with-logo {
  position: relative;
}

.title-with-logo::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 50%;
  transform: translateY(-59%);
  width: 30px;
  height: 30px;
  background-image: url("../imagens/logo-mini.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.bg-trabalho {
  background-image: url("../imagens/trabalho.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.work-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.work-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0b1b1e;
}

.work-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* ÍCONE */
.work-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

/* HOVER */
.work-card:hover {
  border-radius: 16px;
  border: 1px solid var(--Primary-color-primary-500, #409143);
  background: var(--Primary-color-primary-100, #c4ddc5);
  box-shadow: 0 2px 6px 0 rgba(105, 88, 88, 0.08);
}

.work-card:hover .work-icon {
  background: var(--secondary-color);
}

.cultura-title {
  color: #1f3b1f;
  font-weight: 700;
  font-size: clamp(26px, 2.2vw, 34px);
}

.cultura-subtitle {
  max-width: 720px;
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.5;
}

/* Linha verde atravessando */
.cultura-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 62%;
  height: 4px;
  background: var(--primary-color, #409143);
  z-index: 0;
  border-radius: 999px;
}

/* Card */
.cultura-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.cultura-card__title {
  font-weight: 700;
  color: #222;
  font-size: 25px;
  margin-bottom: 10px;
}

.cultura-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0;
}

@media (max-width: 991.98px) {
  .cultura-line {
    top: 56%;
  }
}
@media (max-width: 575.98px) {
  .cultura-line {
    display: none;
  }
}
/* ====== TOP 3 ITENS ====== */
.pill-feature__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
}

.pill-feature__title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}

.pill-feature__text {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 320px;
}

/* ====== COUNTER PILL (FUNDO + ARREDONDADO) ====== */
.counter--pill {
  border-radius: 191px;
  background: radial-gradient(468.85% 50% at 50% 50%, #072325 0%, #080710 100%),
    #fff;
  padding: 30px 0;
}

.counter--pill .wrapper {
  width: 100% !important;
}

.counter--pill .counter__item {
  padding: 18px 10px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* divisor vertical igual print */
.counter--pill .counter__item:not(.counter__item--last):after {
  background-color: rgba(255, 255, 255, 0.35);
  width: 1px;
  height: 80px;
}

.counter--pill .counter__title,
.counter--pill .counter__subtitle {
  color: #fff;
}

.counter--pill .counter__title:before {
  content: "+";
  margin-right: 10px;
  color: #fff;
  font-weight: 700;
}

/* tamanho do número */
.counter--pill .counter__title {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 6px;
}

/* subtítulo */
.counter--pill .counter__subtitle {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

.counter__title--text:before {
  content: "";
  display: none;
}
.counter__title--text {
  font-size: 32px !important;
  font-weight: 800 !important;
  margin-bottom: 6px !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .counter--pill {
    border-radius: 36px;
    padding: 22px 12px;
  }

  .counter__item:not(.counter__item--last):after {
    display: none;
  }

  .pill-feature__text {
    max-width: 100%;
  }
  .decor-triangles{display: none;}
}

.bg-form {
  border-radius: 16px;
  background: linear-gradient(0deg, #0d0d0d 0%, #222 100%);
}


  .social-contact{
    width: 2rem;
    height: 2rem;
    display: flex;
    color: var(--primary-color);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    transition: .3s ease-in-out;
    font-size: 18px;
  }

  .social-contact:hover{
    background-color: var(--secondary-color);
    color: var(--light);
  }

  .bg-contact{
    border-radius: 16px;
border: 1px solid var(--Background-color-background-500, #ECECEC);
background: var(--Background-color-background-100, #FCFCFC);
  }

.equipamentos-hero{
  position: relative;
  overflow: hidden;   /* corta o que “passar” */
  isolation: isolate; /* garante camada própria (z-index previsível) */
}

.decor-triangles{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.triangle{
  position: absolute;
  transition: transform .2s ease-out;
  transform: rotate(var(--rotate, 0deg)) translateY(var(--ty, 0px));
  transform-origin: top right;
  will-change: transform;
}

.eq-t1 {
    width: 300px;
    height: 380px;
    background: #164725;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    top: -10rem;
    right: -60px;
    --rotate: -30deg;
}

.eq-t2 {
    width: 350px;
    height: 450px;
    background: #2b962e;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    top: -8rem;
    right: -57px;
    --rotate: -20deg;
    z-index: -1;
}

.equipamentos-hero .container{
  position: relative;
  z-index: 1;
}


.bg-wave{
  background-image: url('../imagens/grey-wave.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-tower{
  position: relative;
  overflow: hidden; /* impede vazamento */
}
.bg-tower::after {
    content: "";
    position: absolute;
    width: 60rem;
    height: 51rem;
    right: -102rem;
    top: 50%;
    transform: translate(-202%, -54%);
    background-image: url('../imagens/toner-img.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.bg-tower > *{
  position: relative;
  z-index: 1;
}
