/* colors */
:root {
  scroll-behavior: smooth;
  --mainColor: #e63e11;
  --backgroundPrimary: #e4f0fa;
  --backgroundSecondary: #d4dfe8;
  --textPrimary: #161830;
  --textSecondary: #2b3c5b;
  --textTertiary: #7a8aa3;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", serif;
  background-color: #fff;
  overflow-x: hidden;
}

/* scroll */
body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: var(--backgroundPrimary);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}

/* geral */
section {
  padding: 60px 0;
}

.container {
  width: 100%;
  max-width: 1500px;
  padding: 0 2%;
  margin: auto;
}

.intro {
  margin-bottom: 80px;
}

.hash {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--mainColor);
  margin-bottom: 8px;
}

.main-title {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--textPrimary);
  font-weight: bold;
}

.main-title::after {
  content: "";
  margin-top: 15px;
  width: 150px;
  height: 2px;
  background-color: var(--mainColor);
  display: block;
}

.contact-btn {
  width: 180px;
  height: 50px;
  background-color: #fff;
  border-radius: 5px;
  color: var(--mainColor);
  border: 2px solid var(--mainColor);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn a {
  text-decoration: none;
  color: var(--mainColor);
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: var(--mainColor);
}

.contact-btn:hover > a {
  color: #fff;
}

/* whatsapp button */
.whatsapp-btn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
}

.whatsapp-btn img {
  width: 80px;
}

/* animations */

@keyframes moveArrow {
  from {
    margin-left: 10px;
  }
  to {
    margin-left: 16px;
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* header */
header {
  height: 100px;
}

header .container {
  width: 100vw;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .container .logo img {
  width: 250px;
}

header .container .menu-mobile {
  display: none;
  cursor: pointer;
  width: 35px;
  height: 3px;
  background: var(--textPrimary);
  position: relative;
}

header .container .menu-mobile::after {
  content: "";
  width: 30px;
  height: 3px;
  margin-top: 10px;
  background: var(--textPrimary);
  position: absolute;
}

header .container .menu ul {
  display: flex;
  gap: 50px;
  align-items: center;
  list-style: none;
}

header .container .menu ul li a {
  color: var(--textPrimary);
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
}

header .container .menu ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--mainColor);
  transition: 0.3s;
}

header .container .menu ul li a:hover::after {
  width: 100%;
}

/* menu mobile area */

div.menu-mobile-area {
  width: 100%;
  height: 100vh;
  background-color: rgba(228, 240, 250, 0.7);
  backdrop-filter: blur(7px);
  z-index: 999;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
}

div.menu-mobile-area .menu-item a {
  color: var(--textPrimary);
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

div.menu-mobile-area .menu-item a:hover {
  color: var(--mainColor);
}

div.menu-mobile-area.hidden {
  display: none;
}

/* new hero */
section#newhero {
  background-image: url("../images/bannerhero.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh - 100px);
  padding: 0;
}

section#newhero .blur {
  height: inherit;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 300px;
  background: rgba(0, 0, 0, 0.7);
}

section#newhero .hero-text {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}

section#newhero .hero-desc {
  max-width: 600px;
  text-align: center;
  color: #ccc;
  font-size: 20px;
}

section#newhero .hero-button {
  color: white;
  text-decoration: none;
  background-color: var(--mainColor);
  padding: 14px;
  font-size: 20px;
  border-radius: 4px;
  margin-top: 40px;
  transition: 0.3s;
}

section#newhero .hero-button:hover {
  transform: scale(1.1);
}

/* about */
section#about .about-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  border-radius: 4px;
}

section#about .about-box:nth-child(odd) {
  flex-direction: row-reverse;
}

section#about .about-box .about-image {
  width: 100%;
  max-width: 600px;
  height: 600px;
  /* background-color: #7a8aa3; */
  background-image: url("../images/main-about.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

section#about .my-slider-progress {
  background: #ccc;
  margin-top: 15px;
}

section#about .my-slider-progress-bar {
  background: var(--mainColor);
  height: 2px;
  transition: width 400ms ease;
  width: 0px;
}

