/* Base CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cursor-pointer {
  cursor: pointer;
}

html.noscroll {
  position: fixed; 
  overflow-y: scroll;
  width: 100%;
}

.cleared-button {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
}

.black-filter {
  filter: brightness(80%);
}

.primary-button {
  background-color: #1C6DAD;
  outline: none;
  border: none;
  padding: 7px 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.primary-button span {
  color: #FFFFFF;
  font-weight: 500;
  transition: transform 0.3s ease-in-out;
}

.primary-button:hover {
  gap: 10px;
  background-color: #0D3D65;
}

.primary-button:hover span {
  transform: translateX(-10px);
}

.primary-button span.bounce {
  animation: bounce 0.7s ease-in-out;
}

.active {
  color: #48844C !important;
  font-weight: 600 !important;
}

.header-container-mobile,
.menu-overlay,
.menu-filter-overlay,
.filters-container-mobile,
.search-container-mobile,
.home-button-mobile,
.ours-values-card-mobile,
.banner-mobile-container,
.product-embed,
.banner-container-single-product-mobile,
.talk-to-specialist-image-container-mobile,
.responsive-sub-presentation-image-container {
  display: none;
}

.carousel-section img {
  /* pointer-events: none; */
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.current-carousel-item img {
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}

.current-carousel-item img.fade-out {
  opacity: .9;
}


.select-disable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.round-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.round-checkbox input {
  display: none;
}

.round-checkbox span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ADB5BD;
  border-radius: 50%;
  background-color: white;
  transition: border-color 0.3s ease;
}

.round-checkbox input:checked + span {
  border-color: #0D3D63;
  border-width: 5px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*
  INDEX
*/

/* Top site */
.top-section {
  height: 70vh;
  background-image: url("../images/sky.png");
  background-repeat:no-repeat;
  -webkit-background-size:100% 70vh;
  -moz-background-size:100% 70vh;
  -o-background-size:100% 70vh;
  background-size:100% 70vh;
  background-position:center;
  position: relative;
}

/* .dynamic-carousel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
} */

.banner-images-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  z-index: 5;
}

.grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.men {
  position: absolute;
  bottom: 0;
  left: 80%;
  transform: translateX(-80%);
  width: 700px;
}

@media only screen and (max-height: 800px) {
  .top-section {
    height: 90vh;
    background-image: url("../images/sky.png");
    background-repeat:no-repeat;
    -webkit-background-size:100% 90vh;
    -moz-background-size:100% 90vh;
    -o-background-size:100% 90vh;
    background-size:100% 90vh;
    background-position:center;
    position: relative;
  }

  .banner-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    z-index: 5;
  }

  .men {
    position: absolute;
    bottom: 0;
    left: 80%;
    transform: translateX(-80%);
    width: 600px;
  }
  
}

@media only screen and (max-width: 992px) {
  .top-section {
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
  }
}

/* Header */
.header-outter-container {
  position: relative;
  z-index: 99;
}

.header-container {
  padding: 3vh 10vw;
}

.banner-outter-container {
  padding: 3vh 10vw 0;
  position: relative;
  z-index: 10;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  /* background-color: rgba(0, 0, 0, 0.04); */
}

.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  /* background-color: #fff; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.8); /* Fundo branco com transparência */
  backdrop-filter: blur(10px); /* Aplica desfoque ao fundo */
  -webkit-backdrop-filter: blur(10px); /* Suporte para navegadores WebKit */
}

.header-fixed-mobile {
  position: fixed;
  top: 0;
  width: 100%;  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.8); /* Fundo branco com transparência */
  backdrop-filter: blur(10px); /* Aplica desfoque ao fundo */
  -webkit-backdrop-filter: blur(10px); /* Suporte para navegadores WebKit */
}

.hidden {
  transform: translateY(-100%);
}

.visible {
  transform: translateY(0);
}


.header-item {
  display: flex;
  align-items: center;
}

.header-item:nth-child(1) {
  justify-content: start;
}

.header-item:nth-child(2) {
  justify-content: center;
}

.header-item:nth-child(3) {
  justify-content: end;
}

.header-menus {
  display: flex;
  gap: 3vw;
  list-style: none;
}

.header-menus > li, #solution, #solution svg path {
  color: #343A40;
  fill: #343A40;
  transition: .2s;
  cursor: pointer;
}

.header-menus > li:hover, #solution:hover, #solution:hover svg path {
  color: #48844C;
  fill: #48844C;
  font-weight: 500;
}

.header-item button {
  width: 100px;
}

.header-item button:hover {  
  width: 107px;
}

/* Banner */
.banner-container {
  margin-top: 10vh;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr
}

.banner-item {
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.banner-item h1 {
  color: #112434;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
}

.banner-item p {
  font-size: 14px;
  margin: 3vh 0 5vh;
}

.banner-item button {
  /* width: 250px; */
}

.banner-item button {
  padding: 20px 30px !important;
  border-radius: 100px !important;
}

.banner-item button:hover {
  /* width: 257px; */
}

@media only screen and (max-width: 1600px) {
  .banner-container {
    margin-top: 10vh;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr
  }
}

@media only screen and (max-width: 1200px) {
  .men {
    position: absolute;
    bottom: 0;
    left: 90%;
    transform: translateX(-90%);
    width: 600px;
  }
}

@media only screen and (max-width: 992px) {
  .men {
    position: absolute;
    bottom: 0;
    left: 90%;
    transform: translateX(-90%);
    width: 500px;
  }
}

@media only screen and (max-width: 750px) {
  .banner-outter-container {
    display: none;
  }

  .banner-mobile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3vh 5vw 0;
    position: relative;
    z-index: 10;
  }
  
  .banner-item h1 {
    color: #112434;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .banner-item p {
    font-size: 14px;
    margin: 3vh 0;
  }
  
  .banner-item button {
    /* width: 250px; */
  }
  
  .banner-item button {
    padding: 20px 30px !important;
    border-radius: 100px !important;
  }
  
  .banner-item button:hover {
    /* width: 257px; */
  }

  .top-section {
    height: 90vh;
    background-image: url("../images/sky.png");
    background-repeat:no-repeat;
    -webkit-background-size:100% 90vh;
    -moz-background-size:100% 90vh;
    -o-background-size:100% 90vh;
    background-size:100% 90vh;
    background-position:center;
    position: relative;
  }

  .banner-images-container {
    height: 90vh;
  }



  .men {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
  }
}

@media only screen and (max-width: 500px) {
  .banner-images-container {
    overflow: hidden;
  }

  .men {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 400px;
  }
}


/* Mega Menu */
.mega-menu {
  position: absolute;
  top: -900vh;
  left: 0;
  width: 100%;
  background-color: rgba(222, 226, 230, 1);
  /* backdrop-filter: blur(30px); */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 5vh 10vw;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 3vw 1fr 3vw 1fr;
  opacity: 0;
  transform: translateY(-50px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.mega-menu.active {
  top: 12vh;
  opacity: 1;
  transform: translateY(0);
}

.margin-fixed-mega-menu {
  top: 10vh !important;
}

.mega-menu.closing {
  transform: translateY(-50px) !important;
  opacity: 0 !important;
}

.mega-menu-section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mega-menu-section-divider .divider{
  border: 1px solid #ADB5BD;
  width: 1px;
  height: 100%;
}

.mega-menu-section {
  
}

.mega-menu-section h3 {
  color: #1C6DAD;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3vh;
}

.mega-menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.mega-menu-section ul li {
  color: #343A40;
  margin-bottom: 8px;
  cursor: pointer;
  transition: .2s;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-menu-section ul li:hover {
  color: #FFFFFF;
  background-color: #103C64;
}

.mega-menu-section ul li svg {
  stroke: #0D3D63;
  margin-right: 1vw;
}

.mega-menu-section ul li:hover svg {
  stroke: #AEFBff;
  transition: .3s;
  transform: translateX(+1vw);
}

.mega-menu-section a {
  color: #1C6DAD;
  text-decoration: none;
  margin-top: 15px;
  font-weight: 600;
  transition: .2s;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-section a div {
  display: flex;
  align-items: center;
}

.mega-menu-section a:hover {
  background-color: #0B1A25;
  color: #AEFBff;
}

.mega-menu-section a svg {
  stroke: #0D3D63;
  margin-right: 1vw;
}

.mega-menu-section a svg:nth-child(1) {
  display: none;
}

.mega-menu-section a:hover svg:nth-child(1) {
  display: block;
}

.mega-menu-section a:hover svg:nth-child(2) {
  stroke: #AEFBff;
  transition: .3s;
  transform: translateX(+1vw);
}


/* Responsive header */
@media only screen and (max-width: 1300px) {
  .banner-item h1 {
    font-size: 40px;
  }
  
  .header-container {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr
  }
}

@media only screen and (max-width: 1200px) {
  .mega-menu {
    grid-template-columns: 400px 3vw 400px 3vw 400px;
    overflow-x: scroll;
  }
}

@media only screen and (max-width: 992px) {
  .header-container {
    padding: 3vh 5vw;
  }

  .banner-outter-container {
    padding: 3vh 5vw 0;
  }

}

@media only screen and (max-width: 850px) {
  .header-container {
    display: none;
  }

  .mega-menu {
    overflow: hidden;
  }

  .header-container-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vh 5vw;
  }

  .header-item-mobile button{
    background-color: transparent;
    border: none;
    outline: none;
  }

  /* Overlay styling */
  .menu-overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(206, 206, 206, 0.99);
    z-index: 2000;
    overflow-y: scroll;
    transform: translateX(0);
    transition: transform 0.15s ease-in-out;
  }
  
  .menu-overlay.active-menu {
    transform: translateX(-100%);
  }
  
  .menu-overlay-header {
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: rgb(216, 216, 216, .99);
    padding: 2vh 4vw;
  }

  .menu-overlay-login-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 4vw;
    margin: 1vh 0 2vh;
  }

  .user-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E9ECEF;
    border: 1px solid #CED4DA;
    outline: none;
    padding: 10px;
    border-radius: 50%;
  }

  .menu-overlay-navigation {
    padding: 0 4vw;
  }

  .menu-overlay-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    margin-bottom: 3vh;
  }

  .mega-menu-section {
    padding: 3vw 2vh;
  }

  .mega-menu-section h3 {
    color: #1C6DAD;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2vh;
  }
  
  .mega-menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  .mega-menu-section ul li {
    color: #343A40;
    margin-bottom: 8px;
    cursor: pointer;
    transition: .2s;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

}

