/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

* {
  scroll-behavior: smooth;
  list-style: none !important;
  text-decoration: none !important;
  outline: none;
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --transparent: hsla(0, 0%, 100%, 0);
  --black-color: hsl(0, 0%, 100%);
  --black-color-light: hsl(0, 0%, 56%);
  --black-color-lighten: hsl(0, 0%, 100%);
  --white-color: #ffffff;
  --body-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 50;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}


/*=============== REUSABLE CSS CLASSES ===============*/

.container {
  width: auto;
  max-width: auto;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}


/*=============== HEADER ===============*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
  background-color: #191919;
}

.logo {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100vw;
  border-bottom: #e9e9e93a 1px solid;
  gap: 15vw;
  padding: 5px 0;
}

.nav-button a {
  cursor: pointer;
  font-size: 17px;
  background-color: #00743e;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

.nav-button a:hover {
  color: #ffffff;
  background-color: #01502b;
}


input {
  width: 20vw;
  border: #d1cece solid 1px;
  padding: 6px 15px;
  font-size: 13px;
}

/*=============== NAV ===============*/

.nav {
  height: var(--header-height);
  width: 100vw;
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  /* font-weight: initial; */
  font-size: 1.25rem;
}

.nav__logo img {
  /* height: var(--header-height); */
  height: 55px;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;

  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

.nav__link {
  color: var(--white-color);
  background-color: var(--transparent);
  font-weight: var(--font-semi-bold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease-in-out;
}

.nav__link:hover {
  color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  /* top: 3.5rem; */
  /* pointer-events: initial; */
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/

.dropdown__item {
  cursor: pointer;
  position: absolute;
  display: block;
}

.dropdown__arrow {
  font-size: 1.25rem;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
  width: 100vw;
  justify-content: center;
  align-items: center;
  left: 0;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);

}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */


.nav {
  height: calc(var(--header-height));
  display: flex;
}

.nav__toggle {
  display: none;
}

.nav__list {
  height: 100%;
  display: flex;
  column-gap: 8vw;
}

.nav__link {
  height: 100%;
  /* justify-content: initial; */
  column-gap: .25rem;
}

.dropdown__item,
.dropdown__subitem {
  position: relative;
}

.dropdown__menu,
.dropdown__submenu {
  max-height: initial;
  overflow: initial;
  position: fixed;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, top .3s;
  z-index: 99999;
}

.dropdown__link,
.dropdown__sublink {
  padding-inline: 1rem 3.5rem;

}



/* Show dropdown menu */
.dropdown__item:hover .dropdown__menu {
  opacity: 1;
  /* top: 5.5rem; */
  pointer-events: initial;
  transition: top .3s;
  position: fixed;
}


/*=============== MAIN HERO ===============*/

.hero {
  background-size: 100vw;
  background-size: cover;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  /* background-image:url(./Tamplate/SemImagem.png); */
  height: 80vh;
}

.hero .video {
  position: relative;
  height: 80vh;
  width: 100%;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  /* (Optional) Adjusts the focal point of the crop */
  z-index: -1;
  background-color: white;
}

.hero img {
  height: 30vh;

  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  /* (Optional) Adjusts the focal point of the crop */
  z-index: -1;
  background-color: white;
}

/*=============== SOBRE ===============*/

.sobre {
  justify-content: center;
  text-align: left;
  display: flex;
}

.sobre-text {
  padding: 270px 15vw 150px 5vw;
}

.sobre-text h1 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
}

.sobre-text h2 {
  font-size: 25px;
  padding-bottom: 8px;
}

.sobre .video {
  position: relative;
  width: 45vw;
  height: auto;
  position: relative;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  /* (Optional) Adjusts the focal point of the crop */
  z-index: -1;
  background-color: white;
}

/*=============== CATALOG ===============*/

.catalog {
  justify-content: center;
  text-align: center;
  align-items: center;
  display: flex;
  gap: 400px;
  background-color: #191919;
  padding: 15px 0;
  margin-bottom: 30px;
}

.catalog h1 {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.catalog a {
  font-size: 20px;
  background-color: #00743e;
  color: #FFF;
  padding: 5px 30px;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

.catalog a:hover {
  background-color: #01502b;
  color: #ffffff;
}

/*=============== OWL CAROUSSEL 1 ===============*/

.title-container {
  text-align: center;
  color: #000;
  /* text-transform: uppercase; */
  padding: 20px 0 15px;
}

#title {
  font-size: 30px;
  font-weight: 500;
}

.owl-container {
  text-align: start;
  justify-content: center;
  text-align: center;
  align-items: center;
  display: grid;
  background-color: #ffffff;
}

#owl-about {
  width: 1300px;
}

#owl-about {
  padding: 0;
}