section#about .splide__slide {
  width: 600px;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section#about #slide1 .splide__slide:nth-child(1) {
  background-image: url("../images/about-2-1.jpg");
}

section#about #slide1 .splide__slide:nth-child(2) {
  background-image: url("../images/about-2-2.jpg");
}

section#about #slide1 .splide__slide:nth-child(3) {
  background-image: url("../images/about-2-3.jpg");
}

section#about #slide2 .splide__slide:nth-child(1) {
  background-image: url("../images/about-3-1.jpg");
}

section#about #slide2 .splide__slide:nth-child(2) {
  background-image: url("../images/about-3-2.jpg");
}

section#about #slide2 .splide__slide:nth-child(3) {
  background-image: url("../images/about-3-3.jpg");
}

section#about .splide__pagination {
  display: none;
}

section#about .about-box .about-text {
  width: 600px;
  color: var(--textSecondary);
  font-weight: 500;
  line-height: 30px;
  font-size: 20px;
}

section#about .about-box .about-text h3 {
  margin-bottom: 24px;
  font-size: 22px;
  color: var(--mainColor);
  text-transform: uppercase;
}

section#about .about-box .about-text a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  background-color: var(--mainColor);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 18px;
}

/* banner */
div#banner {
  width: 100%;
  height: 150px;
  background-image: url("../images/main-about.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

div#banner .banner-image {
  width: 100%;
  height: 150px;
  background-color: rgba(230, 62, 17, 0.6);
}

/* services */
section#services .service-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

section#services .service-box .service-item {
  width: 360px;
  height: 360px;
  -webkit-box-shadow: 0px 3px 5px -3px rgba(122, 138, 163, 1);
  -moz-box-shadow: 0px 3px 5px -3px rgba(122, 138, 163, 1);
  box-shadow: 0px 3px 5px -3px rgba(122, 138, 163, 1);
  border: 1px solid #d4dfe8;
  padding: 32px;
}

section#services .service-box .service-item:nth-last-child(-n + 3) {
  margin-top: 100px;
}

section#services .service-box .service-item img {
  width: 64px;
}

section#services .service-box .service-item .service-title {
  color: var(--textPrimary);
  font-size: 22px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 10px;
}

section#services .service-box .service-item .service-desc {
  color: var(--textTertiary);
  font-weight: 500;
  font-size: 18px;
}

/* equipments */
section#equipments .equipments-box {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

section#equipments .equipments-box .equipments-images {
  display: flex;
}

section#equipments .equipments-images .main-image {
  width: 600px;
  height: 600px;
  background: transparent;
  margin-right: 24px;
  background-image: url("../images/equipment1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0px 3px 5px -3px rgba(122, 138, 163, 1);
  -moz-box-shadow: 0px 3px 5px -3px rgba(122, 138, 163, 1);
  box-shadow: 0px 3px 5px -3px rgba(122, 138, 163, 1);
  border: 1px solid #d4dfe8;
}

section#equipments .equipments-images .select-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

section#equipments .equipments-images .select-image .image {
  width: 85px;
  height: 85px;
  cursor: pointer;
  border-radius: 4px;
  padding: 15px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

section#equipments .equipments-images .select-image .image:nth-of-type(1) {
  background-image: url("../images/equipment1.png");
}

section#equipments .equipments-images .select-image .image:nth-of-type(2) {
  background-image: url("../images/equipment2.png");
}

section#equipments .equipments-images .select-image .image:nth-of-type(3) {
  background-image: url("../images/equipment3.png");
}

section#equipments .equipments-images .select-image .image:nth-of-type(4) {
  background-image: url("../images/equipment4.png");
}

section#equipments .equipments-images .select-image .image:nth-of-type(5) {
  background-image: url("../images/equipment5.png");
}

section#equipments .equipments-images .select-image .image:nth-of-type(6) {
  background-image: url("../images/equipment6.png");
}

section#equipments .equipments-images .select-image .image:nth-of-type(7) {
  background-image: url("../images/equipment7.png");
}

