/* VARS */
:root {
  --color-bg-header: rgba(0, 0, 0, 0.5);
  --color-bg-green: #a1c200;
  --color-bg-grey: #302e2e;
  --color-bg-white: #ffffff;
  --color-btn-primary: #4d4d4d;
  --color-font-primary: #ffffff;
  --color-font-secondary: #4d4d4d;
}

/* FONTS */
@font-face {
  font-family: "Fieldwork Hum";
  src: url("../fonts/FieldworkHum-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Fieldwork Hum";
  src: url("../fonts/FieldworkHum-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Fieldwork Hum";
  src: url("../fonts/FieldworkHum-Thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

/*  RESET CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 12px;
  color: var(--color-font-primary);
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  margin: 0 !important;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

body {
  font-family: "Fieldwork Hum", sans-serif !important;
  font-weight: 400 !important;
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* UTILS */
.hidden {
  display: none !important;
}

.cntr {
  display: flex;
  justify-content: center;
  align-items: center;
}

.m0a {
  margin: 0 auto !important;
}

/* GLOBALS */
button {
  height: 45px;
  border-radius: 8px !important;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  width: 200px;
}

.borderred {
  border: 1px solid red !important;
}

button p {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.button-primary {
  background-color: var(--color-btn-primary);
  color: var(--color-bg-white);
}

.button-secondary {
  background-color: var(--color-bg-green);
  color: var(--color-bg-white);
}

.button-tertiary {
  background-color: var(--color-bg-white);
}

.button-tertiary p {
  color: var(--color-bg-green);
}

.divider {
  background: radial-gradient(
    circle,
    var(--color-bg-green) 50%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  margin: 30px auto 0 auto;
  height: 3px;
  max-width: 80%;
}

.title {
  text-transform: uppercase;
  font-size: 1.8rem;
  text-align: center;
}

/* MOBILE */
.header-wrapper {
  background-color: var(--color-bg-header);
  gap: 20px;
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: center;
}

.header-wrapper img {
  max-width: 100%;
  height: auto;
}

.img-container {
  max-width: 130px;
  margin: 0 !important;
}

.selo {
  max-width: 50px;
}

/* Section 1 */
.section-one {
  background-color: var(--color-bg-green);
}

.section-one__title {
  font-size: 1.6rem;
  color: var(--color-font-primary);
  text-transform: uppercase;
  text-align: center;
  font-weight: 400 !important;
}

.section-one__title span {
  font-size: 1.8rem;
  font-weight: 700;
}

.section-one__subtitle {
  color: var(--color-font-secondary);
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
}

.section-one__subtitle span {
  font-weight: 700;
  font-size: 1.8rem;
  color: inherit;
}

.img-notebook {
  width: 100%;
  height: auto;
}

.img-notebook {
  width: 100%;
  height: auto;
  object-fit: contain !important;
}

/* Section 2 */
.section-two {
  background: linear-gradient(
    to bottom,
    var(--color-bg-green),
    var(--color-bg-white)
  );
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.gallery img {
  width: 100px;
  max-height: 50px;
  object-fit: contain;
  height: auto;
}

.btn-gallery {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-gallery p {
  color: var(--color-font-secondary);
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
}

.btn-gallery i {
  color: var(--color-font-secondary);
  font-size: 1.5rem;
  line-height: 1;
}

/* Section 3 */
.section-three {
  background-color: var(--color-bg-grey);
}

.section-three__title {
  font-size: 2rem;
  font-weight: normal;
  text-transform: initial;
}

.section-three__title span {
  font-size: inherit;
  font-weight: bold;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px 20px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  margin: 0 auto !important;
}

.benefit-item img {
  max-width: 80px;
  max-height: 60px;
  margin-bottom: 20px;
}

.benefit-item p {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
}

.img-container {
  margin: 0 auto;
}

.img-desktop {
  display: none;
}

.img-mobile {
  display: block;
}

.section-three .container .img-container {
  max-width: 400px;
  height: auto;
}

.section-three .container .img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.title-pontos {
  font-size: 1.8rem;
  text-align: center;
}

.title-pontos span {
  font-size: inherit;
  color: var(--color-bg-green);
}

.text-pontos {
  font-size: 1.2rem;
  font-size: normal;
  text-align: center;
}

/* Section 4 */
.section-four {
  background: linear-gradient(
    to bottom,
    var(--color-bg-grey) 60%,
    var(--color-bg-white) 120%
  ) !important;
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.img-mapa {
  position: absolute;
  top: -50%;
  left: -170px;
  height: 280px;
  width: auto;
}

.info-item {
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  box-shadow: inset 0px 0px 5px rgba(255, 255, 255, 0.3);
  padding-right: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.info-container p {
  z-index: 999;
  text-transform: uppercase;
}

.info-container span {
  font-weight: 700;
  font-size: 1.1rem;
}

.section-four .container .img-container {
  max-width: 200px;
  height: auto;
  margin: 0 auto 30px auto !important;
}

.section-four .container .img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-four__text-info {
  font-size: 1.8rem;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
}

.section-four__text-info span {
  font-size: inherit;
  font-weight: bold;
  margin: 0;
}

.about-container {
  position: relative;
  margin-top: 130px !important;
}

.text-container {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  padding: 100px 20px 20px 20px;
}

.text-container p {
  text-align: center;
  color: var(--color-font-secondary);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
}

.text-container p span {
  font-size: inherit;
  font-weight: 500;
  color: var(--color-bg-green);
}

/* Section 5 */
.section-five {
  background: linear-gradient(
    to bottom,
    #b9b9b9 30%,
    var(--color-bg-green) 120%
  ) !important;
}

.section-five__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300 !important;
  color: var(--color-font-secondary);
}

.section-five__title span {
  font-size: inherit;
  color: inherit;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: var(--color-bg-grey);
}

footer .container .img-container {
  max-width: 200px;
  height: auto;
  margin: 0 auto 30px auto !important;
  margin-bottom: 36px;
}

footer .container .img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.icon-container {
  width: 50px;
  height: 50px;
}

.icon-contact {
  font-size: 3rem;
  color: var(--color-bg-green);
}

.contact-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-text-container p {
  font-size: 1.2rem;
  font-weight: normal;
}

.contact-text-container a {
  all: unset;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
}

/* SPLIDE CAROUSEL */
.splide__track {
  width: 70% !important;
  margin: 0 auto;
}

.splide__img-container {
  padding: 0 !important;
}

.splide__img-container img {
  width: 20px;
}

.splide__slide {
  background-color: transparent;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 20px;
}

.splide__arrow {
  background-color: transparent !important;
  border: 1px solid var(--color-font-primary) !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
}

.splide__arrow svg {
  fill: var(--color-font-primary) !important;
}

.splide__img-container {
  padding: 20px;
}

.splide__text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
}

.name {
  text-transform: capitalize !important;
  font-weight: 700 !important;
  font-style: unset !important;
  font-size: 1.1rem !important;
  margin: 0 !important;
}

.name span {
  text-transform: lowercase !important;
  color: inherit;
}

.company {
  text-transform: capitalize !important;
  font-size: 1rem !important;
  font-style: unset !important;
}

.splide__text-container p {
  font-size: 1rem;
  color: var(--color-bg-grey);
  font-style: italic;
  font-weight: 300;
}

/* Video*/
.video-container {
  position: relative;
  width: 320px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -90px !important;
  left: 50%;
  transform: translateX(-50%);
}

.video-placeholder {
  position: relative;
  width: 320px;
  height: 180px !important;
  background: #000;
  cursor: pointer;
}

.video-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px !important;
  width: 60px !important;
}

/* TABLET */
@media (min-width: 577px) and (max-width: 767px) {
  /* Section 1 */
  .section-one {
    background-image: url("../img/img_background.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    transition: background-image 0.5s ease-in-out;
  }

  /* Section 4 */
  .img-mapa {
    position: absolute;
    top: -40%;
    left: -170px;
    height: 380px;
    width: auto;
  }

  .info-item {
    height: 30px;
  }

  .info-container p {
    font-size: 1.4rem;
  }

  .info-container span {
    font-size: 1.6rem;
  }
}

/* DESKTOP */
@media (min-width: 768px) {
  /* header */
  .header-wrapper {
    min-height: 140px;
    margin-bottom: 80px;
  }

  .img-container {
    max-width: 230px;
  }

  .selo {
    max-width: 100px;
  }

  /* Section 1 */
  .section-one {
    background-size: 800px;
    background-repeat: no-repeat;
    background-position: top right;
    background-image: url("../img/img_background.webp");
    transition: background-image 0.5s ease-in-out;
  }

  .img-notebook {
    transform: scale(1.6);
  }

  #last-col {
    justify-content: end;
  }

  /* Section 2 */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .gallery-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(1.3);
  }

  .btn-gallery p {
    font-size: 1.2rem;
  }

  .btn-gallery i {
    font-size: 1.6rem;
  }

  /* Section 3 */
  .section-three {
    background-color: var(--color-bg-grey);
  }

  .section-three__title {
    font-size: 2rem;
    font-weight: normal;
    text-transform: initial;
  }

  .section-three__title span {
    font-size: inherit;
    font-weight: bold;
  }

  .benefits-container {
    gap: 40px 150px;
  }

  .benefit-item img {
    max-width: 180px;
    max-height: 80px;
  }

  .benefit-item p {
    font-size: 1.6rem;
  }

  .section-three .container .img-container {
    max-width: 100%;
  }

  .img-desktop {
    display: block;
    margin-top: 50px;
  }

  .img-mobile {
    display: none;
  }

  .section-three .container .img-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .title-pontos {
    font-size: 1.8rem;
    text-align: center;
  }

  .title-pontos span {
    font-size: inherit;
    color: var(--color-bg-green);
  }

  .text-pontos {
    font-size: 1.2rem;
    font-size: normal;
    text-align: center;
  }

  /* Section 4 */
  .img-mapa {
    position: absolute;
    top: -40%;
    left: -170px;
    height: 280px;
    width: auto;
  }

  .info-item {
    height: 30px;
  }

  .info-container p {
    font-size: 1.4rem;
  }

  .info-container span {
    font-size: 1.6rem;
  }

  .text-container {
    padding: 20px 20px 20px 350px;
    margin-left: 50px;
  }

  .text-container p {
    font-size: 1.8rem;
    font-weight: 300;
  }

  .text-container p span {
    font-weight: 400 !important;
  }

  /* Video*/
  .video-container {
    top: 50% !important;
    left: 0%;
    transform: translateY(-50%);
    height: 220px;
    width: 400px;
  }

  .video-placeholder {
    position: relative;
    width: 400px !important;
    height: 220px !important;
    background: #000;
    cursor: pointer;
  }

  .video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .busca-facil {
    margin-top: 30px !important;
  }

  /* Section 1 */
  .section-two__title {
    font-size: 2rem;
    margin-top: 50px !important;
  }

  .coluna-negativa {
    margin-top: -50px !important;
  }

  /* Section 3 */
  .section-three__title {
    font-size: 2.3rem;
  }

  .benefit-item p {
    font-size: 1.6rem;
    font-weight: 300;
  }

  .title-pontos {
    font-size: 2.4rem;
  }

  .text-pontos {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 30px !important;
  }

  /* Section 4 */
  .info-item {
    height: 40px;
    box-shadow: inset 0px 0px 8px rgba(255, 255, 255, 0.5);
  }

  .info-container span {
    font-weight: bold;
    font-size: 1.7rem;
  }

  .img-mapa {
    position: absolute;
    top: -40%;
    left: -170px;
    height: 400px;
    width: auto;
  }

  /* Section 5 */
  .section-five__title {
    font-weight: 400;
    font-size: 2.4rem;
  }

  /* Footer */
  footer .container .img-container {
    max-width: 250px;
    margin: 0 auto !important;
  }

  .icon-contact {
    font-size: 4rem;
  }

  .contact-text-container p {
    font-size: 1.6rem;
    font-weight: normal;
  }

  .contact-text-container a {
    font-size: 2rem;
  }

  /* Splide carousel */
  .splide__track {
    width: 80% !important;
  }
}

@media (min-width: 1200px) {
  /* Section 4 */
  .img-mapa {
    position: absolute;
    top: -80%;
    left: -250px;
    height: 600px;
    width: auto;
  }
}

@media (min-width: 1400px) {
  .gallery {
    padding: 0 100px;
  }

  .benefits-container {
    padding: 0 100px;
  }
}