#owl-about .item {
  background-color: transparent;
  padding: 0px 0 10px;
  margin: 0 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  /* border: 1px solid #e9e9e9; */
  padding: 10px !important;
}

.item-text-container {
  height: auto;
  color: #000;
  /* text-transform: uppercase; */
}

.item-text-container #info {
  font-size: 18px !important;
  padding: 10px 0;
}

.item-text-container img {
  width: 90%;
  border-radius: 0px;
  margin: 0px 0 5px;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
}

.item-text-container a {
  outline: none;
  color: #FFF;
  width: 100%;
  cursor: pointer;
}

#owl-about .item h1 {
  margin: 10px 20px 0px;
  font-weight: normal;
  height: 25px;
  font-size: 18px;
}

#owl-about .item h2 {
  font-size: 25px;
  font-weight: 400;
  height: auto;
  margin: 5px 20px;
}

#owl-about .item h3 {
  font-size: 16px;
  font-weight: 300;
  color: #e9b21a;
  margin: 0;
}

@media (max-width:1300px) {
  #owl-about .item h1 {
    font-size: 18px;
    font-weight: 400;
  }

  .catalog {
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    gap: 20vw;
    background-color: #191919;
    padding: 15px 0;
    margin-bottom: 30px;
  }
}

#about-button {
  color: #000;
  font-weight: 400;
}

#about-button:hover {
  color: #000;
}

.about-button-container {
  color: #000;
  background-color: #e7e7e7;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40vw;
  padding-right: 40vw;
  transition: .40s ease-in-out;
  text-decoration: none;
  margin-left: 5vw;
  margin-right: 3.5vw;
}

.about-button-container:hover {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 10px;
  margin-bottom: 60px;
  color: #000;
  text-decoration: none;
}

@media (max-width: 1290px) {

  .about-button-container {
    padding-left: 30vw;
    padding-right: 30vw;
    margin-right: 20vw;
  }

}


/*=============== GLOSSARY 1 ===============*/

.glossary {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  text-align: center;
  align-items: center;
  display: grid;
  padding: 5px 15vw;
  height: auto;
  background-color: #FFF;
}

.glossary .column1 {
  background-image: url("../Products/Baleiros/BaleirosThumb.png");
  background-position: center;
  background-size: cover;
}

.column1 {
  width: 850px;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  height: 500px;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.column1 img {
  height: 100%;
}

.column2 {
  width: 400px;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.column2 .row1 h1 {
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 3px;
}

.column2 .row1 a {
  font-size: 20px;
  background-color: #919191;
  color: #FFF;
  padding: 5px 30px;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
  text-transform: capitalize;
}

.column2 .row1 a:hover {
  background-color: #c2c2c2;
  color: #000000;
}


.row1 {
  /* margin-bottom: 15px; */
  width: 390px;
  height: 500px;
  padding: 150px 0;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  background-color: #191919;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: center;

}


.row2 h1 {
  font-size: 30px;
}

/*=============== OWL CAROUSSEL 2 ===============*/

#owl-about2 {
  width: 1300px;
}

#owl-about2 {
  padding: 0;
}


#owl-about2 .item {
  background-color: transparent;
  padding: 0px 0 10px;
  margin: 0 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  padding: 10px !important;

}

#owl-about2 .item h1 {
  margin: 10px 20px 0px;
  font-size: 17px;
  font-weight: 300;
  height: 25px;
  font-size: 18px;
}

#owl-about2 .item h2 {
  font-size: 25px;
  font-weight: 400;
  height: auto;
  margin: 5px 20px;
}

#owl-about2 .item h3 {
  font-size: 16px;
  font-weight: 300;
  color: #e9b21a;
  margin: 0;
}


/*=============== GLOSSARY 2 ===============*/

.full-row {
  width: 1256px;
  height: 500px;
  padding: 150px 0;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: center;
  background-image: url("./Tamplate/IMG_4588.PNG");
}