section#equipments .equipments-box .equipments-info .equipment-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--textSecondary);
}

section#equipments .equipments-box .equipments-info .equipment-desc {
  color: var(--textTertiary);
  font-weight: 500;
  font-size: 18px;
}

/* customers */
div#customers {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  position: relative;
}

div#customers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
  z-index: 2;
}

div#customers::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
  z-index: 2;
}

div#customers .customers-slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: 30s slide infinite linear;
}

div#customers .customers-slide img {
  width: 180px;
  margin: 0 32px;
}

/* contact */
section#contact .contact-box {
  display: flex;
  justify-content: space-between;
}

section#contact .contact-box .contact-info {
  margin-left: 30px;
}

section#contact .contact-box .contact-info .info {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
  color: var(--textSecondary);
  font-weight: 500;
  font-size: 18px;
}

section#contact .contact-box .contact-info .info img {
  width: 40px;
  margin-right: 8px;
}

section#contact .contact-box .contact-info p {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  color: var(--textSecondary);
  margin-bottom: 24px;
}

section#contact .contact-box .contact-info .social-media {
  display: flex;
}

section#contact .contact-box .contact-info .social-media a {
  margin-right: 24px;
}

section#contact .contact-box .contact-info .social-media img {
  width: 32px;
}

/* footer */
footer {
  padding: 40px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .container .copy {
  font-size: 18px;
  font-weight: 500;
  color: var(--textSecondary);
}

footer .container .copy span {
  color: var(--mainColor);
}

footer .container .logo img {
  width: 300px;
}

/* tablet */
@media screen and (max-width: 1140px) {
  .intro {
    text-align: center;
  }

  .main-title::after {
    margin: 15px auto 0 auto;
  }

  .contact-btn {
    display: none;
  }

  header .container .menu ul {
    gap: 50px;
  }

  section#hero .container .hero-image {
    display: none;
  }

  section#about .about-box .about-image {
    max-width: 100%;
  }

  section#about .about-box .about-text {
    width: 100%;
    margin-top: 24px;
  }

  section#services .service-box {
    justify-content: center;
    gap: 15px;
  }

  section#services .service-box .service-hidden {
    display: none;
  }

  section#services .service-box .service-item:nth-last-child(-n + 3) {
    margin-top: 0;
  }

  section#testimonials .testimonial-box {
    gap: 25px;
    justify-content: center;
  }

  section#testimonials .testimonial-item {
    width: 400px;
  }

  section#contact .contact-box {
    flex-direction: column;
  }

  section#contact .contact-box iframe {
    width: 100%;
    margin-bottom: 45px;
  }

  section#equipments .equipments-box,
  section#equipments .equipments-box .equipments-images {
    flex-direction: column;
  }

  section#equipments .equipments-images .select-image {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
  }

  section#equipments .equipments-images .main-image {
    width: 100%;
  }

  section#testimonials .more-testimonials {
    display: flex;
    justify-content: center;
  }
}

/* cellphone md */
@media screen and (max-width: 768px) {
  header .container .menu {
    display: none;
  }

  header .container .menu-mobile {
    display: flex;
  }

  section#newhero .logo img {
    width: 400px;
    margin-bottom: 60px;
  }

  section#newhero .hero-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
  }

  section#newhero .hero-desc {
    max-width: 600px;
    text-align: center;
    color: #ccc;
    font-size: 18px;
  }

  section#services .service-box .service-item {
    width: 96%;
    margin-bottom: 30px;
  }

  footer .container {
    flex-direction: column;
  }

  footer .container .copy {
    margin-bottom: 30px;
  }
}

/* cellphone sm */
@media screen and (max-width: 600px) {
  section#hero .container .info .title {
    font-size: 32px;
  }

  section#hero .container .info .desc {
    font-size: 18px;
  }

  section#hero .container .info .checks .check-item span {
    font-size: 17px;
  }

  section#hero .container .contact-button {
    width: 96%;
  }

  section#hero .container .contact-button:hover {
    width: 100%;
  }

  section#about .about-box .about-text {
    font-size: 18px;
  }
}
