@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: white;
}

.header-icons {
  display: flex;
  gap: 15px;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: rgb(48, 228, 48);
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid white;
  padding: 8px 24px;
  border-radius: 4px;
  color: white;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid rgb(48, 228, 48);
  background-color: rgb(48, 228, 48);
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

@media screen and (max-width: 846px) {
  .header-content {
    width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 18px;
    font-size: 34px;
  }
  .header-logo img {
    width: 100%;
    margin-top: 10px;
  }
  .header-button {
    display: none;
  }
  .btn-abrir-menu i {
    color: green;
    font-size: 50px;
    position: fixed;
    top: -14px;
    right: 24px;
    z-index: 99;
  }
  .menu-mobile {
    background-color: rgba(0, 0, 0, 0.8666666667);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: 0.6s;
  }
  .menu-mobile.abrir-menu {
    width: 70%;
  }
  .menu-mobile.abrir-menu ~ .overlay-menu {
    display: block;
  }
  .menu-mobile nav ul {
    text-align: right;
  }
  .menu-mobile nav ul li a {
    color: white;
    font-size: 25px;
    font-weight: 300;
    padding: 20px 10%;
    display: block;
  }
  .menu-mobile nav ul li a:hover {
    background-color: green;
  }
  .overlay-menu {
    background-color: rgba(0, 0, 0, 0.6352941176);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 888;
    display: none;
  }
  .menu-mobile .btn-fechar {
    padding: 20px 8%;
  }
  .menu-mobile .btn-fechar i {
    color: green;
    font-size: 40px;
    font-weight: 1200;
  }
}
@media screen and (min-width: 846px) {
  .btn-abrir-menu, .menu-mobile, .overlay-menu {
    display: none;
  }
}
.container {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 100%;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.719), #131313), url("/assets/fundo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 40% 0%;
  z-index: -1;
  opacity: 0.9;
}

@media screen and (max-width: 846px) {
  .bg-home::before {
    width: 100%;
    /* Corrigido aqui */
    height: 100%;
  }
}
.hero {
  color: white;
  min-height: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-top: 46px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 150%;
  font-size: 48px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact {
  padding: 14px 28px;
  color: white;
  background-color: rgb(31, 160, 31);
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
  border-radius: 5px;
  transition: 0.2s;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
@media screen and (max-width: 846px) {
  .hero {
    min-height: 50vh;
  }
  .hero h1 {
    font-size: 30px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 15px;
  }
}
.container-about {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1440px;
}

.about {
  background-color: rgb(19, 19, 19);
  overflow: hidden;
  color: white;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 450px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 846px) {
  .about-content {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
}
.services {
  background-color: rgb(19, 19, 19);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 14px;
}

.services-content h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
}

.services-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
  font-size: 20px;
  font-weight: 600;
}

.freights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 0px 44px 34px 44px;
}

.freight {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  box-shadow: 9px 8px 9px -4px rgba(116, 116, 116, 0.377);
  overflow: hidden;
}
.freight img {
  width: 100%;
  max-width: 350%;
  transition: transform 0.5s;
  cursor: pointer;
}

.freight img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.freight-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background-color: white;
  z-index: 99;
  font-size: 20px;
  gap: 14px;
  color: black;
}

.freight-info button {
  color: white;
  background-color: rgb(31, 160, 31);
  padding: 4px 8px;
  border: 0;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.5s;
}

.freight button:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 846px) {
  .freights {
    flex-direction: column;
  }
  .freights img {
    max-width: 840px;
  }
  .freight-info {
    font-size: 22px;
    align-items: center;
  }
  .freight-info button {
    font-size: 18px;
  }
}
.services .font {
  font-size: 34px;
}

.services .font-p {
  font-size: 24px;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  gap: 1px;
  color: white;
}

.footer-icons {
  display: flex;
  margin-bottom: 14px;
  gap: 10px;
  color: white;
}

.btn-whatsapp {
  position: fixed;
  bottom: 15px;
  right: 24px;
  z-index: 999999999;
}
.btn-whatsapp img {
  max-width: 70px;
  transition: transform 0.5s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .text-span {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  background-color: #232224;
  color: white;
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-whatsapp:hover .text-span {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 846px) {
  .btn-whatsapp {
    position: fixed;
    bottom: 15px;
    z-index: 999999999;
  }
  .btn-whatsapp img {
    max-width: 54px;
    transition: transform 0.5s;
  }
}
hr {
  border: 8px;
  border-top: 1px solid white;
}

.modal-container {
  width: 100vw;
  position: fixed;
  top: 38px;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.884);
  border-radius: 18px;
  width: 30%;
}

.active {
  display: flex;
}

.active .modal {
  animation: modal 0.4s;
}

@keyframes modal {
  from {
    opacity: 0;
    transform: translate(8, -68px, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 0, 0);
  }
}
span {
  margin: 10px auto;
  gap: 8px;
  color: black;
}
span a {
  color: black;
  font-size: 18px;
}
span a:hover {
  text-decoration: none;
  color: green;
}

.btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
}