/* Presentation section */
.presentation-section {
  margin: 10vh 0;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
}

.presentation-section-row {
  display: flex;
  justify-content: center;
  align-items: center;  
  gap: 5vw;
}

.presentation-section-row:nth-child(2) {
  margin-top: 5vw;
}

.presentation-card {  
  aspect-ratio: 1 / 1;
  width: 40vw;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 3vw;
  text-align: center;
  cursor: pointer;
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
  transition: background-image 0.3s ease, transform 0.3s ease;
}

.presentation-small-card {  
  width: 40vw;
  aspect-ratio: 3 / 1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 3vw;
  text-align: center;
  cursor: pointer;
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
  transition: background-image 0.3s ease, transform 0.3s ease;
}

.presentation-small-card:nth-child(1) {
  background-image: url("../images/Frame-85.png");
}

.presentation-small-card:nth-child(2) {
  background-image: url("../images/animal-home-card-hover.png");
}

.presentation-small-card:hover {
  background-image: url("../images/Property-1-hover-85.png");
}

.presentation-small-card:nth-child(1):hover {
  background-image: url("../images/Property-1-hover-85.png");
}

.presentation-card:nth-child(1) {
  background-image: url("../images/Frame-82.png");
}

.presentation-card:nth-child(2) {
  background-image: url("../images/Frame-39.png");
}

.presentation-card:nth-child(1):hover {
  background-image: url("../images/Property-1=hover.png");
}

.presentation-card:nth-child(2):hover {
  background-image: url("../images/Property-2=hover.png");
}

.presentation-card h3 {
  font-size: 48px;
}

.presentation-small-card h3 {
  font-size: 40px;
}

.presentation-card p {
  font-size: 18px;
  font-weight: 100;
}

.presentation-card:hover h3,
.presentation-card:hover p {
  transform: translateY(-10vh);
  transition: transform 0.15s ease;
}

.presentation-small-card:hover h3,
.presentation-small-card:hover p {
  transform: translateY(-2vh);
  transition: transform 0.15s ease;
}

.presentation-card h3,
.presentation-card p {
  transform: translateY(0);
  transition: transform 0.15s ease;
}

.presentation-small-card h3,
.presentation-small-card p {
  transform: translateY(0);
  transition: transform 0.15s ease;
}

.presentation-card .hover-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.presentation-small-card .hover-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.presentation-card .initial-content {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.presentation-card:hover .initial-content {
  display: none;
  opacity: 0;
}

.presentation-card:hover .hover-content {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
}

.presentation-small-card:hover .hover-content {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
}

/* Responsive presentation section */
@media only screen and (max-width: 1200px) {
  .presentation-card h3 {
    font-size: 32px;
  }

  .presentation-small-card h3 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 992px) {  
  .presentation-card p {
    font-size: 16px;
    font-weight: 100;
  }
  
  .presentation-small-card p {
    font-size: 16px;
    font-weight: 100;
  }
}

@media only screen and (max-width: 750px) {
  .presentation-section-row:nth-child(1) {
    flex-direction: column;
  }

  .presentation-section-row:nth-child(2) {
    flex-direction: column-reverse;
  }

  .presentation-card {
    width: 80vw;
  }

  .presentation-small-card {
    width: 80vw;
  }
}

/* Sub presentation section */
.sub-presentation-section {
  background-color: #DEE2E6;
  display: flex;
  margin-top: 10vh;
  padding: 150px 8vw;
}

.sub-presentation-image-container {
  width: 1600px;
  position: relative;
  height: 60vh;
}

.nossa-historia-1 {
  width: 400px;
  height: 370px;
  border-radius: 40px;
  position: absolute;
  top: 90px;
  left: 140px;
  z-index: 20;
  transition: .3s;
}

.nossa-historia-1-non-active-by-2 {
  width: 150px !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  border-radius: 25px !important;
  top: 0 !important;
  left: auto !important;
  right: 0 !important;
  z-index: 5 !important;  
}

.nossa-historia-1-non-active-by-3 {
  width: 180px !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  border-radius: 25px !important;
  top: 0 !important;
  left: auto !important;
  right: 0 !important;
  z-index: 5 !important;  
}

.nossa-historia-1-non-active-by-4 {
  width: 180px !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  border-radius: 25px !important;
  top: 10px !important;
  left: 50px !important;
  z-index: 10 !important;  
}

.nossa-historia-2-wrapper {
  width: 240px;
  aspect-ratio: 1/1;  
  z-index: 15;
  position: relative;
}

.nossa-historia-2 {
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  transition: .3s;
}

.nossa-historia-square-1 {
  background-color: #125589;
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 25px;
  position: absolute;
  top: 200px;
  left: 100px;
  z-index: 7;
  transition: .3s;
}

.nossa-historia-square-1-non-active-by-2 {
  top: 10px !important;
  left: 30px !important;
  z-index: 7 !important;
}

.nossa-historia-square-1-non-active-by-3 {
  width: 50px !important;
  border-radius: 10px !important;
  top: 120px !important;
  left: 70px !important;
  z-index: 7 !important;
}

.nossa-historia-square-1-non-active-by-4 {
  width: 50px !important;
  border-radius: 10px !important;
  top: 5px !important;
  left: 230px !important;
  z-index: 7 !important;
}

.nossa-historia-square-2 {
  background-color: #55A5E4;
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 25px;
  position: absolute;
  top: 400px;
  left: 470px;
  z-index: 7;
  transition: .3s;
}

.nossa-historia-square-2-non-active-by-2 {
  z-index: 7;
  width: 50px !important;
  border-radius: 10px !important;
  top: 170px !important;
  right: 70px !important;
  left: auto !important;
}

.nossa-historia-square-2-non-active-by-3 {
  z-index: 7;
  top: 500px !important;
}

.nossa-historia-square-2-non-active-by-4 {
  z-index: 7;
  top: 500px !important;
}

.nossa-historia-2-active {
  width: 400px !important;
  height: 480px !important;
  aspect-ratio: none !important;
  border-radius: 40px !important;
  position: absolute;
  top: 70px !important;
  left: 100px !important;
  z-index: 10 !important;
}

.nossa-historia-2-non-active-by-3 {
  width: 150px !important;  
  z-index: 5 !important;
}

.nossa-historia-2-non-active-by-4 {  
  z-index: 5 !important;
  top: 80px !important;
  left: 30px !important;
}

.nossa-historia-2-active {
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
  transition: .3s;
}

.nossa-historia-3 {
  width: 180px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  position: absolute;
  top: 350px;
  left: 75px;
  z-index: 5;
  transition: .3s;
}

.nossa-historia-3-wrapper {
  width: 180px;  
  aspect-ratio: 1/1;
  position: absolute;
  top: 350px;
  left: 75px;
  z-index: 15;
}

.nossa-historia-3-non-active-by-2 {
  width: 150px !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  border-radius: 25px !important;
  top: 450px !important;
  left: 50px !important;
  right: auto !important;
  z-index: 5 !important;  
}

.nossa-historia-3-active {
  width: 400px !important;
  height: 480px !important;
  aspect-ratio: none !important;
  border-radius: 40px !important;
  position: absolute;
  top: 70px !important;
  left: 100px !important;
  z-index: 10 !important;
}

.nossa-historia-4 {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  position: absolute;
  top: 480px;
  left: 200px;
  z-index: 5;
  transition: .3s;
}

.nossa-historia-4-wrapper {
  width: 150px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 480px;  
  left: 200px;
  z-index: 15;
}

.nossa-historia-4-active {
  width: 400px !important;
  height: 500px !important;
  aspect-ratio: auto !important;
  border-radius: 20px !important;
  position: absolute;
  top: 20px !important;
  left: 170px !important;
  z-index: 10 !important;
}

.nossa-historia-4-non-active-by-3 {
  width: 200px !important;
  top: 470px !important;
  left: 250px !important;
  z-index: 5 !important;
}

.nossa-historia-4-non-active-by-2 {
  width: 180px !important;
  top: 470px !important;
  left: 400px !important;
  z-index: 5 !important;
}

.sub-presentation-action-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 7vh 5vw;
}