.full-row h1 {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.full-row a {
  font-weight: 400;
  cursor: pointer;
  color: #ffffff;
  /* border: #000 1px solid; */
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 18px;
  background-color: #919191;
  transition: 0.15s ease-in-out;
  width: 295px;
  justify-self: center;
}

.full-row a:hover {
  background-color: #C2C2C2;
  color: #000000;
}


/*=============== OWL CAROUSSEL 3 ===============*/

.owl-container {
  text-align: start;
  justify-content: center;
  text-align: center;
  align-items: center;
  display: grid;
  background-color: #ffffff;
}

#owl-about3 {
  width: 1300px;
}

#owl-about3 .item {
  background-color: transparent;
  padding: 0px 0 10px;
  margin: 0 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  /* border: 1px solid #e9e9e9; */
  padding: 10px !important;
}

#owl-about3 .item h1 {
  margin: 10px 20px 0px;
  font-size: 17px;
  font-weight: 300;
  height: 55px;
  font-size: 18px;
}

#owl-about3 .item h2 {
  font-size: 25px;
  font-weight: 400;
  height: auto;
  margin: 5px 20px;
}

#owl-about3 .item h3 {
  font-size: 16px;
  font-weight: 300;
  color: #e9b21a;
  margin: 0;
}


/*=============== FOOTER ===============*/

footer {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  padding: 50px 15vw;
  width: 100%;
  background-color: #FFF;
}

footer h1 {
  text-align: center;
  font-size: 20px;
}


/*=============== PRODUCT INTERFACE ===============*/

.product-path {
  padding: 180px 0 20px;
  text-align: center;

}

.product-path h1 {
  font-size: 2.5em;
}

.product-path h2 {
  font-size: 1.5em;
}

.product-interface {
  display: grid;
  grid-template-columns: auto auto;
  padding: 0px 15vw 50px;
  height: 100%;
  background-color: #FFF;
  justify-content: center;
  color: #505050;
}

.product-interface .column1 {
  width: 50vw;
  max-width: 500px;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  height: 450px;
}

.product-interface .column1 img {
  height: 450px;
}

.product-interface .column2 {
  width: 50vw;
  max-width: 500px;
  padding: 40px 25px;
  object-fit: cover;
  /* Scales the video to cover the container, cropping excess */
  object-position: center center;
  height: 100%;
  /* background-color: #191919; */
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  /* color: #fff; */
}

.product-interface .column2 h1 {
  font-size: 2.5em;
}

.product-interface .column2 h2 {
  font-size: 1.2em;
  padding-top: 10px;
}

.product-interface .column2 .size {
  display: grid;
  grid-template-columns: auto auto;
}

.product-interface .column2 .info {
  padding: 30px 0 20px;
}

.product-interface .column2 .size a {
  font-size: 1.1em;
  padding: 5px 10px;
  margin: 5px;
  color: #505050;
  border: #bdbdbd 1px solid;
  border-radius: 10px;
  text-align: center;
  transition: 0.15s ease-in-out;
}

.product-interface .column2 .size a:hover {
  background-color: #e6e6e6;
}


.product-interface .column2 .price {
  padding: 50px 0 0;
  display: grid;
}

.product-interface .column2 .price a {
  font-size: 1.1em;
  padding: 10px 10px;
  margin: 5px;
  width: 100%;
  color: #ffffff;
  background-color: #006837;
  border-radius: 10px;
  text-align: center;
  transition: 0.15s ease-in-out;
}

.product-interface .column2 .price a:hover {
  background-color: #01502b;
}



/*=============== PRODUCT BIO ===============*/

.product-bio {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;

}

.descrption {
  padding: 30px 0px;
  width: 65vw;

}

.descrption h2 {
  padding: 0 0 30px;

}

.descrption h3 {
  font-size: 1.2em;
  max-width: 800px;
}

.descrption h4 {
  font-size: 1.2em;
  font-weight: 600;
  padding: 20px 0 10px 0;
}

.descrption ul li {
  font-size: 1.2em;
  padding-bottom: 10px;
}

span {
  font-weight: 600;
}



/*=============== PRODUCT LIST ===============*/

.product-list-container {
  display: grid;
  text-align: start;
  justify-content: center;
  padding: 0px 0 50px;
}

.product-list {
  display: grid;
  grid-template-columns: auto auto auto auto;
  text-align: start;
  width: 1300px;
}

#product-list {
  padding: 0;
}

.product-list .item {
  background-color: transparent;
  padding: 0;
  margin: 5px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  /* text-transform: uppercase; */
  /* border: 1px solid #e9e9e9; */
  padding: 10px 10px 0;
}

.item-text-container #info {
  font-size: 18px !important;
  padding: 10px 0;
}

.item-text-container .button {
  font-size: 15px;
  background-color: #646464;
  width: 100%;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
  transition: 0.15s ease-in-out;
  cursor: pointer;
  color: #fff;
}

.item-text-container .button:hover {
  color: #ffffff;
  background-color: #01502b;
}

/* .item-text-container .button a{
  font-size: 15px;
  background-color: #006837;
  width: 100%;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}

.item-text-container .button a:hover{
  color: #ffffff;
  background-color: #01502b;
} */

.item-text-container a {
  outline: none;
  color: #FFF;
  width: 100%;
  cursor: pointer;
}

.product-list .item {
  height: 270px;
}

.item-text-container img {
  width: 220px;
  max-width: 300px;
  padding: 10px;
  /* border: 1px solid #e9e9e9; */
  border-radius: 10px;
}

.item-text-container img {
  width: 200px;
  max-width: 200px;
}

.product-list .item h1 {
  margin: 10px 20px 0px;
  font-size: 18px;
  font-weight: 300;
  height: 35px;
}

.product-list .item h2 {
  font-size: 25px;
  font-weight: 400;
  height: auto;
  margin: 5px 20px;
}

.product-list .item h3 {
  font-size: 16px;
  font-weight: 300;
  color: #e9b21a;
  margin: 0;
}



@media screen and (max-width: 1330px) {


  /*=============== GLOSSARY 1 ===============*/

  .glossary {
    padding: 15px 15vw;
    height: 100%;
  }

  .column1 {
    width: 45vw;
    height: 500px;
  }

  .row1 {
    /* margin-bottom: 15px; */
    margin-left: 0.75vw;
    height: 500px;
  }

  .row2 {
    margin-top: 15px;
    margin-left: 0.75vw;
    width: 44.25vw;
    height: 242px;
  }


  /*=============== GLOSSARY 2 ===============*/

  .full-row {
    width: 90vw;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center;
    height: 600px;
    min-width: 90vw;
  }


  /*=============== OWL CAROUSSEL 1 ===============*/

  .title-container {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    padding: 30px 0;
  }

  #title {
    font-size: 30px;
    font-weight: 500;
  }

  .item-text-container img {
    width: 100%;
    height: 40vw;
    max-height: 300px;
    border-radius: 0px;
    margin: 0px 0 5px;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center;
  }

  .owl-container {
    text-align: start;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: grid;
    background-color: #ffffff;
  }

  #owl-about {
    width: 90vw;
  }

  #owl-about .item h1 {
    margin: 10px 20px 0px;
    font-weight: 300;
    height: 55px;
    font-size: 18px;
  }

  #owl-about .item #info {
    font-size: 16px !important;
    font-weight: 400;
    height: auto;
    margin: 0px 20px 5px;
  }


  /*=============== OWL CAROUSSEL 2 ===============*/

  #owl-about2 {
    width: 90vw;
  }

  #owl-about2 {
    width: 90vw;
  }

  #owl-about2 .item h1 {
    margin: 10px 20px 0px;
    font-weight: 300;
    height: 55px;
    font-size: 18px;
  }

  #owl-about2 .item #info {
    font-size: 16px !important;
    font-weight: 400;
    height: auto;
    margin: 0px 20px 5px;
  }


  /*=============== OWL CAROUSSEL 3 ===============*/

  #owl-about3 {
    width: 90vw;
  }

  #owl-about3 {
    width: 90vw;
  }

  #owl-about3 .item h1 {
    margin: 10px 20px 0px;
    font-size: 17px;
    font-weight: 300;
    height: 55px;
    font-size: 18px;
  }

  #owl-about3 .item #info {
    font-size: 16px !important;
    font-weight: 400;
    height: auto;
    margin: 0px 20px 5px;
  }



  /*=============== PRODUCT LIST ===============*/

  .product-list-container {
    display: grid;
    text-align: start;
    justify-content: center;
  }

  .product-list {
    display: grid;
    grid-template-columns: auto auto auto;
    text-align: start;
    width: 1000px;
  }

  #product-list {
    padding: 0;
  }

  .product-list .item {
    background-color: transparent;
    padding: 0px 0 10px;
    margin: 5px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
  }

  .item-text-container #info {
    font-size: 18px !important;
    padding: 10px 0;
  }

  .item-text-container .button {
    font-size: 15px;
    background-color: #006837;
    width: 90%;
    margin-left: 5%;
    border: none;
    border-radius: 5px;
    transition: 0.15s ease-in-out;
    cursor: pointer;
  }

  .item-text-container .button:hover {
    color: #ffffff;
    background-color: #01502b;
  }

  .item-text-container img {
    width: 100%;
    height: 220px;
    border-radius: 0px;
    margin: 0px 0 5px;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center center;
  }

  .item-text-container a {
    outline: none;
    color: #FFF;
    width: 100%;
    cursor: pointer;
  }

  .product-list .item h1 {
    margin: 10px 20px 0px;
    font-size: 20px;
    font-weight: 300;
    height: 55px;
    font-size: 15px;
  }

  .product-list .item h2 {
    font-size: 25px;
    font-weight: 400;
    height: auto;
    margin: 5px 20px;
  }

  .product-list .item h3 {
    font-size: 16px;
    font-weight: 300;
    color: #e9b21a;
    margin: 0;
  }


  /*=============== PRODUCT INTERFACE ===============*/

  .product-path {
    padding: 150px 0 20px;
    margin-right: 0px;
    text-align: center;

  }

}