.btns button {
  font-size: medium;
  padding: 10px;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.btnOk {
  background-color: rgb(31, 160, 31);
  transition: transform 0.5s;
  cursor: pointer;
}

.btnOk:hover {
  transform: scale(1.1);
  z-index: 1;
}

.btnClose {
  background-color: rgb(159, 57, 57);
}

.btnOpenModal-what {
  background-color: transparent;
  border: none;
}

@media (max-width: 850px) {
  .modal {
    padding: 10px;
    width: 80%;
  }
  span,
  .btns button {
    font-size: 15px;
    gap: 8px;
  }
}
.carrossel {
  margin: 0;
  overflow: hidden;
  height: 300px;
  width: 300px;
  border-radius: 45px;
  background-color: #000000;
}

.carrossel-img {
  margin: 0;
  overflow: hidden;
  height: 300px;
  width: 300px;
  border-radius: 45px;
  background-color: #309e2c;
}

.container-carrossel {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0);
}

.img-ca {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 300px;
  align-items: center;
  border-radius: 10px;
  justify-content: space-between;
}

.freightss {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 0px 44px 34px 44px;
}

@media screen and (max-width: 846px) {
  .freightss {
    flex-direction: column;
    gap: 20px;
  }
}
.imgDes {
  margin: 0;
  overflow: hidden;
  height: 500px;
  width: 300px;
  border-radius: 10px;
  background-color: #309e2c;
}

.img-des {
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
  width: 300px;
  align-items: center;
  border-radius: 2px;
  justify-content: space-between;
}

.imgDes {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0);
}

.wrapper {
  display: flex;
  max-width: 1200px;
  position: relative;
}

.wrapper i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: rgba(255, 255, 255, 0.4392156863);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover {
  background: #f2f2f2;
}

.wrapper i:first-child {
  left: -1px;
  display: none;
}

.wrapper i:last-child {
  right: -1px;
}

.wrapper .carousel {
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.carousel.dragging {
  cursor: grab;
  scroll-behavior: auto;
}

.carousel.dragging img {
  pointer-events: none;
}

.carousel img {
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: 14px;
  width: 33.3333333333%;
}

.carousel img:first-child {
  margin-left: 0px;
}

@media screen and (max-width: 900px) {
  .carousel img {
    width: 50%;
  }
}
@media screen and (max-width: 550px) {
  .carousel img {
    width: 100%;
    color: #205d1d;
  }
}
.new-wrapper {
  display: flex;
  max-width: 1200px;
  position: relative;
}

.new-wrapper i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: rgba(255, 255, 255, 0.4392156863);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.new-wrapper i:active {
  transform: translateY(-50%) scale(0.9);
}

.new-wrapper i:hover {
  background: #f2f2f2;
}

.new-wrapper i:first-child {
  left: -1px;
  display: none;
}

.new-wrapper i:last-child {
  right: -1px;
}

.new-wrapper .new-carousel {
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.new-carousel.dragging {
  cursor: grab;
  scroll-behavior: auto;
}

.new-carousel.dragging img {
  pointer-events: none;
}

.new-carousel img {
  height: 450px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: 14px;
  width: 33.3333333333%;
}

.new-carousel img:first-child {
  margin-left: 0px;
}

@media screen and (max-width: 900px) {
  .new-carousel img {
    width: 50%;
  }
}
@media screen and (max-width: 550px) {
  .new-carousel img {
    height: 100%;
    width: 100%;
  }
  .new-wrapper i:first-child {
    left: -1px;
    display: none;
  }
  .new-wrapper i:last-child {
    right: -1px;
  }
  .wrapper i:first-child {
    left: -1px;
    display: none;
  }
  .wrapper i:last-child {
    right: -1px;
  }
}
/* INICIO PLAY CTA SITE**** */
.play {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 40vh;
  background: url(../assets/play/b.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.play .play-btn {
  position: relative;
  background-color: var(#f2f2f2);
  width: 90px;
  height: 90px;
  border-radius: 50px;
  font-size: 6rem;
  line-height: 100px;
  color: var(--cor-principal);
}

.play .play-btn::before,
.play .play-btn::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 6px solid rgba(0, 252, 55, 0.219);
  border-radius: 50%;
  animation: animar 1.5s linear infinite;
  opacity: 1;
}

@keyframes animar {
  0% {
    transform: scale(0.2);
  }
  50% {
    opacity: 2;
  }
  100% {
    transform: scale(1.5);
  }
}
.play .play-btn::after {
  animation-delay: 0.2s;
}

/* ****FIM PLAY CTA SITE */
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: rgb(19, 19, 19);
}

@media screen and (max-width: 846px) {
  body {
    width: 100%;
    height: 100%;
  }
}
button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */