@charset "UTF-8";
.img-oversize {
  max-width: none !important;
  width: 120%;
  display: block;
}
@media (min-width: 320px) and (max-width: 576px) {
  .img-oversize {
    width: 150%;
  }
}

.carousel-item.active {
  position: relative;
}

.col-text-over {
  position: relative; /* permite usar z-index */
  z-index: 2;
}
@media (max-width: 576px) {
  .col-text-over {
    margin-top: -3rem !important; /* Ajusta o valor conforme o quanto queres “subir” o texto */
    padding: 0 0.25rem;
  }
}

.icon {
  color: #82CA51;
}

.section-map {
  background-image: url("/img/Empresa/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (min-width: 320px) and (max-width: 576px) {
  .section-map {
    max-height: 70vh !important;
  }
}

.track {
  position: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.col-marquee {
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 576px) {
  .col-marquee {
    padding-bottom: 2rem;
  }
}

.country-box {
  border-radius: 0.9375rem;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 3.5rem;
  width: 10rem;
}

.country-box span {
  line-height: 1rem;
}

.flag-country {
  height: 2.5rem;
  width: 2.5rem;
}

.empresa-map {
  display: block;
  margin: 0 auto;
}