@media screen and (max-width: 1030px) {


  /*=============== GLOSSARY 1 ===============*/

  .glossary {
    padding: 15px 15vw;
    height: 100%;
    grid-template-columns: auto;

  }

  .column1 {
    width: 90vw;
    height: 200px;
  }

  .column2 {
    width: 90vw;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center center;
    height: auto;
  }

  .row1 {
    padding: 20px;
    margin-left: 0;
    width: 90vw;
    height: 200px;
  }

  .row2 {
    margin-top: 150px 0;
    margin-left: 0;
    width: 90vw;
    height: 300px;
  }


  /*=============== GLOSSARY 2 ===============*/

  .full-row {
    width: 90vw;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center;
    height: 300px;
    min-width: 90vw;
    padding: 50px;
  }

  .full-row h1 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .full-row a {
    font-weight: 400;
    cursor: pointer;
    color: #646464;
    /* border: #000 1px solid; */
    border-radius: 5px;
    font-size: 15px;
    background-color: #f3f3f3;
    transition: 0.15s ease-in-out;
    width: 295px;
    justify-self: center;
  }

  /*=============== PRODUCT LIST ===============*/

  .product-list-container {
    display: grid;
    text-align: start;
    justify-content: center;
    padding: 0;
  }

  .product-list {
    display: grid;
    grid-template-columns: auto auto;
    text-align: start;
    width: 80vw;
  }

  #product-list {
    padding: 0;
  }

  .product-list .item {
    background-color: transparent;
    padding: 0px 0 10px;
    margin: 5px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
  }

  .item-text-container #info {
    font-size: 18px !important;
    padding: 10px 0;
  }

  .item-text-container .button {
    font-size: 12px;
    background-color: #006837;
    padding: 10px 0;
    border: none;
    border-radius: 5px;
    transition: 0.15s ease-in-out;
    cursor: pointer;
  }

  .item-text-container .button:hover {
    color: #ffffff;
    background-color: #01502b;
  }

  .item-text-container img {
    height: 200px;
    width: auto;
    max-height: 250px;
    border-radius: 0px;
    margin: 0px 0 5px;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center center;
  }

  .item-text-container a {
    outline: none;
    color: #FFF;
    width: 100%;
    cursor: pointer;
  }

  .product-list .item {
    padding-bottom: 40px;
  }

  .product-list .item h1 {
    margin: 10px 20px 0px;
    font-size: 20px;
    font-weight: 300;
    height: 55px;
    font-size: 18px;
  }

  .product-list .item h2 {
    font-size: 25px;
    font-weight: 400;
    height: auto;
    margin: 5px 20px;
  }

  .product-list .item h3 {
    font-size: 16px;
    font-weight: 300;
    color: #e9b21a;
    margin: 0;
  }

  /*=============== PRODUCT INTERFACE ===============*/

  .product-path {
    padding: 0;
    text-align: center;
    margin-right: 0px;

  }


  /*=============== PRODUCT INTERFACE ===============*/

  .product-path {
    padding: 150px 0 40px;
    display: grid;
    text-align: center;
    justify-content: center;
    align-items: center;

  }

  .product-path h1 {
    font-size: 2.5em;
  }

  .product-path h2 {
    font-size: 1.5em;
  }

  .product-interface {
    display: grid;
    grid-template-columns: auto;
    height: 100%;
    width: 100vw;
    background-color: #FFF;
    justify-content: center;
  }

  .product-interface .column1 {
    width: 100vw;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center;
    height: 400px;
    padding: 0;
  }

  .product-interface .column2 {
    width: 100vw;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center;
    height: 100%;
    padding: 5vw;
    text-align: center;
  }

  .product-interface .column2 h1 {
    font-size: 2.5em;
  }

  .product-interface .column2 h2 {
    font-size: 1.5em;
  }

  .product-interface .column2 .size {
    display: grid;
    grid-template-columns: auto auto;
  }

  .product-interface .column2 .info {
    padding: 30px 0 20px;
  }

  .product-interface .column2 .size a {
    font-size: 1.1em;
    padding: 5px 10px;
    margin: 5px;
    color: #000;
    border: #bdbdbd 1px solid;
    border-radius: 10px;
    text-align: center;
    transition: 0.15s ease-in-out;
  }

  .product-interface .column2 .size a:hover {
    background-color: #e6e6e6;
  }


  .product-interface .column2 .price {
    padding: 50px 0 0;
    display: grid;
  }

  .product-interface .column2 .price a {
    font-size: 1.1em;
    padding: 10px 10px;
    margin: 5px;
    width: 100%;
    color: #ffffff;
    background-color: #006837;
    border-radius: 10px;
    text-align: center;
    transition: 0.15s ease-in-out;
  }

  .product-interface .column2 .price a:hover {
    background-color: #01502b;
  }

  .product-list .item {
    height: auto;
  }




  /*=============== PRODUCT BIO ===============*/

  .product-bio {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    align-items: center;

  }

  .descrption {
    padding: 0px 0px 30px;
    width: 80vw;

  }

  .descrption h2 {
    padding: 0 0 30px;
  }

  .descrption h3 {
    font-size: 1.2em;
  }

  .descrption h4 {
    font-size: 1.2em;
    font-weight: 600;
    padding: 20px 0 10px 0;
  }

  .descrption ul li {
    font-size: 1.2em;
    padding-bottom: 10px;
  }

  span {
    font-weight: 600;
  }

}

.phone-logo {
  margin-top: 85vh;
  margin-left: 90%;
  position: fixed;
  background-color: #33d951;
  border-radius: 100px;
  transition: 0.25s ease-in-out;
  z-index: 99999999;
}

.phone-logo img {
  width: 70px;
  padding: 15px;
  color: #fff;
}

.phone-logo:hover {
  cursor: pointer;
  background-color: rgb(61, 252, 96);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
}

@media screen and (max-width: 780px) {

  .phone-logo {
    margin-top: 85vh;
    margin-left: 80%;
    margin-right: 25%;
    position: fixed;
    background-color: #33d951;
    border-radius: 100px;
    transition: 0.25s ease-in-out;
  }

  .nav-button {
    display: none;
  }

  .logo {
    gap: 0;
  }

  /*=============== SOBRE ===============*/

  .sobre {
    justify-content: center;
    text-align: center;
    display: grid;
    grid-template-columns: auto;
  }

  .sobre-text {
    width: 100vw;
    padding: 40px 30px 40px 30px;
  }

  .sobre-text h1 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
  }

  .sobre-text h2 {
    font-size: 20px;
    padding-bottom: 8px;
  }

  .sobre .video {
    position: relative;
    width: 100vw;
    height: 40vh;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center center;
    /* (Optional) Adjusts the focal point of the crop */
    z-index: -1;
    background-color: white;
  }

  /* .container{
    display: none;
  } */


  /*=============== NAV ===============*/


  /* .nav__menu{
    position: absolute;
  }

  .nav__list{
    height: 100vh;
    display: grid;
    grid-template-columns: auto;
    column-gap: 8vw;
  }

  .nav__link {
    color: var(--white-color);
    background-color: var(--black-color);
    font-weight: var(--font-semi-bold);
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    transition: background-color .3s;
    width: 100vw;
  } */

  .catalog {
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    gap: 10vw;
    background-color: #191919;
    padding: 15px 0;
    margin-bottom: 30px;
  }

}