.sub-presentation-action-container-text {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.sub-presentation-action-container h3 {
  font-size: 48px;
  line-height: 1.3;
  color: #125589;
}

.sub-presentation-action-container-button {
  display: flex;
  align-items: center;
  justify-content: end;
}

.sub-presentation-action-container-button button {
  padding: 20px 30px;
  border-radius: 100px !important;
  gap: 3px;
}

.sub-presentation-action-container-button button:hover {
  gap: 5px;
}

.sub-presentation-action-container-button button:hover span {
  transform: translateX(-5px);
}

/* Responsive sub presentation section */
@media only screen and (max-width: 1300px) {
  .sub-presentation-action-container h3 {
    font-size: 40px;
  }

  .sub-presentation-action-container {
    padding: 7vh 0;
    margin-left: 3vw;
  }
}

@media only screen and (max-width: 1200px) {
  .sub-presentation-action-container {
    padding: 7vh 0;
    margin-left: 5vw;
  }

  .sub-presentation-action-container h3 {
    font-size: 32px;
  }

  .sub-presentation-action-container-button button,
  .nitro-na-midia-section-button-container a,
  .banner-item button {
    padding: 10px 15px !important;
  }
}

@media only screen and (max-width: 1100px) {
  .sub-presentation-image-container {
    display: none;
  }

  .responsive-sub-presentation-image-container {
    display: flex;
  }

  .responsive-sub-presentation-image-container img {
    width: 500px;
  }
}

@media only screen and (max-width: 992px) {
  .sub-presentation-section {
    flex-direction: column;
    padding: 5vh 5vw 3vh ;
  }

  .responsive-sub-presentation-image-container img {
    width: 300px;
  }

  .responsive-sub-presentation-image-container {
    justify-content: center;
    align-items: center;
  }

  .sub-presentation-action-container {
    padding: 7vh 2vw;
  }

  .sub-presentation-action-container h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 750px) {  
  .sub-presentation-action-container {
    padding: 7vh 5vw;
  }

  .sub-presentation-action-container h3 {
    font-size: 32px;
  }

  .sub-presentation-action-container-button {
    margin-top: 3vh;
  }

  .sub-presentation-action-container-button button {
    padding: 10px 15px;
  }
}

/* Nitro na mídia section */
.nitro-na-midia-section {
  background-color: #E9ECEF;
  padding: 10vh 0 10vh 8vw;
}

.nitro-na-midia-section h3 {
  color: #0D3D63;
  font-size: 48px;
  margin-bottom: 3vh;
}

.nitro-na-midia-section-slider-card {
  border: 1px solid #D4D4DC;
  background-color: #FFFFFF;
  width: 25vw;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}


.nitro-na-midia-section-slider-card-image-container img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.nitro-na-midia-section-slider-card-content {
  padding: 3vh 2vw 0;
}

.nitro-na-midia-section-slider-card-content span {
  color: #7D7D7D;
  font-size: 12px;
  font-weight: 700;
}

.nitro-na-midia-section-slider-card-content h4 {
  text-transform: uppercase;
  margin: 1vh 0 2vh;
}

.nitro-na-midia-section-slider-card-content p {
  font-size: 12px;
}

.nitro-na-midia-section-slider-card-footer {
  padding: 3vh 2vw;
  margin-top: auto;
}

.nitro-na-midia-section-slider-card-footer a {
  text-decoration: none;
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  outline: none;
}

.nitro-na-midia-section-slider-card-footer span {
  color: #125589;
  font-weight: 700;
  font-size: 16px;
}

.nitro-na-midia-section-slider-container {
  overflow: hidden;
  scrollbar-color: transparent transparent;
  position: relative;  
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  gap: 3vw;
}

.nitro-na-midia-section-button-container {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 5vh;
  padding: 0 8vw;
}

.nitro-na-midia-section-button-container a {
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 100px !important;
}

/* Responsive nitro na midia section */
@media only screen and (max-width: 1300px) {  
  .nitro-na-midia-section-slider-card-content h4 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1200px) {    
  .nitro-na-midia-section-slider-card {
    width: 30vw;
  }
}

@media only screen and (max-width: 992px) {  
  .nitro-na-midia-section-slider-card {
    width: 40vw;
  }
}

@media only screen and (max-width: 750px) {  
  .nitro-na-midia-section-slider-card {
    width: 50vw;
  }
}

@media only screen and (max-width: 500px) {  
  .nitro-na-midia-section-slider-card {
    width: 80VW;
  }

  .nitro-na-midia-section h3 {
    font-size: 24px;
  }
}

/* Carousel section */
.carousel-section {
  background-color: #F8F8F8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  padding: 10vh 15vw;
}

.previous-carousel-item, .next-carousel-item {
  height: 40vh;
  width: 5vw;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.background-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.previous-carousel-item button, .next-carousel-item button {
  background-color: #125589;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}

.previous-carousel-item::after, .next-carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  pointer-events: none;
}

.current-carousel-item {
  height: 40vh;
  width: 50vw;
  border-radius: 20px;
}

.current-carousel-item img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  cursor: pointer;
}

.next-carousel-item button img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -8vh;
  margin-bottom: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: #125589;
}


/* Responsive carousel section */
/* @media only screen and (min-width: 1600px) {
  .previous-carousel-item,
  .next-carousel-item {
    height: 50vh;
  }

  .current-carousel-item {
    height: 50vh;
  }
} */

@media only screen and (min-width: 1600px) {
  .previous-carousel-item {
    height: 50vh;
  }

  .current-carousel-item {
    height: 50vh;
  }

  .next-carousel-item {
    height: 50vh;
  }
}

@media only screen and (max-width: 1200px) {
  .carousel-section {
    padding: 10vh 10vw;
  }

  .previous-carousel-item {
    width: 10vw;
    height: 40vh;
  }

  .current-carousel-item {
    width: 70vw;
    height: 40vh;
  }

  .next-carousel-item {
    width: 10vw;
    height: 40vh;
  }

  .previous-carousel-item button, .next-carousel-item button {    
    padding: 10px;
  }
}

@media only screen and (max-width: 992px) {
  .carousel-section {
    padding: 10vh 10vw;
  }

  .previous-carousel-item {
    width: 10vw;
    height: 30vh;
  }

  .current-carousel-item {
    width: 70vw;
    height: 30vh;
  }

  .next-carousel-item {
    width: 10vw;
    height: 30vh;
  }

  .previous-carousel-item button, .next-carousel-item button {    
    padding: 10px;
  }
}

@media only screen and (max-width: 800px) {
  .carousel-section {
    padding: 10vh 0vw;
  }

  .previous-carousel-item {
    width: 10vw;
    height: 30vh;
  }

  .current-carousel-item {
    width: 70vw;
    height: 30vh;
  }

  .next-carousel-item {
    width: 10vw;
    height: 30vh;
  }

  .previous-carousel-item button, .next-carousel-item button {    
    padding: 10px;
  }
}

@media only screen and (max-width: 500px) {  
  .previous-carousel-item {
    width: 10vw;
    height: 20vh;
  }

  .current-carousel-item {
    width: 70vw;
    height: 20vh;
  }

  .next-carousel-item {
    width: 10vw;
    height: 20vh;
  }

  .previous-carousel-item button img, .next-carousel-item button img {
    width: 15px;
  }
}

/* Career Section */
.career-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  background-color: #DEE2E6;
  padding: 1vh 10vw 0;
}

.career-section-image-container {
  height: 300px;
}

.career-section-image-container img {
  height: 100%;
}

.career-section-content {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.career-section-content h3 {
  color: #0D3D63;
  font-size: 32px;
}

.career-section-content p {
  font-size: 14px;
}

.career-section-button-container button {
  width: 10vw;
  padding: 10px 15px;
  border-radius: 100px !important;
}

/* Responsive carrer section */
@media only screen and (max-width: 1200px) {  
  .career-section {
    gap: 2vw;
  }
  
  .career-section-content h3 {
    font-size: 24px;
    margin-bottom: 2vh;
  }

  .career-section-content p {
    font-size: 14px;
  }
  
  .career-section-button-container button {
    width: 15vw;
  }
}

@media only screen and (max-width: 992px) {  
  .career-section {
    flex-direction: column;
    gap: 2vw;
    text-align: center;
  }
  
  .career-section-content h3 {
    font-size: 32px;
    margin-bottom: 2vh;
  }

  .career-section-content p {
    font-size: 18px;
    margin-bottom: 2vh;
  }
  
  .career-section-button-container button {
    width: 20vw;
    margin-bottom: 5vh;
  }
}

@media only screen and (max-width: 750px) {  
  .career-section-button-container button {
    width: 30vw;
  }
}

@media only screen and (max-width: 750px) {  
  .career-section-button-container button {
    width: 50vw;
  }
}

/* Bottom section */
.bottom-section {
  background-color: #E9ECEF;
  padding: 10vh 15vw;
}

.top-footer {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  border-bottom: 1px solid #112434;
  margin-bottom: 2vh;
  padding-bottom: 4vh;
}

.top-footer-image-container {
  width: 150px;
}

.top-footer-image-container svg {
  width: 100%;
}

.top-footer-content-container {
  display: flex;
  justify-content: space-between;
  width: 25vw;
}

.top-footer-content-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.top-footer-content-container li {
  cursor: pointer;
  transition: .1s;
}

.top-footer-content-container li:hover {
  cursor: pointer;
  color: #1C6DAD;
  text-decoration: underline;
}

.nitro-social {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.bottom-footer-social {

}

.nitro-social h4 {
  text-transform: uppercase;
  color: #125589;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.top-footer-newsletter-container {
  margin-left: auto;
}

.newsletter-card-container {
  border: 1px solid #DEE2E6;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 2vh 2vw;
  width: 30vw;
}

.newsletter-top-card h4 {
  text-transform: uppercase;
}

.newsletter-top-card p {
  color: #6C757D;
}

.newsletter-mid-card {
  margin: 1vh 0;
}

.newsletter-mid-card input {
  border-radius: 10px;
  border: 1px solid #DEE2E6;
  padding: 1vh 1vw;
  width: 100%;
}

.newsletter-bottom-card {
  display: flex;
  gap: 2vw;  
}

.newsletter-bottom-card p {
  font-size: 14px;
  cursor: pointer;
}

.newsletter-highlight {
  color: #1C6DAD;
  text-decoration: underline;
}

.newsletter-bottom-card button {
  width: 150px;
}

.bottom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-footer-copyright p {
  color: #1C6DAD;
}

.bottom-footer-social {
  display: flex;
  gap: 2vw;
}

.bottom-fotter-icon {
  cursor: pointer;
}

.bottom-footer-social .bottom-fotter-icon svg {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.bottom-footer-social .bottom-fotter-icon:hover svg {
  transform: scale(0.6);
}

.bottom-footer-social .bottom-fotter-icon:hover svg path {
  transition: fill 0.3s ease;
}

.bottom-footer-social .bottom-fotter-icon:nth-child(1):hover svg path {
  fill: red;
}

.bottom-footer-social .bottom-fotter-icon:nth-child(2):hover svg path {
  fill: #D304DD;
}

.bottom-footer-social .bottom-fotter-icon:nth-child(3):hover svg path {
  fill: #1A64FC;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #FFFFFF;
  padding: 4vh 4vw 2vh;
  border-radius: 20px;
  width: 70vw;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s;  
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.modal-body h2 {
  font-size: 40px;
  margin-bottom: 2vh;
}

.modal-body p {
  margin-bottom: 2vh;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1vw;
}

.modal-footer button {
  border-radius: 20px;
  padding: 10px;
  width: 13vw;
  border: none;
  outline: none;
  cursor: pointer;
  transition: .3s;
}

.modal-footer button:nth-child(1) {
  background-color: #1C6DAD;
  color: #FFFFFF;
}

.modal-footer button:nth-child(1):hover {
  opacity: .9;
}

.modal-footer button:nth-child(2) {
  background-color: transparent;
  color: #1C6DAD;
  border: 1px solid #1C6DAD;
}

.modal-footer button:nth-child(2):hover {
  background-color: #0D3D63;
  color: #FFFFFF;
}

/* Responsive bottom section */
@media only screen and (max-width: 1300px) {
  .newsletter-bottom-card button {
    width: 200px;
  }
}

@media only screen and (max-width: 1200px) {
  .newsletter-bottom-card button {
    padding: 0;
  }

  .modal-body h2 {
    font-size: 32px;
  }

  .modal-footer button {
    width: 20vw;
  }

  .top-footer-content-container {
    width: 30vw;
  }

  .newsletter-card-container {
    width: 40vw;
  }
}

@media only screen and (max-width: 992px) {
  .top-footer {
    flex-direction: column;
  }

  .top-footer-image-container {
    margin-bottom: 3vh;
  }

  .top-footer-content-container {
    width: 50vw;
  }

  .top-footer-newsletter-container {
    margin: 3vh 0 0;
  }

  .top-footer-content-container ul {
    gap: 3vh;
  }
  
  .newsletter-card-container {
    width: 50vw;
  }

  .bottom-footer {
    flex-direction: column-reverse;
  }

  .bottom-footer-social {
    gap: 5vw;
    margin-bottom: 3vh;
  }

  .bottom-footer-copyright {
    font-size: 14px;
  }
}

@media only screen and (max-width: 750px) {
  /* .top-footer-content-container {
    width: 80vw;
  } */

  .nitro-social {
    margin-top: 5vh;
  }
  
  .newsletter-card-container {
    width: 80vw;
  }

  .bottom-footer-copyright {
    font-size: 12px;
  }

  .modal-footer button {
    width: 40vw;
  }
}

@media only screen and (max-width: 500px) {
  /* .top-footer-content-container {
    width: 80vw;
  } */
  
  .newsletter-card-container {
    width: 80vw;
  }

  .bottom-footer-copyright {
    font-size: 12px;
  }

  .modal-footer button {
    width: 40vw;
  }

  .modal-content {
    width: auto;
    margin: 1vh 1vw;
  }
}

/*
  PRODUTOS
*/

/* Top section */
.sub-header-container {
  padding: 3vh 10vw;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #468649;
}

.sub-header-container span:last-child{
  font-weight: 700;
}

/* Products section */
.products-section-container {
  padding: 0 10vw;
  margin-bottom: 5vh;
}

/* .products-section-container-title {
  padding: 0 5vw;
  margin-bottom: 3vh;
  position: relative;
  height: 7vh;
}

.products-section-container-title h3 {
  font-size: 32px;
  color: #FDFDFD;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;  
}

.products-section-container-title img {
  width: 100%;
  z-index: 10;
  border-radius: 15px;
  filter: brightness(70%)
} */

.products-section-outter-container {
  width: 100%;
}

.products-section-container-title {
  margin-bottom: 3vh;
  position: relative;
  left: 5vw;
  height: 100px;
  /* height: 7vh; */
  width: 90%;
}

.products-section-container-title img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
  border-radius: 15px;
  filter: brightness(60%);
}

.products-section-container-title h3 {
  position: absolute;
  top: 50%;
  left: 3vw;
  transform: translateY(-50%);
  font-size: 32px;
  color: #FDFDFD;
  font-weight: 400;
  z-index: 90;
  text-align: center;
}

.products-section-categoires-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}

.products-section-categoires-selection button {
  width: 19%;
  min-width: 170px;
  border-radius: 20px;
  outline: none;
  border: 1px solid #1C6DAD;
  background-color: transparent;
  padding: .5vh 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
  margin-top: 5px;
}

.products-section-categoires-selection button:hover {  
  border: 1px solid #1C6DAD;
  background-color: #103C64;
}

.products-section-categoires-selection button span {
  color: #1C6DAD;
  font-weight: 600;
  transition: .3s;
}

.products-section-categoires-selection button:hover span {
  color: #FFFFFF;
}

.products-section-categoires-selection button svg circle {
  fill: #1C6DAD;
  stroke: #1C6DAD;
}

.products-section-categoires-selection button svg path {
  stroke: #1C6DAD;
}

.products-section-categoires-selection button:last-child svg path {
  fill: #1C6DAD;
  stroke: #1C6DAD;
}

.products-section-categoires-selection-active {
  background-color: #112434 !important;
}

.products-section-categoires-selection-active span {
  color: #FFFFFF !important;
}

.products-section-categoires-selection-active svg circle {
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

.products-section-categoires-selection-active svg path {
  stroke: #FFFFFF !important;
}

.filtered-by-container {
  display: none;
}

.filtered-by-container h3 {
  font-weight: 400;
  font-size: 24px;
  color: #468649;
}

.products-section {
  margin-top: 3vh;
  display: flex;
  align-items: start;
}

.products-section-filters {
  /* width: 20vw;
  max-width: 20vw; */
}

.search-container {
  display: flex;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 5px 10px;
  width: 100%;
}

.search-container img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.search-container input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}

.filters-container {
  margin-top: 3vh;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #495057;
}

.filter-content {
  margin-top: 1vh;
  color: #495057;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.filter-content-active {
  background-color: #CCCCCC !important;
}

.filter-content-mobile-active {
  background-color: #EEEEEE !important;
}

.filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-item button {
  outline: none;
  background-color: transparent;
  border-radius: 15px;
  padding: 5px 7px;
  border: 1px solid #CED4DA;
  max-width: 100%;
  font-weight: 500;
  transition: .3s;
}

.filter-item button:hover {
  background-color: #F8F9FA;
}

.products-section-products {
  padding: 0 0 0 5vw;
  width: 100%;
  gap: .5vw;
  display: flex;  
  flex-wrap: wrap;
}

.product-card {
  width: 17vw;
  transition: all 0.3s ease;
  padding: 1vh 1.5vw;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card[style*="display: none"] {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}


.product-card:hover {
  background-color: #E0E4E4;
  height: auto;
}

.product-description .hidden-text {
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
  margin-top: 10px;
  color: #1C6DAD;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.product-description .hidden-text img {
  width: 8px;
}

.product-card:hover .product-description .hidden-text {
  opacity: 1;
}

.product-card-image-container {
  width: 100%;
  min-width: 100px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card img:first-child {
  width: 80%;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

.product-tag {
  width: 100%;
  border-radius: 20px;  
  border: 1px solid #1C6DAD;
  background-color: transparent;
  padding: .1vh 0;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1C6DAD;
  font-weight: 700;
  margin: 1vh 0 1.5vh;
  text-align: center;
}

.product-description {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  text-align: center;
  transition: all 0.3s ease;
}

.product-description h6 {
  font-size: 18px;
}

.product-description p {
  font-size: 14px;
}

.overlay-initial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Modal */
.modal-initial {
  background-color: #fff;
  width: 100%;
  height: 30vh;
  padding: 3vh 10vw;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.modal-initial h2 {
  color: #101C24;
  font-size: 32px;
}

.modal-initial p {
  max-width: 55vw;
  color: #101C24;
}

.modal-initial span {
  font-weight: 700;
}

.overlay-initial.active-overlay {
  visibility: visible;
  opacity: 1;
}

.overlay-initial.active-overlay .modal-initial {
  transform: translateY(0);
}

.modal-initial-button {
  align-self: flex-end;
  margin-bottom: 3vh;
}

#continue-button {
  background-color: #1c6dad;
  color: #FFFFFF;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  width: 200px;  
  transition: .3s;
}

#continue-button:hover {
  opacity: .8;
}

@media (max-width: 750px) {
  .modal-initial h2 {
    font-size: 20px;
  }

  .modal-initial p {
    max-width: 100%;
    font-size: 14px;
  }
}

/* Responsive procuts section */
@media (min-width: 1700px) { 
  /* .products-section-products {
    gap: 0;
  } */

  .product-card {
    width: 14vw;
  }
  
  .product-card img:first-child {
    width: 70%;
  }
}

@media only screen and (max-width: 1300px) {
  .product-card {
    padding: 1vh 2vw;
  }  
  
  .search-container {
    overflow: hidden;
  }

  .search-container img {
    width: 20px;
    height: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .products-section-categoires-selection button {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1100px) {
  .search-container input {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  .products-section-container {
    padding: 0 5vw;
  }

  .sub-header-container {
    padding: 3vh 5vw;
  }
  
  .product-card {
    padding: 1vh 5vw;
    width: 45%;
  }

  .filter-title {
    font-size: 14px;
  }

  .filter-item p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 800px) {
  .products-section-filters {
    margin-bottom: 3vh;
    width: 100%;
    display: flex;
    gap: 5px;
  }

  .filters-container, .search-container {
    display: none;
  }

  .products-section {
    flex-direction: column;
  }

  .search-container-mobile {
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 5px 10px;
    width: auto;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
  }
  
  .search-button-mobile {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .search-button-mobile img {
    width: 30px;
    height: 30px;
  }
  
  .search-container-mobile input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    margin-left: 10px;
    width: 0;
    opacity: 0;
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  .search-container-mobile.expanded {
    width: 70vw;
  }
  
  .search-container-mobile.expanded input {
    width: 100%;
    opacity: 1;
  }

  .filters-container-mobile {
    width: 100%;
    display: block;
  }

  .filters-container-mobile button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    background-color: #E9ECEF;
    font-size: 16px;
    gap: 10px;
    font-weight: 500;
  }

  .product-card {
    padding: 1vh 3vw;
  }

  .product-card-image-container {
    width: 100%;
    min-width: 100px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .product-card img:first-child {
    width: 80%;
    max-height: 250px;
    object-fit: cover;
    display: block;
  }

  .home-button-mobile {
    display: block;
    /* display: flex;
    justify-content: center;
    align-items: center; */
  }

  .home-button-mobile img {
    width: 20px;
  }

  .sub-header-container span:nth-child(2) {
    display: none;
  }

  .products-section-container-title {
    padding: 0 5vw;
  }

  .products-section-container-title h3 {
    font-size: 24px;
  }

  .menu-filter-overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(206, 206, 206, 0.99);
    z-index: 2000;
    overflow: scroll;
    transform: translateX(0);
    transition: transform 0.15s ease-in-out;
  }
  
  .menu-filter-overlay.active-menu-filter {
    transform: translateX(-100%);
  }

  .filters-container-overlay {
    padding: 2vh 4vw;
  }

  .filter-title, .filter-item {
    font-size: 16px;
  }

  .filter-item button {
    border: 1px solid #FFFFFF;
  }
}

@media only screen and (max-width: 750px) {  
  .products-section-products {
    padding: 0;
    gap: 1vw;
    justify-content: center;
    align-items: center;
  }
}


/* Nossa História */
.top-story-section {
  
}

.banner-outter-container-story {
  /* height: 70vh; */
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;  
}

.plyr__video-embed {
  aspect-ratio: auto !important;
  height: 60vh !important;
}

#player {
  z-index: 1;
}

#player {
  width: 100%;
  height: 300px; /* Ajuste conforme necessário */
}


.custom-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  z-index: 2;
}

.thumb-title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -70%);
  text-align: center;
  color: white;
  font-size: 28px;
  width: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mid-section {
  padding: 10vh 10vw;
}

.mid-section h2 {
  font-size: 48px;
  display: flex;
  flex-direction: column;
  color: #125589;
}

.mid-section p {
  color: #6C757D;
  font-size: 28px;
  line-height: 2;
  margin-top: 2vh;
}

.mid-section h4 {
  font-size: 28px;
  color: #125589;
  margin-top: 2vh;
}

.through-the-years {
  background-color: #CED4DA;
  padding: 7vh 10vw;
}

.through-the-years h2 {
  color: #125589;
  font-size: 48px;
}

.years-list {
  display: flex;
  gap: 3vw;
  padding: 3vh 0 2vh;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.years-list::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Edge */
}

.years-list:active {
  cursor: grabbing;
}

.years-list-selected {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #6AB251;
}

.through-the-years-card {
  display: flex;
  height: 50vh;
  background-color: #DEE2E6;
  border-radius: 50px;
}

.through-the-years-image-container,
.through-the-years-content {
  flex: 1;
}

.through-the-years-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px 0 0 50px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.through-the-years-image-container img.fade-out {
  opacity: 0;
}

.through-the-years-content {
  display: flex;
  flex-direction: column;
  gap: 5vh;
  padding: 3vh 3vw;
  border-radius: 0 50px 50px 0;
}

.through-the-years-content h3 {
  font-size: 48px;
  color: #125589;
}

.through-the-years-content p {
  font-size: 16px;
}

.through-the-years-content h3,
.through-the-years-content p {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.fade-out-text {
  opacity: 0;
}

.ours-values {
  padding: 7vh 10vw;
}

.ours-values h2 {
  color: #125589;
  font-size: 48px;
}

.ours-values-cards-container {
  display: flex;
  gap: 2vw;
  margin-top: 2vh;
}

.ours-values-card {
  border: 1px solid #E9ECEF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  height: 300px;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.ours-values-card p {
  font-size: 18px;
  color: #0D3D63;
  font-weight: 700;
  margin-top: 3vh;
  text-align: center;
  text-transform: uppercase;
  cursor: default;
}

.ours-values-card:hover {
  background-color: #0C3C64;
  transform: scale(1.05);
}

.ours-values-hidden-text {
  flex-direction: column;
  gap: 2vh;
  cursor: default;
}

.ours-values-hidden-text p {
  color: white;
  margin-top: 0;
  cursor: default;
}

.ours-values-hidden-text p:nth-child(2) {
  text-transform: none;
  font-weight: 400;
}

.ours-values-card:hover svg {
  display: none;
}

.ours-values-hidden-text {
  display: none;
  text-align: center;
}

.ours-values-card:hover .ours-values-hidden-text {
  display: flex;
}

.ours-values-card:hover > p {
  display: none;
}

.partnership {
  padding: 7vh 10vw;
  background-color: #CED4DA;
}

.partnership h2 {
  color: #125589;
  font-size: 48px;
}

.partnership-container {
  display: flex;
  flex-direction: column;
  margin-top: 3vh;
  gap: 3vh;
}

.partnership-card {
  display: flex;
  align-items: center;
}

.partnership-card-content {
  padding-left: 3vw;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.certifications {
  padding: 7vh 10vw;
  background-color: #E0E4E4;
}

.certifications h2 {
  color: #125589;
  font-size: 48px;
}

.certifications-cards-container {
  margin-top: 3vh;
  display: flex;
  gap: 3vw;
}

.certifications-cards-container-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.certification-card {
  display: flex;
}

.certification-card h6 {
  font-size: 18px;
  text-transform: uppercase;
}

.certification-card-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2vw;
  gap: 3vh;
}

.certification-highlight {
  color: #125589;
  font-weight: 500;
}

.certification-card-content-container-right h6 {
  margin-bottom: 2vh;
}

.certification-card-content-container-right-subtitle {
  display: flex;
  flex-direction: column;
}

.certification-card-image-container-right {
  margin: 1vh 0;
}

.certification-card-content-container-right-footer {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.certification-card-content-container-right-footer p:first-child{
  font-weight: 700;
}

.map-section {
  width: 100%;
  height: 80vh;
  background: linear-gradient(90deg, rgba(17,61,99,1) 2%, rgba(32,133,66,1) 100%);
}

.map-container {
  width: 100%;
  height: 100%;  
  position: relative;
  padding: 10px;
}

.map-container h2 {
  font-size: 40px;
  color: #FFFFFF;
  position: absolute;
  top: 10%;
  left: 13%;
}

.map {
  width: 70%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.legend-container {
  position: absolute;
  bottom: 10%;
  right: 10%;
  display: flex;
  gap: 3vw;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFFFFF;
}

.legend-item p {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.pin-map {
  color: #FFFFFF;
  display: flex;
  gap: 3px;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.modal-pin-content {
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.modal-pin-header {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  color: #0D3D63;
  text-transform: uppercase;
}

.modal-pin-header button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;  
}

.modal-pin-main {
  max-height: 40vh;
  scrollbar-width: thin;
  overflow-y: auto;
}

.modal-pin-main p {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

@media only screen and (min-width: 1600px) {
  .thumb-title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1400px) {
  .through-the-years-content h3 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .certifications-cards-container {
    flex-direction: column;
  }
  
  .certifications-cards-container-left {
    width: 80%;
    display: flex;
    flex-direction: column;
  }

  .certifications-cards-container-right {
    width: 80%;
  }

  .ours-values-cards-outter-container {
    display: flex;
    gap: 5vw;
    /* justify-content: center; */
  }

  .ours-values-cards-container {    
    flex-direction: column;
  }

  .map {
    width: 80%;
  }
}

@media only screen and (max-width: 1100px) {
  .mid-section h2 {
    font-size: 40px;
  }

  .through-the-years-content h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 992px) {
  .partnership-container {
    display: flex;
    flex-direction: column;
    margin-top: 5vh;
    gap: 10vh;
  }

  .partnership-card-image-container {    
    width: 100%;
  }

  .partnership-card-image-container img {
    width: 80%;
  }
  
  .partnership-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  
  .partnership-card-content {
    padding: 0;
    margin-top: 3vh;
    max-width: 80%;
  }

  .through-the-years-card {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: #DEE2E6;
    border-radius: 50px;
  }
  
  .through-the-years-image-container img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 50px 50px 0 0;
  }

  .ours-values-card {
    border: 1px solid #E9ECEF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;  
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    height: 250px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: default;
  }

  .modal-pin-main p,
  .legend-item p,
  .modal-pin-footer p {
    font-size: 12px;
  }

  .modal-pin-header {
    font-size: 16px;
  }
}

@media only screen and (max-width: 750px) {
  .through-the-years-content h3 {
    font-size: 28px;
  }

  .ours-values-card {
    display: none;
  }

  .ours-values-card-mobile {
    border: 1px solid #E9ECEF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    width: 80%;
    height: 400px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: default;
  }

  .ours-values-card-mobile p:nth-child(2) {
    font-size: 18px;
    color: #0D3D63;
    font-weight: 700;
    margin-top: 3vh;
    text-align: center;
    text-transform: uppercase;
    cursor: default;
  }

  .ours-values-card-mobile p:nth-child(3) {
    font-size: 14px;
    color: #0D3D63;
    font-weight: 400;
    margin-top: 3vh;
    text-align: center;
    cursor: default;
  }

  .mid-section h2 {
    font-size: 32px;
  }

  .mid-section p {
    font-size: 20px;
  }

  .certifications h2,
  .through-the-years h2,
  .ours-values h2,
  .partnership h2 {
    font-size: 32px;
    text-align: center;
  }

  .ours-values-cards-outter-container {
    flex-direction: column;
  }

  .ours-values-cards-container {
    align-items: center;
  }

  .partnership-container {
    align-items: center;
  }

  .partnership-card {
    align-items: center;
  }

  .partnership-card-image-container {
    display: flex;
    justify-content: center;
  }

  .partnership-card-image-container img {
    width: 100%;
  }

  .partnership-card-content {
    max-width: 100%;
  }

  .certifications-cards-container-left,
  .certifications-cards-container-right {
    width: 100%;
  }

  .certification-card:nth-child(2) {    
    margin: 3vh 0;
  }

  .certification-card-image-container img {
    width: 30vw;
  }

  .map {
    width: 120%;
  }

  .map-container {
    overflow: hidden;
  }

  .map-container text {
    font-size: 28px;
  }

  .map-container h2 {
    top: 10%;
    left: 5%;
  }

  .legend-item {
    cursor: pointer;
  }

  .modal-pin-main {
    max-height: 100%;
    overflow: auto;
    scrollbar-width: none;
    text-align: left;
  }

  .modal-pin-header {
    margin-bottom: 2vh;
  }

  .modal-pin-header {
    margin-top: 3vh;
  }
}

@media only screen and (max-width: 500px) {
  .thumb-title {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
    text-align: center;
    color: white;
    font-size: 28px;
    width: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .legend-container {
    bottom: 5%;
    left: 5%;
    flex-direction: column;
  }
}


/* EMBED PRODUCT */
.product-embed {  
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
}

.product-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Boucing modal */
.backdrop-bouncing {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.backdrop-bouncing.show {
  opacity: 1;
  visibility: visible;
}

.modal-container-bouncing {
  position: fixed;
  bottom: -100%;
  width: 90%;
  height: 90vh;
  background: white;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 200;  
  left: 0;
  right: 0;
  margin: 0 auto;
}


.modal-container-bouncing.show {
  animation: bounceIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 1;
}

.modal-bouncing-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: left;
  gap: 10px;
  color: #0D3D63;
  font-size: 20px;
  padding-bottom: 3px;
}

.modal-bouncing-content {
  max-height: 80vh;
  overflow-y: auto;
}

@keyframes bounceIn {
  0% {
      bottom: -100%;
      opacity: 0;
  }
  50% {
      bottom: 10px;
      opacity: 1;
  }
  70% {
      bottom: -5px;
  }
  100% {
      bottom: 0;
  }
}

.close-btn {
  background: crimson;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}

/* SINGLE PRODUCT */
.banner-outter-container-single-product {
  padding: 3vh 10vw 15vh;
  background-color: #E9ECEF;
  /* height: 70vh; */
}

.banner-container-single-product {
  display: flex;
}

.banner-side-single-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumb {
  width: 100px;
  height: 50px;
  background-color: #D9D9D9;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.product-thumb-play-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.product-thumb-selected {
  border: 3px solid #1C6DAD;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb {
  position: relative;
}

.product-thumb div#player-product {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-image-single-product {
  background-color: #D9D9D9;
  width: 30vw;
  height: 50vh;
  background-repeat:no-repeat;
  background-size:60% auto;
  background-position:center;
  margin: 0 2vw 0 1vw;
  border-radius: 10px;
}

.banner-content-single-product {  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30vw;
}

.banner-content-container {
  display: flex;
}

.banner-content-single-product h2 {
  color: #1C6DAD;
  font-size: 40px;
  font-weight: 400;
}

.banner-content-single-product-tag {    
  border-radius: 20px;  
  border: 1px solid #1C6DAD;
  background-color: transparent;
  padding: 1px 10px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1C6DAD;
  font-weight: 700;
  margin-top: 5px;
  text-align: center;  
}

.banner-content-single-product-subtitle {
  margin: 20px 0;
}

.banner-content-single-product-subtitle p {
  font-weight: 700;
  font-size: 14px;
}

.banner-content-single-product-description {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-content-single-product-cultures {
  margin-top: 20px;
  color: #9D9D9D;
}

.banner-content-single-product-cultures-content {
  display: flex;
  align-items: center;  
  margin-top: 10px;
  flex-wrap: wrap;
}

.banner-content-single-product-cultures-content-item {  
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-content-single-product-cultures-content-item img {
  width: 80px;
}

.banner-content-single-product-bottom-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
}

.banner-content-single-product-bottom-buttons button {
  outline: none;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.whatsapp-button {
  background-color: #468649;
  padding: 20px;
  color: #FFFFFF;
  border: none;
  transition: .3s;
}

.whatsapp-button:hover {
  background-color: #0D3D63;
}

.pdf-button {
  border: 1px solid #468649;
  padding: 10px;
  color: #468649;
  transition: .3s;
}

.pdf-button:hover {
  background-color: #0D3D63;
  color: #FFFFFF;
}

.featured-text-section {
  position: relative;
  padding: 7vh 0;
  height: 470px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #125589;
}

.featured-text-section div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.featured-text-section p {
  font-size: 40px;
  position: relative;
  z-index: 2;
  max-width: 80%;
}


.linha-products-section {
  padding: 10vh 10vw;
}

.linha-products-section-title {
  font-size: 28px;
  color: #125589;
  margin-bottom: 2vh;
}

.linha-products-section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-item {
  display: flex;
  border-radius: 20px;  
  padding: 25px;
  width: 45%;
  border: 1px solid #E9ECEF;
  /* align-items: flex-start; */
  align-items: stretch; /* Garantir altura igual */
  gap: 25px;
}

.product-item-image {
  width: 200px;
  height: 200px;
  background-color: #D9D9D9;
  display: flex;
  padding: 10px;
  justify-content: center;
  border-radius: 20px;
  align-items: center;
}

.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-item-content h4 {
  font-size: 20px;
  color: #125589;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 5px;
}

.product-item-content p:first-of-type {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 0;
}

.product-item-content p:last-of-type {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10vh;
}

.product-item-content button {
  margin-top: auto !important;
  width: 150px !important;
  align-self: flex-end !important;
}

.new-linha-product-item {
  border: 1px solid #E9ECEF;
  border-radius: 25px;
  padding: 35px;
}

.new-linha-product-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-linha-product-item-header p {
  color: #495057;
  font-weight: 700;
}

.new-linha-products-section-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.new-linha-product-item-image-container {
  margin: 80px 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-linha-product-item-image-container img {
  width: 700px;
}

.new-linha-product-item-description-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-linha-product-item-description-container-item {
  max-width: 50%;
}

.new-linha-product-item-description-container-item h4 {
  text-transform: uppercase;
  color: #125589;
  font-size: 18px;
  font-weight: 700;
}

.new-linha-product-item-description-container-item p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
}

.mega-text-container {
  padding: 10vh 10vw;
}

.mega-text-container-title,
.field-research-title {
  font-size: 32px;
  color: #125589;
}

.mega-text-container-content {
  margin-top: 3vh;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.even-background {
  background-color: #DEE2E6;
}

.field-research {
  background-color: #E9ECEF;
  padding: 10vh 10vw;
}

.field-research-title {
  margin-bottom: 10vh;
}

.field-research-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}

.field-research-content_item {
  width: 80%;
}

.field-research-content_item img {
  width: 100%;
}

.product-benefits-cointainer {
  padding: 10vh 10vw;
  background-color: #0D3D63;
}

.product-benefits-title {
  color: #FDFDFD;
  font-size: 32px;
  margin-bottom: 5vh;
}

.product-benefits-content-item {
  display: flex;
  align-items: center;
  color: #FDFDFD;
  font-size: 18px;
  gap: 10px;
  border-bottom: 1px solid #FDFDFD;
  padding-bottom: 1.5vh;
  margin-bottom: 1.5vh;
}

.our-tech-container {
  padding: 128px 10vw;
  background-color: #E9ECEF;
}

.our-tech-title h2 {
  font-size: 38px;
}

.our-tech-title {
  margin-bottom: 65px;
}

.our-tech-title h2 {
  font-weight: 700;
  font-size: 48px;
  color: #125589;
}

.our-tech-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.our-tech-content p {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.product-specifications-container {
  padding: 10vh 10vw;
  background-color: #1C6DAD;
}

.product-specifications-title {
  font-size: 32px;
  color: #FDFDFD;
  margin-bottom: 5vh;
}

.product-specifications-content {
  font-size: 18px;
  color: #FFFFFF;
}

.product-action-linha {
  padding: 10vh 10vw;
  background-color: #E9ECEF;
}

.product-action-linha-title {
  font-size: 32px;
  color: #125589;
  margin-bottom: 5vh;
}

.related-products-container {
  padding: 10vh 10vw;
  background-color: #FDFDFD;
}

.related-products-title {
  font-size: 32px;
  color: #125589;
  margin-bottom: 5vh;
}

.related-products-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}

.talk-to-specialist {
  padding-top: 10vh;
  background-color: #224829;
  display: flex;
}

.talk-to-specialist-image-container {
  display: flex;
  max-width: 50%;
}

.talk-to-specialist-image-container img {
  width: 100%;
}

.talk-to-specialist-form-title {
  margin-left: 20px;
  font-size: 24px;
  color: #FFFFFF;
}

.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.product-modal-content {
  background-color: #224829;
  padding: 10vh 2vw;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 60vw;  
  display: flex;
  position: relative;
}

.product-modal-side-container {
  font-size: 24px;
  color: #FFFFFF;
  width: 50%;
}

.product-modal-side-container img:first-of-type {
  margin-bottom: 150px;
}

.product-modal-side-container img:last-of-type {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
}

.product-modal-close {
  position: absolute;
  top: 40px;
  right: 50px;
  cursor: pointer;
}

.product-modal-close img {
  width: 24px;
  height: auto;
  transition: transform 0.2s ease-in-out;
}

.product-modal-close img:hover {
  transform: scale(1.1);
}

.product-info-container {
  padding: 10vh 10vw;
}

.product-info-content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.product-info-item {
  max-width: 300px;  
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-info-item h4 {
  color: #475151;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info-item p {
  display: flex;
  align-items: center;  
  gap: 8px;
  font-style: italic;
  color: #666;
}

.product-info-item p img {
  align-self: baseline;
}

/* Responsive single-product */
@media only screen and (min-width: 1600px) {
  .banner-image-single-product {
    background-size: 50% auto;
  }
}

@media only screen and (max-width: 1400px) {
  .linha-products-section {
    padding: 10vh 5vw;
  }
}

@media only screen and (max-width: 1300px) {
  .linha-products-section {
    padding: 10vh 10vw;
  }

  .linha-products-section-content {
    flex-direction: column;
  }

  .product-item {
    width: 100%;
  }

  .product-modal-content {
    width: 70vw;
  }
}

@media only screen and (max-width: 1200px) {
  .mega-text-container-title,
  .field-research-title h2,
  .product-benefits-title {
    font-size: 28px;
  }

  .talk-to-specialist-form-title {
    font-size: 20px;
  }

  .product-modal-side-container {
    width: 60%;
  }
  
  .product-modal-side-container img:first-of-type {
    width: 300px;
  }
  
  .product-modal-side-container img:last-of-type {
    width: 300px;
  }

  .featured-text-section p {
    font-size: 32px;
  }

  .new-linha-product-item-description-container {
    flex-direction: column;
    gap: 20px;
  }

  .new-linha-product-item-description-container-item {
    max-width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .banner-outter-container-single-product {
    height: auto;
  }

  .banner-container-single-product {
    display: none;
  }

  .banner-outter-container-single-product {
    padding: 10vh 5vw;
  }

  .our-tech-container {
    padding: 128px 5vw;
  }

  .mega-text-container,
  .field-research,
  .product-benefits-cointainer,
  .related-products-container,
  .product-info-container {
    padding: 10vh 5vw;
  }

  .banner-container-single-product-mobile {
    display: flex;
    flex-direction: column;
  }

  .related-products-title {
    font-size: 28px;
  }

  .banner-image-single-product {
    margin-top: 5vh;
    background-color: #D9D9D9;
    width: 100%;
    height: 50vh;
    background-repeat:no-repeat;
    background-size:40% auto;
    background-position:center;
    margin: 0;
    border-radius: 10px;
  }

  .banner-side-single-product {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5vh;
  }
  
  .product-thumb {
    width: 100px;
    height: 50px;
    background-color: #D9D9D9;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  .banner-content-single-product {
    margin-top: 5vh;
  }

  .banner-content-single-product {
    max-width: 100%;
  }

  .talk-to-specialist {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .talk-to-specialist-image-container {
    max-width: 80%;
  }

  .product-modal-content {
    width: 90vw;
  }

  .product-info-content-container {
    flex-direction: column;
  }

  .product-info-item p {
    flex-direction: row;
    gap: 3px;
  }

  .product-info-item img {
    width: 20px;
  }

  .new-linha-product-item-image-container img {
    width: 800px;
  }
}

@media only screen and (max-width: 800px) {
  .product-modal-content {
    flex-direction: column;
  }

  .product-modal-side-container img:first-of-type {
    margin-bottom: 0;
  }
  
  .product-modal-side-container img:last-of-type {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  .sub-header-container {
    font-size: 12px;
  }

  .sub-header-container img:not(:first-of-type) {
    width: 5px;
  }

  .product-item {
    flex-direction: column;
  }

  .talk-to-specialist-image-container {
    max-width: 100%;
  }

  .field-research-content_item {
    width: 100%;
  }

  .featured-text-section p {
    font-size: 28px;
  }

  .new-linha-product-item-image-container img {
    width: 600px;
  }
}

@media only screen and (max-width: 500px) {
  .banner-image-single-product {
    margin-top: 5vh;
    background-color: #D9D9D9;
    width: 100%;
    height: 30vh;
    background-repeat:no-repeat;
    background-size:35% auto;
    background-position:center;
    margin: 0;
    border-radius: 10px;
  }

  .talk-to-specialist-image-container {
    display: none;
  }

  .talk-to-specialist-image-container-mobile {
    display: flex;
    max-width: 100%;
  }
  
  .talk-to-specialist-image-container-mobile img {
    width: 100%;
  }

  .product-modal-side-container {
    width: 100%;
  }

  .product-modal-content {
    width: 100vw;
  }

  .new-linha-product-item-image-container img {
    width: 400px;
  }
}

/* Contato */
.contact-header-container {
  padding: 3vh 10vw;
}

.contact-header-container h1 {
  color: #125589;
  font-size: 48px;
  font-weight: 700;
}

.contact-header-container p {
  color: #343A40;
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
}

.unity-cards-section-container {
  padding: 5vh 10vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.unity-brazil-container {
  
}

.unity-brazil-title-container h3,
.unity-exterior-title-container h3 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #0D3D63;
}

.unity-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}

.unity-card {
  background-color: #E9ECEF;
  padding: 50px 32px;
  max-width: 30%;
  border-radius: 32px;
  display: flex;
  margin-top: 32px;
}

.unity-card-title h5 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  color: #0D3D63;
}

.unity-card-content-container span {
  font-size: 12px;
  color: #0D3D63;
  font-weight: 400;
}

.unity-card-content p {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  margin-top: 15px;
}

.press-container {
  padding: 0 10vw;
  background-color: #DEE2E6;
}

.press-content-container {
  padding: 130px 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.press-title-container h4 {
  font-weight: 700;
  color: #125589;
  font-size: 38px;
  text-align: center;
}

.press-contacts-container {
  display: flex;
  gap: 40px;
}

.press-contact-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.press-contacts-item {
  display: flex;
  gap: 15px;
}

.press-contact-container h5 {
  font-weight: 700;
  font-size: 18px;
  color: #0D3D63;
}

.press-contact-container p:nth-of-type(1) {
  font-weight: 400;
  font-size: 16px;
  color: #6C757D;
}

.press-contact-container p:nth-of-type(2) {
  font-weight: 600;
  font-size: 16px;
  color: #0D3D63;
}

.compliance-program {
  padding: 10vh 10vw;
  background-color: #E9ECEF;
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.compliance-program-title-container h2 {
  color: #125589;
  font-weight: 700;
  font-size: 48px;
}

.compliance-program-description-container p {
  font-size: 18px;
}

.compliance-program-bottom h6 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
}

.ethics-section {
  padding-left: 10vw;
  display: flex;
}

.ethics-content-container {
  padding: 10vh 80px 10vh 0;
  width: 50%;
}

.ethics-image-container {
  width: 50%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center;
}

.ethics-title {
  font-size: 40px;
  font-weight: 700;
  color: #125589;
}

.ethics-description {
  margin-top: 24px;
  margin-bottom: 65px;
}

.ethics-description p {
  font-weight: 400;
  font-size: 18px;
  color: #343A40;
}

.ethics-phone-container {
  margin-top: 65px;
  display: flex;
}

.ethics-phone-content {
  margin-left: 15px;
}

.ethics-phone-content h5 {
  font-weight: 700;
  font-size: 18px;
  color: #0D3D63;
}

.ethics-phone-content p {
  font-weight: 600;
  font-size: 16px;
  color: #0D3D63;
}

/* Responsive Contact */
@media only screen and (max-width: 1200px) {
  .unity-card {
    max-width: 45%;
  }

  .press-content-container {
    flex-direction: column;
  }

  .ethics-section {
    padding-left: 0;
    flex-direction: column-reverse;
  }
  
  .ethics-content-container {
    padding: 10vh 10vw;
    width: 100%;
  }
  
  .ethics-image-container {
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
  }
}

@media only screen and (max-width: 850px) {
  .unity-card {
    min-width: 100%;
  }

  .press-contacts-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

@media only screen and (max-width: 750px) {
  .contact-header-container,
  .unity-cards-section-container {
    padding: 3vh 5vw;
  }

  .compliance-program {
    padding: 10vh 5vw;
    gap: 30px;
  }

  .press-container {
    padding: 0 5vw;
  }

  .contact-header-container h1,
  .compliance-program-title-container h2,
  .ethics-title h2 {
    font-size: 38px;
  }

  .press-content-container {
    gap: 70px;
  }
}


/* Compliance */
.compliance-header-container {
  padding: 3vh 10vw;
}

.compliance-header-container h1 {
  font-size: 48px;
  font-weight: 700;
  color: #125589;
}

.compliance-header-container p:first-of-type {
  color: #343A40;
  font-weight: 400;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.compliance-header-container p:last-of-type {  
  font-weight: 700;
  color: #343A40;
  font-size: 18px;
}

.compliance-pillars {
  padding: 3vh 10vw;
}

.compliance-pillars-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.compliance-pillars-image-container img {
  width: 80%;
}

.compliance-normas {
  padding: 165px 10vw;
  background-color: #E9ECEF;  
}

.compliance-normas h2 {
  font-weight: 700;
  font-size: 48px;
  color: #125589;
  margin-bottom: 15px;
}

.compliance-normas p {
  font-weight: 400;
  font-size: 18px;
  color: #343A40;
}

.compliace-normas-container {
  
}

.compliace-normas-item {
  display: flex;
}

.compliace-normas-item-content {
  width: 50%;
  padding: 160px 0;
}

.compliace-normas-left {
  padding-left: 10vw !important;
  padding-right: 80px !important;
}

.compliace-normas-right {
  padding-right: 10vw !important;
  padding-left: 80px !important;
}

.compliace-normas-item-content h3 {
  font-weight: 700;
  font-size: 40px;
  color: #125589;
}

.compliace-normas-item-content p {
  font-weight: 400;
  font-size: 18px;
  color: #343A40;
  margin: 25px 0 65px;
}

.compliace-normas-item-image-container {  
  width: 50%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center;
}

.compliance-doubts-container {
  padding: 75px 10vw;
  background-color: #125589;
  overflow: hidden;
  position: relative;
}

.compliance-doubts-bg-svg {  
  width: fit-content;
  position: absolute;
  top: 0;
  right: -60px;
}

.compliance-doubts-title-container {
  margin-bottom: 40px;
}

.compliance-doubts-title-container h4 {
  font-weight: 700;
  color: #FDFDFD;
  font-size: 40px;
}

.compliance-doubts-content-container {
  display: flex;
  gap: 40px;
}

.compliance-doubts-content {
  max-width: 50%;
}

.compliance-doubts-content p {
  font-size: 18px;
  font-weight: 400;
  color: #FDFDFD;
}

.compliance-doubts-image-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compliance-doubts-image-content p {
  font-size: 18px;
  font-weight: 400;
  color: #AEDBFF;  
}

/* Compliance Responsive */
@media only screen and (max-width: 992px) {
  .compliance-header-container,
  .compliance-pillars {
    padding: 3vh 5vw;
  }

  .compliance-header-container h1,
  .compliance-normas h2 {
    font-size: 38px;
  }

  .compliance-pillars-image-container img {
    width: 100%;
  }

  .compliace-normas-item-left{
    flex-direction: column-reverse;
  }

  .compliace-normas-item-right {
    flex-direction: column;
  }
  
  .compliace-normas-item-content {
    width: 100%;
    padding: 80px 0;
  }
  
  .compliace-normas-left {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
  
  .compliace-normas-right {
    padding-right: 5vw !important;
    padding-left: 5vw !important;
  }
  
  .compliace-normas-item-content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #125589;
  }
  
  .compliace-normas-item-content p {
    font-weight: 400;
    font-size: 18px;
    color: #343A40;
    margin: 25px 0 65px;
  }
  
  .compliace-normas-item-image-container {  
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
  }

  .compliance-doubts-content-container {
    flex-direction: column;
    max-width: 100%;
  }

  .compliance-doubts-content {
    max-width: 100%;
  }

  .compliance-doubts-bg-svg {  
    width: fit-content;
    position: absolute;
    top: auto;
    bottom: -25vh;
    right: -70px;
  }

  .compliance-doubts-container {
    height: 70vh;
    padding: 75px 5vw;
  }
}

/* Na midía */
.top-na-midia-container {
  padding: 3vh 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-na-midia-container h1 {
  font-weight: 700;
  font-size: 48px;
  color: #125589;
}

.search-container-midia {
  display: flex;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 10px 15px;
  width: 300px;
}

.search-container-midia img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.search-container-midia input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}

.cards-destaques-na-midia {
  padding: 3vh 10vw;
  display: flex;
  gap: 5%;
}

.large-card-container-na-midia {
  width: 55%;
}

.small-cards-container-na-midia {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.small-card-image-container {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
}

.small-card-content-container {
  padding: 15px;
  height: 200px;
  display: flex;
  flex-direction: column;
}

.small-card-content-container h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.large-card-na-midia,
.small-card-na-midia {
  width: 100%;
  /* width: 730px; */
  border-radius: 20px;
  border: 1px solid #CED4DA;
}

.large-card-image-container {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
}

.large-card-content-container {
  padding: 30px;
}

.publish {
  font-weight: 700;
  font-size: 12px;
  color: #7D7D7D;
}

.large-card-content-container h2 {
  color: #000000;
  font-weight: 700;
  font-size: 36px;
  /* font-size: 40px; */
  margin: 15px 0;
  line-height: 1.2;
}

.large-card-content-container p {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}

.large-card-content-container a {
  color: #125589;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  margin-top: 65px;
}

.small-card-content-container a {
  color: #125589;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  margin-top: auto;
}

.filter-categories-na-midia {
  padding: 3vh 10vw;
}

.filter-categories-na-midia-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-categories-na-midia-header h6 {
  font-weight: 600;
  font-size: 16px;
  color: #495057;
}

.filter-categories-na-midia-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.filter-categories-na-midia-buttons button {
  font-weight: 500;
  font-size: 16px;
  color: #212529;
  background-color: transparent;
  border: 1px solid #CED4DA;
  padding: 5px 10px;
  border-radius: 100px;
  transition: .3s;
}

.filter-categories-na-midia-buttons button:hover {
  background-color: #f8f9fa;
}

.other-news-na-midia-container {
  padding: 0 10vw;
}

.other-news-na-midia-title-container {
  margin-bottom: 40px;
}

.other-news-na-midia-title-container h2 {
  font-weight: 400;
  font-size: 28px;
  color: #468649;
}

.other-news-na-midia-card {
  /* width: 390px; */
  width: 31%;
  height: 580px;
  border: 1px solid #CED4DA;
  border-radius: 20px;
  margin-top: 3vh;
}

.other-news-na-midia-card-image-container {
  width: 100%;
  height: 235px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
}

/* .other-news-na-midia-card-content-container {
  padding: 30px;
} */

.other-news-na-midia-cards-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3%;
}

.other-news-na-midia-card-content-container {
  padding: 30px;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.other-news-na-midia-card-content-container h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  margin: 10px 0 15px;
}

.other-news-na-midia-card-content-container p {
  font-size: 12px;
  font-weight: 400;
  color: #000000;  
}

.other-news-na-midia-card-content-container a {
  color: #125589;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  margin-top: auto;
}

.other-news-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 3vh;
}

.press-na-midia-container {
  padding: 10vh 10vw;
  background-color: #DEE2E6;
  display: flex;
  align-items: center;
}

.na-midia-active {
  background-color: #dddddd !important;
}

.hidden-na-midia {
  display: none;
}

#na-midia-search-container {
  padding: 3vh 10vw;
}

/* Na midia Responsive */
@media only screen and (max-width: 1200px) {
  .large-card-content-container h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 992px) {
  .top-na-midia-container,
  .cards-destaques-na-midia,
  .filter-categories-na-midia,
  #na-midia-search-container {
    padding: 3vh 5vw;
  }

  .other-news-na-midia-container {
    padding: 0 5vw;
  }

  .large-card-content-container {
    padding: 15px;
  }

  .cards-destaques-na-midia {
    gap: 30px;
  }

  .small-cards-container-na-midia {
    width: 55%;
  }

  .small-cards-container-na-midia {
    gap: 30px;
  }

  .other-news-na-midia-card-content-container h4 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 850px) {
  .top-na-midia-container,
  .cards-destaques-na-midia {
    padding: 3vh 5vw;
  }

  .small-card-na-midia {
    height: 400px;
  }

  .small-card-na-midia a {
    margin-top: 65px;
  }

  .large-card-content-container {
    padding: 15px;
  }

  .large-card-content-container h2 {
    font-size: 18px;
  }

  .large-card-content-container p {
    display: none;
  }

  .large-card-image-container {
    height: 200px;
  }

  .cards-destaques-na-midia {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .large-card-container-na-midia,
  .small-cards-container-na-midia {
    width: 100%;
  }
  

  .small-cards-container-na-midia {
    gap: 30px;
  }

  .top-na-midia-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-container-midia {
    width: 100%;
  }

  .top-na-midia-container h1 {
    font-size: 38px;
  }

  .filter-categories-na-midia-buttons {
    justify-content: center;
  }

  .other-news-na-midia-cards-container {
    flex-direction: column;
    gap: 30px;
  }

  .other-news-na-midia-card {
    width: 100%;
  }

  .other-news-na-midia-card {
    height: auto;
  }

  .other-news-na-midia-card-content-container a {
    margin-top: 60px;
  }
}

.title-news-container {
  padding: 0 10vw;
}

.title-news-container h1 {
  font-weight: 700;
  font-size: 40px;
  color: #0D3D63;
}

.title-news-container p {
  font-weight: 400;
  font-size: 18px;
  color: #555555;
  margin-top: 25px;
}

.top-news-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 435px;
}

.top-news-image-container {
  padding: 3vh 0;
}

.news-sub-image-content {
  padding: 0 10vw;
  display: flex;
  align-items: center;
  gap: 25px;
}

.news-publish {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-publish p, .news-date p {
  font-weight: 500;
  font-size: 16px;
  color: #468649;
}

.news-category p {
  font-weight: 500;
  font-size: 16px;
  color: #468649;
  text-transform: uppercase;
}

.news-content-container {
  padding: 3vh 10vw;
}

.news-content-container p {
  font-weight: 500;
  font-size: 16px;
  color: #06223A;
}

.news-categories {
  padding: 3vh 10vw;
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-categories-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-categories-subtitle p {
  font-weight: 600;
  font-size: 14px;
  color: #06223A;
}

.news-categories-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.news-category-name {
  font-weight: 500;
  font-size: 16px;
  color: #212529;
  background-color: transparent;
  border: 1px solid #CED4DA;
  padding: 5px 10px;
  border-radius: 100px;
  transition: .3s;
}

.news-category-name:hover {
  background-color: #f8f9fa;
}

.related-news {
  padding: 80px 10vw;
  background-color: #E4E4E4;
}

.related-news-title-container h2 {
  color: #125589;
  font-weight: 700;
  font-size: 40px;
}

.related-news-cards-container {
  display: flex;
  align-items: center;
  justify-content: space-between;  
  margin-top: 60px;
  gap: 10px;
}

.related-news-card {
  border: 1px solid #125589;
  border-radius: 25px;
  background-color: transparent;
  padding: 20px;
  width: 380px;
  height: 450px;
}

.related-news-card-image-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 240px;
  border-radius: 20px;
}

.related-news-card-content {
  height: 100%;
}

.related-news-card-content p {
  font-weight: 400;
  color: #000000;
  font-size: 12px;
  margin: 10px 0;
}

.related-news-card-content h3 {
  font-weight: 700;
  color: #000000;
  font-size: 20px;  
}

.related-news-card-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #125589;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  height: 20%;
}

/* News responsive */
@media only screen and (max-width: 1200px) {
  .related-news-card-image-container {
    height: 200px;
  }
}

@media only screen and (max-width: 992px) {
  .title-news-container,
  .news-sub-image-content {
    padding: 0 5vw;
  }

  .related-news {
    padding: 80px 5vw;
  }

  .title-news-container h1 {
    font-size: 30px;
  }

  .news-category p {
    display: none;
  }

  .news-sub-image-content {
    justify-content: center;
  }

  .news-content-container {
    padding: 3vh 15vw;
    text-align: justify;
  }

  .news-categories {
    padding: 3vh 15vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
  }
}

@media only screen and (max-width: 850px) {
  .related-news-cards-container {
    flex-direction: column;
    gap: 30px;
  }

  .related-news-card {
    width: 100%;
  }

  .related-news-card-image-container {
    height: 240px;
  }

  .related-news-card-content a {
    height: 35%;
  }
}

@media only screen and (max-width: 750px) {
  .news-sub-image-content {
    gap: 0;
    justify-content: space-between;
  }

  .news-publish p,
  .news-date p {
    font-size: 12px;
  }

  .news-content-container {
    padding: 3vh 10vw;
    text-align: justify;
  }

  .news-categories {
    padding: 3vh 10vw;
  }

  .related-news-card-content a {
    height: 30%;
  }
}

/* Bela resolução */
@media only screen and (min-width: 1600px) {
  .top-section {
    height: 960px;
    -webkit-background-size: 100% 960px;
    -moz-background-size: 100% 960px;
    -o-background-size: 100% 960px;
    background-size: 100% 960px;
  }

  .banner-images-container {
    height: 960px;
  }

  .banner-outter-container,
  .compliance-header-container,
  .top-na-midia-container,
  .cards-destaques-na-midia,
  .filter-categories-na-midia,
  #na-midia-search-container {
    padding: 3vh 240px;
  }

  .press-container,
  .title-news-container,
  .news-sub-image-content {
    padding: 0 240px;
  }

  .other-news-na-midia-container {
    padding: 0 240px;
  }

  .header-container {
    padding: 58px 240px;
  }

  .men {
    width: 800px;
  }

  .presentation-section {
    margin: 112px 0;
    padding: 0 240px;
  }

  .presentation-section-row {
    gap: 46px;
  }

  .presentation-section-row:nth-child(2) {
    margin-top: 46px;
  }

  .sub-presentation-section {
    padding: 150px 240px;
  }

  .career-section {
    padding: 1vh 240px;
    gap: 80px;
  }

  .career-section-content {
    width: 570px;
  }

  .talk-to-specialist-form-title {
    font-size: 28px;
  }

  .talk-to-specialist-form-container {
    width: 700px;
  }

  .product-modal-side-container img:first-of-type {
    margin-bottom: 300px;
    width: 500px;
  }

  .product-modal-side-container {
    width: 45%;
  }

  .product-modal-side-container img:last-of-type {
    width: 500px;
  }

  .product-info-container {
    padding: 10vh 10vw;
  }
  
  .product-info-content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .product-info-item {
    max-width: 350px;  
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .product-info-item h4 {
    color: #475151;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .product-info-item p {
    display: flex;
    align-items: center;  
    gap: 8px;
    font-style: italic;
    color: #666;
  }
  
  .product-info-item p img {
    align-self: baseline;
  }

  .top-footer {
    justify-content: flex-start;
    gap: 5vw;
  }

  .nitro-social {
    margin-left: auto;
  }

  .new-linha-product-item-description-container {
    gap: 20px;
  }

  .linha-products-section,
  .product-benefits-cointainer {
    padding: 10vh 240px;
  }

  .sub-header-container {
    padding: 3vh 240px;
  }

  .banner-outter-container-single-product {
    padding: 3vh 240px 15vh;
  }

  .new-linha-product-item-image-container img {
    width: 700px;
  }

  .compliance-normas {
    padding: 165px 240px;
  }

  .compliace-normas-left {
    padding-left: 240px !important;
  }

  .compliace-normas-right {
    padding-right: 240px !important;
  }

  .news-content-container,
  .news-categories {
    padding: 3vh 240px;
  }

  .related-news {
    padding: 80px 240px;
  }

  .related-news-card {
    width: 450px;
    height: 500px;
  }
  
  .related-news-card-content a {
    height: 45%;
  }

  .our-tech-container {
    padding: 128px 240px;
  }
}