@media screen and (max-width: 670px) {

  .hero {
    background-size: 100vw;
    background-size: cover;
    height: 45vh;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    /* background-image:url(./Tamplate/SemImagem.png); */
  }

  .hero .video {
    position: relative;
    height: 45vh;
    width: 100%;
    object-fit: cover;
    /* Scales the video to cover the container, cropping excess */
    object-position: center center;
    /* (Optional) Adjusts the focal point of the crop */
    z-index: -1;
    background-color: white;
  }


  .phone-logo {
    margin-top: 85vh;
    margin-left: 80%;
    margin-right: 25%;
    position: fixed;
    background-color: #33d951;
    border-radius: 100px;
    transition: 0.25s ease-in-out;
  }

  .nav-button {
    display: none;
  }

  .logo {
    gap: 0;
  }

  .nav__link {
    font-size: 2.5vw;
    column-gap: 0px;
  }

  .nav__list {
    column-gap: 20px;
  }

  /* .container{
    display: none;
  } */


  /*=============== NAV ===============*/


  /* .nav__menu{
    position: absolute;
  }

  .nav__link {
    color: var(--white-color);
    background-color: var(--black-color);
    font-weight: var(--font-semi-bold);
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    transition: background-color .3s;
    width: 100vw;
  } */

  .product-interface .column1 {
    height: 300px;
  }

  .product-interface .column1 img {
    height: 300px;
  }

}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #1b1b1b;
  margin-top: 80px;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #424242;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/

@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {

  .footer-col h4::before {
    content: '';
    position: absolute;
    left: auto;
    bottom: -10px;
    background-color: #424242;
    height: 2px;
    box-sizing: border-box;
    width: 40px;
    align-items: center;
  }

  .footer {
    text-align: center;
  }

  .footer-col {
    width: 100%;
    padding: 0;

  }

  #owl-about .item h1 {
    margin: 10px 5px 0px;
    font-weight: 300;
    height: 20px;
    font-size: 13px;
  }

  #owl-about2 .item h1 {
    margin: 10px 5px 0px;
    font-weight: 300;
    height: 20px;
    font-size: 13px;
  }

  #owl-about3 .item h1 {
    margin: 10px 5px 0px;
    font-weight: 300;
    height: 55px;
    font-size: 13px;
  }

  .product-list {
    padding: 0;
    width: 100vw;
  }

  .product-list .item {
    margin: 0;
    height: 55vw;
    padding: 0;
  }

  .product-list .item h1 {
    margin: 10px 20px 0px;
    font-weight: 300;
    height: 70px;
    font-size: 14px;
  }

  .item-text-container {
    padding: 0;
    margin: 0;
  }


  .item-text-container .button {
    font-size: 12px;
    background-color: #006837;
    width: 80%;
    padding: 10px 0;
    border: none;
    border-radius: 5px;
    transition: 0.15s ease-in-out;
    cursor: pointer;
    align-self: center;
    margin-left: 10%;
  }

  #owl-about .item {
    background-color: transparent;
    padding: 0px 0 10px;
    margin: 0 0px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    /* border: 1px solid #e9e9e9; */
    padding: 10px !important;
  }

  #owl-about2 .item {
    background-color: transparent;
    padding: 0px 0 10px;
    margin: 0 0px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    /* border: 1px solid #e9e9e9; */
    padding: 10px !important;
  }

  .item-text-container .button a {
    font-size: 12px;
    background-color: #006837;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 5px;
    transition: 0.15s ease-in-out;
    cursor: pointer;
  }

  .catalog {
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    gap: 20px;
    background-color: #191919;
    padding: 15px 0;
    margin-bottom: 30px;
  }

  .catalog h1 {
    font-size: 14px;
    color: #fff;
    margin: 0;
  }

  .catalog a {
    font-size: 14px;
    background-color: #00743e;
    color: #FFF;
    padding: 5px 20px;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
  }

  .item-text-container img {
    height: 40vw;
    width: 40vw;
    width: auto;
  }
}