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

/* AmsiPro Bold */
@font-face {
   font-family: "AmsiPro";
   src: url("../css/fonts/AmsiPro-Bold.ttf") format("truetype");
   font-weight: 700;
   font-style: normal;
}

/* AmsiPro SemiBold */
@font-face {
   font-family: "AmsiPro";
   src: url("../css/fonts/AmsiPro-SemiBold.ttf") format("truetype");
   font-weight: 600; /* SemiBold geralmente é representado pelo peso 600 */
   font-style: normal;
}

/* AmsiPro Light */
@font-face {
   font-family: "AmsiPro";
   src: url("../css/fonts/AmsiPro-Light.ttf") format("truetype");
   font-weight: 300; /* Light geralmente é representado pelo peso 300 */
   font-style: normal;
}

/* AmsiPro Light */
@font-face {
   font-family: "AmsiPro";
   src: url("../css/fonts/AmsiPro-XLight.ttf") format("truetype");
   font-weight: 100;
   font-style: normal;
}

/* AmsiPro Light */
@font-face {
   font-family: "AmsiPro";
   src: url("../css/fonts/AmsiProCond-Thin.ttf") format("truetype");
   font-weight: 200;
   font-style: normal;
}

:root {
   /* Colors */

   --primary: #4a8c9c;
   --primary-40: rgba(74, 140, 156, 0.4);
   --primary-80: rgba(74, 140, 156, 0.8);
   --secondary: #1c546c;
   --tertiary: #bfeaee;
   --bgh: #9bc761;
   --green: #18d26e;
   --cdetail: #9bbcc2;
   --fc: #444444;
   --border: #282828;
   --fcsecondary: #343a40;
   --primaryfc: #353535;
   --fcs: #4f4f4f;
   --black: #000000;
   --white: #ffffff;
   --section: rgb(191, 234, 238, 0.3);
   --faqbg: rgb(191, 234, 238, 0.2);
   --white-sec: #efefef;
   --white-tt: #f4f4f4;
   --whc: #f9f9f9;
   --gray: #9b9b9b;
   --bg: #0f0f0f;
   --tbbg: #0c202b;

   /* typography */

   /* --ff-primary: "Poppins", sans-serif; */
   --ff-secondary: "Open Sans", sans-serif;
   --ff-tertiary: "Raleway", sans-serif;

   --ff-primary: "AmsiPro", Arial, sans-serif;

   --fs-1: 2rem;
   --fs-2: calc(1.813rem + 1vw);
   --fs-3: calc(1.313rem + 1vw);
   --fs-4: 1.4rem;
   --fs-5: 1rem;
   --fs-6: 0.813rem;
   --fs-7: 0.75rem;

   --fw-400: 400;
   --fw-700: 700;

   /* transition */

   --transition-1: 0.25s ease-in-out;
   --transition-2: 0.5s ease-in-out;

   /* spacing */

   --section-padding: 80px;

   /* radius */

   --radius-4: 4px;
   --radius-12: 12px;
}

body {
   font-family: var(--ff-secondary);
   color: var(--fc);
   background-color: #f4f4f4;
   width: 100%;
}

a {
   text-decoration: none;
   color: var(--primary);
}

a:hover {
   color: var(--secondary);
   text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--ff-tertiary);
}

/* Back to top button */

.back-to-top {
   position: fixed;
   visibility: hidden;
   opacity: 0;
   right: 15px;
   bottom: 15px;
   z-index: 996;
   background: var(--primary);
   width: 40px;
   height: 40px;
   border-radius: 50px;
   transition: all 0.4s;
}

.back-to-top i {
   font-size: 28px;
   color: var(--white);
   line-height: 0;
}

.back-to-top:hover {
   background: var(--secondary);
   color: var(--white);
}

.back-to-top.active {
   visibility: visible;
   opacity: 1;
}

/* Disable AOS delay on mobile */

@media screen and (max-width: 768px) {
   [data-aos-delay] {
      transition-delay: 0 !important;
   }
}

/* Top Bar */

#topbar {
   padding: 8px 0;
   font-size: 14px;
   color: var(--gray);
   background: #000000;
   opacity: 0.9;
}

#topbar .contact-info i {
   font-style: normal;
   color: var(--primary);
}

#topbar .contact-info i a,
#topbar .contact-info i span {
   padding-left: 5px;
   color: var(--white);
}

#topbar .contact-info i a {
   line-height: 0;
   transition: 0.3s;
}

#topbar .contact-info i a:hover {
   color: var(--primary);
}

#topbar .social-links a {
   color: var(--gray);
   line-height: 0;
   transition: 0.3s;
   margin-left: 10px;
}

#topbar .social-links a:hover {
   color: var(--white);
}

#top-phone {
   margin-left: 24px;
}

/* Header */

#header {
   height: 80px;
   transition: all 0.5s;
   z-index: 997;
   transition: all 0.5s;
   background: var(--tbbg);
}

#header .logo img {
   padding: 0;
   margin: 0;
   max-height: 60px;
}

.scrolled-offset {
   margin-top: 70px;
}

/*** Navigation Menu ***/

/* Desktop Navigation */

.navbar {
   padding: 0;
}

.navbar ul {
   margin: 0;
   padding: 0;
   display: flex;
   list-style: none;
   align-items: center;
}

.navbar li {
   position: relative;
}

.navbar a,
.navbar a:focus {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 0 10px 30px;
   /* font-family: var(--ff-primary); */
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 100;

   font-size: 17px;
   /* font-weight: 600; */
   color: var(--white);
   /* text-transform: uppercase; */
   white-space: nowrap;
   transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
   font-size: 12px;
   line-height: 0;
   margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
   color: var(--primary);
}

.navbar .getstarted,
.navbar .getstarted:focus {
   background: var(--primary);
   padding: 8px 20px;
   margin-left: 30px;
   border-radius: 4px;
   color: var(--white);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
   color: var(--white);
   background: var(--bgh);
}

.navbar .dropdown ul {
   display: block;
   position: absolute;
   left: 14px;
   top: calc(100% + 30px);
   margin: 0;
   padding: 10px 0;
   z-index: 99;
   opacity: 0;
   visibility: hidden;
   background: var(--white);
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
   transition: 0.3s;
   border-radius: 4px;
}

.navbar .dropdown ul li {
   min-width: 200px;
}

.navbar .dropdown ul a {
   padding: 10px 20px;
   font-size: 14px;
   font-weight: 500;
   text-transform: none;
   color: var(--primaryfc);
}

.navbar .dropdown ul a i {
   font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
   color: var(--primary);
}

.navbar .dropdown:hover > ul {
   opacity: 1;
   top: 100%;
   visibility: visible;
}

.navbar .dropdown .dropdown ul {
   top: 0;
   left: calc(100% - 30px);
   visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
   opacity: 1;
   top: 0;
   left: 100%;
   visibility: visible;
}

@media (max-width: 1366px) {
   .navbar .dropdown .dropdown ul {
      left: -90%;
   }

   .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
   }
}

/* Mobile Navigation */
.mobile-nav-toggle {
   color: var(--white);
   font-size: 28px;
   cursor: pointer;
   display: none;
   line-height: 0;
   transition: 0.5s;
}

@media (max-width: 991px) {
   .mobile-nav-toggle {
      display: block;
   }

   .navbar ul {
      display: none;
   }
}

.navbar-mobile {
   position: fixed;
   overflow: hidden;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
   background: rgba(28, 28, 28, 0.9);
   transition: 0.3s;
   z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
   position: absolute;
   top: 15px;
   right: 15px;
}

.navbar-mobile ul {
   display: block;
   position: absolute;
   top: 55px;
   right: 15px;
   bottom: 15px;
   left: 15px;
   padding: 10px 0;
   border-radius: 8px;
   background-color: var(--white);
   overflow-y: auto;
   transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
   padding: 10px 20px;
   font-size: 15px;
   color: var(--primaryfc);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
   color: var(--primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
   margin: 15px;
}

.navbar-mobile .dropdown ul {
   position: static;
   display: none;
   margin: 10px 20px;
   padding: 10px 0;
   z-index: 99;
   opacity: 1;
   visibility: visible;
   background: var(--white);
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
   min-width: 200px;
   border: 1px red solid;
}

.navbar-mobile .dropdown ul a {
   padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
   font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
   color: var(--primary);
}

.navbar-mobile .dropdown > .dropdown-active {
   display: block;
}

/* Hero Section */

#hero {
   width: 100%;
   height: 60vh;
   /* background: url("../img/hero-bg.jpg") top center; */
   background: url("../img/capa.png") center left no-repeat;
   background-size: cover;
   position: relative;
   background-position-x: left;
}

#hero:before {
   content: "";
   background: rgba(0, 0, 0, 0.7);
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
}

#hero-contact {
   width: 100%;
   height: 40vh;
   background: url("../img/bg_contact.png") top center;
   background-size: cover;
   position: relative;
}

#hero-contact:before {
   content: "";
   background: rgba(0, 0, 0, 0.7);
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
}

#hero-catalogos {
   width: 100%;
   height: 40vh;
   background: url("../img/bg_catalogos.png") top center;
   background-size: cover;
   position: relative;
}

#hero-catalogos:before {
   content: "";
   background: rgba(0, 0, 0, 0.7);
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
}

.hero-container {
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   text-align: left !important;
   padding: 0 15px;
   /* border: 1px red solid; */
}

.start-home {
   width: 100%;
   padding-left: 35px;
}

.start-home h1 {
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 600; /* SemiBold */
   letter-spacing: 1px;
}

.start-home h2 {
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 100;
   font-size: 1.1rem !important;
   padding-bottom: 5px;
   line-height: 2rem;
   letter-spacing: 0.5px;
}

#hero h1,
#hero-contact h1,
#hero-catalogos h1 {
   margin: 0 0 10px 0;
   font-size: 48px;
   font-weight: 700;
   line-height: 56px;
   color: var(--white);
}

#hero h2,
#hero-contact h2,
#hero-catalogos h2 {
   color: #eee;
   margin-bottom: 50px;
   font-size: 24px;
}

#hero .btn-get-started {
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 100;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 5px 22px 8px 22px;
   align-content: center;
   border-radius: 50px;
   transition: 0.5s;
   margin: 10px;
   border: 2px solid var(--primary);
   color: var(--white);
   text-align: center;
}

#hero .btn-get-started:hover {
   background: var(--primary);
}

@media screen and (max-width: 768px) {
   #hero {
      height: 100vh;
   }

   #hero {
      font-size: 28px;
      line-height: 36px;
   }

   .hero-container h1 {
      font-size: 2rem !important;
      line-height: 2.5rem !important;
   }

   .hero-container-import h1 {
      font-size: 1.7rem !important;
      line-height: 2rem;
   }

   .hero-container-import h2 {
      font-size: 1rem !important;
      line-height: 1.5rem !important;
      text-align: center;
   }

   #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
   }

   /* #hero h1,
   #hero-contact h1,
   #hero-catalogos h1 {
      margin: 0 0 10px 0;
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      color: var(--white);
   } */
}

/* Sections General */

section {
   padding: 55px 0;
   overflow: hidden;
}

.section-title {
   text-align: center;
   padding-bottom: 30px;
}

.section-title h2 {
   font-size: 15px;
   letter-spacing: 3px;
   font-family: "AmsiPro";
   font-weight: 300;
   padding: 8px 20px;
   margin: 0;
   /* background: var(--section); */
   /* color: var(--primary); */
   display: inline-block;
   text-transform: uppercase;
   border-radius: 50px;
}

.section-title h3 {
   margin: 20px 0 0 0;
   font-size: 32px;
   font-family: "AmsiPro";
   font-weight: 700;
}

.section-title h3 span {
   color: var(--primary);
}

.section-title p {
   font-family: "AmsiPro";
   margin: 15px auto 0 auto;
   font-weight: 600;
}

@media (min-width: 1024px) {
   .section-title p {
      width: 55%;
   }
}

/* About */

/* .about {
   margin-top: 1.5rem;
} */

.about .box-heading h4 {
   font-size: 15px;
   letter-spacing: 1px;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
   display: inline-block;
   text-transform: uppercase;
   margin-bottom: 10px;
}

.box-contact {
   display: flex;
   width: 89%;
   padding: 0;

   /* border: 1px red solid; */
}

.box-contact h4 {
   font-size: 13px;
   letter-spacing: 1px;
   font-weight: 700;
   padding: 8px 20px;
   background: var(--section);
   color: var(--primary);
   text-transform: uppercase;
   border-radius: 50px;
}

@media screen and (max-width: 576px) {
   .distributor {
      width: 100% !important;
      padding: 0px !important;
   }

   .input-checkbox label {
      font-size: 13px;
   }

   .link-industrias a {
      font-size: 14px !important;
   }

   .chose-interest {
      font-size: 14px !important;
   }

   .label-documentos label {
      font-size: 14px !important;
   }

   .input-checkbox {
      width: 100% !important;
   }

   .box-body {
      padding: 15px !important;
   }

   .input-distributor {
      width: 100% !important;
   }

   .mobile {
      width: 100% !important;
   }

   .box-contact {
      width: 100%;
      padding-left: 15px;
   }

   #portfolio-info {
      width: 95%;
      padding-left: 2 !important;
      padding-right: 8px !important;
   }

   #portfolio-info h6,
   p,
   li {
      font-size: 14px;
   }

   #portfolio-info h3 {
      font-size: 19px;
      font-weight: bold;
   }

   .details-product {
      width: 94%;
      margin-top: 5px;
      padding-bottom: 10px;
      border-bottom: 1px solid #939292;
      /* border: 3px red solid; */
   }

   .portfolio-details {
      width: 95% !important;
      /* border: 1px red solid; */
   }

   .portfolio-details .portfolio-description {
      width: 90%;
      padding-top: 20px;
      /* border: 1px red solid; */
   }

   #hero-catalogos h1 {
      font-size: 2rem;
   }

   #hero-catalogos h2 {
      font-size: 1.2rem;
   }

   #hero {
      background: url("../img/capa_v.png") top center no-repeat;
      background-size: cover;
   }

   .hero-mobile {
      height: 620px !important;
   }
}

@media screen and (max-width: 390px) {
   .hero-mobile {
      height: 560px !important;
   }
}

/* Distributor Profile */

.distributor {
   width: 90%;
   display: flex;
   /* border: 1px red solid; */
}

.formulario {
   justify-content: space-between;
   border: 1px gray solid;
   width: 100%;
   padding: 20px;
   border-radius: 10px;
   display: flex;
   flex-wrap: wrap;
}

.contact-section-1 {
   display: flex;
   width: 100%;
   flex-wrap: wrap;
   justify-content: space-between;
}

.form-select:hover {
   cursor: pointer;
}

.contact-section {
   width: 100%;
}

.distributor-checkbox {
   width: 100%;
   display: flex;
   flex-wrap: wrap;
   padding: 20px;
   justify-content: space-between;
   margin-top: 20px;
   border: 1px gray solid;
   border-radius: 10px;
}

.box-body {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 15px;
   width: 100%;
   margin-top: 20px;
}

.distributor-label {
   font-weight: bold;
   font-size: 0.9em;
   margin-bottom: 5px;
   margin-left: 5px;
}

.chose-interest {
   padding-right: 10px;
   font-weight: bold;
   font-size: 1em;
   margin-bottom: 10px;
}

.input-distributor {
   display: flex;
   flex-direction: column;
   position: relative;
   width: 49%;
   padding: 0;
}

.input-checkbox {
   display: flex;
   flex-direction: column;
   position: relative;
   width: 50%;
   padding: 0;
}

.send-contact {
   height: 40px;
   border: 0;
   background: none;
   font-weight: bold;
   padding: 0 20px;
   width: 100px;
   background: var(--primary);
   color: #fff;
   transition: 0.3s;
   border-radius: 25px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
   font-size: 0.8rem;
}

.send-contact:hover {
   background: var(--secondary);
   color: #fff;
}

.bx-error-circle {
   display: none;
   color: #ff0000;
   font-size: 1.1rem;
   line-height: 24px;
   font-weight: bold;
}

.required i {
   display: block;
   color: #ff0000;
   font-size: 1.1rem;
   line-height: 24px;
   font-weight: bold;
   margin-left: 5px;
}

legend {
   width: auto;
   padding-right: 10px;
}

.about .box-heading h3 {
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 700;
   font-size: 28px;
   color: var(--primaryfc);
   margin-bottom: 15px;
}

.about .icon-box {
   margin-top: 40px;
}

.about .icon-box .icon {
   float: left;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 64px;
   height: 64px;
   border: 2px solid var(--tertiary);
   border-radius: 50px;
   transition: 0.5s;
}

.about .icon-box .icon i {
   color: var(--primary);
   font-size: 32px;
}

.about .icon-box:hover .icon {
   background: var(--primary);
   border-color: var(--primary);
}

.about .icon-box:hover .icon i {
   color: var(--white);
}

.about .icon-box .title {
   margin-left: 85px;
   font-weight: 700;
   margin-bottom: 10px;
   font-size: 18px;
}

.about .icon-box .title a {
   color: var(--fcsecondary);
   transition: 0.3s;
}

.about .icon-box .title a:hover {
   color: var(--primary);
}

.about .icon-box .description {
   margin-left: 85px;
   line-height: 24px;
   font-size: 14px;
}

.about .image-about {
   background: url("../img/mapa.png") center top no-repeat;
   background-size: contain;
   min-height: 400px;
   height: 570px;
}

.contact .video-box {
   background: url("../img/capav.png") center center no-repeat;
   background-size: cover;
   height: 500px;
   object-fit: scale-down;
}

.about .play-btn {
   width: 94px;
   height: 94px;
   background: radial-gradient(var(--primary) 50%, var(--primary-40) 52%);
   border-radius: 50%;
   display: block;
   position: absolute;
   left: calc(50% - 47px);
   top: calc(50% - 47px);
   overflow: hidden;
}

.about .play-btn::after {
   content: "";
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translateX(-40%) translateY(-50%);
   width: 0;
   height: 0;
   border-top: 10px solid transparent;
   border-bottom: 10px solid transparent;
   border-left: 15px solid var(--white);
   z-index: 100;
   transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
   content: "";
   position: absolute;
   width: 120px;
   height: 120px;
   animation-delay: 0s;
   animation: pulsate-btn 2s;
   animation-direction: forwards;
   animation-iteration-count: infinite;
   animation-timing-function: steps;
   opacity: 1;
   border-radius: 50%;
   border: 5px solid var(--primary-80);
   top: -15%;
   left: -15%;
   background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
   border-left: 15px solid var(--primary);
   transform: scale(20);
}

.about .play-btn:hover::before {
   content: "";
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translateX(-40%) translateY(-50%);
   width: 0;
   height: 0;
   border: none;
   border-top: 10px solid transparent;
   border-bottom: 10px solid transparent;
   border-left: 15px solid var(--white);
   z-index: 200;
   animation: none;
   border-radius: 0;
}

@keyframes pulsate-btn {
   0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
   }

   100% {
      transform: scale(1, 1);
      opacity: 0;
   }
}

@media screen and (max-width: 576px) {
   .about .image-about {
      min-height: 300px;
      height: 350px;
      margin-bottom: 15px;
   }

   .about {
      /* border: 1px blue solid; */
      padding-bottom: 0;
   }
}

@media screen and (max-width: 390px) {
   .about .image-about {
      min-height: 200px;
      height: 300px;
      margin-bottom: 15px;
   }
}

/* Why Us */

.why-us {
   margin: 40px 0;
}

.why-us .box {
   padding: 50px 30px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
   transition: all ease-in-out 0.3s;
   border-radius: 30px;
   text-align: center;
   width: 350px;
}

.why-us .box span {
   display: block;
   font-size: 28px;
   font-weight: 700;
   color: var(--primary);
}

.why-us .box h4 {
   font-family: "AmsiPro", Arial, sans-serif;
   font-size: 24px;
   font-weight: 600;
   padding: 0;
   margin: 20px 0;
   color: var(--primaryfc);
}

.why-us .box p {
   font-family: "AmsiPro", Arial, sans-serif;
   color: #919191;
   font-size: 15px;
   margin: 0;
   padding: 0;
}

.box-box {
   gap: 15px;
}

.why-us .box:hover {
   background: var(--primary);
   scale: 1.05;
   box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
   color: var(--white);
}

/* Counts */

.counts {
   display: flex;
   justify-content: center;
   background: var(--white);
   padding: 30px 10px;
}

.counts .counters {
   padding: 20px 10px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
   transition: all ease-in-out 0.3s;
   border-radius: 10px;
   max-width: 360px;
}

.counts .counters span {
   font-size: 40px;
   color: var(--primary);
}

.counts .counters p {
   padding: 0;
   margin: 10px 0 20px 0;
   font-family: var(--ff-tertiary);
   font-size: 14px;
}

/* Cta */

.cta-3 {
   background-image: url("../img/bg3.png");
   background-size: cover;
   padding: 40px 0 20px 0;
}

.cta-3 h4 {
   color: var(--primary);
   font-size: 15px;
   letter-spacing: 3px;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
   text-transform: uppercase;
}

.cta-3 p {
   color: var(--white);
   margin: 10px 0 30px 0;
   letter-spacing: 0.7px;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
   line-height: 20px;
}

.cta-images img {
   height: 50px;
}

.cta {
   display: flex;
   background: no-repeat right url("../img/container2.png");
   background-size: contain;
   background-color: var(--tbbg);
   padding: 60px 0;
   height: 450px;
   background-position: calc(100% - 10px) center;
   justify-content: left !important;
   justify-items: left;
}

.cta-text {
   width: 50%;
   margin-top: 40px;
   margin-left: 80px;
}

@media (min-width: 1600px) {
   .cta-text {
      /* max-width: 45%; */
      margin-left: 250px;
   }
}

#portfolio {
   background-color: var(--tbbg);
}

#portfolio h2 {
   color: #fff;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
}

#portfolio h3 {
   color: #fff;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 600;
   font-size: 28px;
}

#portfolio p {
   color: #fff;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
   letter-spacing: 0.7px;
}

.cta-products {
   display: flex;
   background: repeat right url("../img/bg_products.png");
   background-size: contain;
   padding: 60px 0;
   background-position: calc(100% - 10px) center;
   justify-content: left !important;
   justify-items: left;
   /* margin-top: -50px; */
   background-position: calc(100% - 10px) center;
   justify-content: left !important;
   justify-items: left;
}

.text-products h3 {
   color: var(--white);
   font-size: 2.4rem;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 700;
   margin-bottom: 20px;
}

.text-products p {
   color: var(--white);
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
   margin-bottom: 40px;
}

.text-products a {
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 600;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 8px 28px;
   border-radius: 25px;
   transition: 0.5s;
   margin-top: 10px;
   border: 2px solid var(--primary);
   color: var(--white);
}

.text-products a:hover {
   background: var(--primary);
   border: 2px solid var(--primary);
}

.cta h3 {
   color: var(--white);
   font-size: 2.4rem;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 700;
   margin-bottom: 20px;
}

.cta p {
   color: var(--white);
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
   margin-bottom: 40px;
}

.cta .cta-btn {
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 600;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 8px 28px;
   border-radius: 25px;
   transition: 0.5s;
   margin-top: 10px;
   border: 2px solid var(--primary);
   color: var(--white);
}

.cta .cta-btn:hover {
   background: var(--primary);
   border: 2px solid var(--primary);
}

/* Services */

.services .icon-box {
   border: 1px solid var(--primary-40);
   padding: 50px 25px;
   transition: all ease-in-out 0.3s;
   background: var(--white);
   border-radius: 30px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
   text-align: center;
   width: 350px;
}

.services .icon-box .icon {
   margin: 0 auto;
   width: 64px;
   height: 64px;
   /* background: var(--section); */
   /* border-radius: 50px; */
   /* border: 1px solid var(--tertiary); */
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
   color: #4a8c9c;
   font-size: 32px;
   transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 20px;
}

.services .icon-box h4 a {
   color: var(--primaryfc);
   transition: ease-in-out 0.3s;
}

.services .icon-box p {
   line-height: 24px;
   font-size: 14px;
   margin-bottom: 0;
}

.services .icon-box:hover {
   border-color: var(--white);
   box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
   color: var(--primary);
}

.services .icon-box:hover .icon {
   border-color: var(--primary);
}

/* Portfolio */

.portfolio .portfolio-item {
   margin-bottom: 30px;
   overflow: hidden;
}

.portfolio .portfolio-item img {
   position: relative;
   top: 0;
   transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
   opacity: 0;
   position: absolute;
   left: 15px;
   right: 15px;
   bottom: -50px;
   z-index: 3;
   transition: all ease-in-out 0.3s;
   background: var(--primary);
   padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
   font-size: 18px;
   color: var(--white);
   font-weight: 600;
}

.portfolio .portfolio-item:hover img {
   top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
   opacity: 1;
   bottom: 0;
}

/* PORTFOLIO DETAILS - START */

.portfolio-details-header {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   width: 87%;
   height: 35px;
   padding: 0 20px;
   /* border: 1px red solid; */
}

.portfolio-details-header-breadcrumbs {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   width: 85%;
   height: 85px;
   padding: 0;
}

.breadcrumbs .portfolio-details-header .breadcrumbs-links {
   display: flex;
   width: 100%;
   justify-content: left;
   align-items: center;
   height: 35px;
   line-height: 16px;
}

.breadcrumbs .portfolio-details-header-breadcrumbs .breadcrumbs-links {
   display: flex;
   flex-direction: column;
   justify-content: center;
   justify-items: center;
   /* border: 1px red solid; */
   padding: 0;
   line-height: 16px;
   height: 85px;
}

/* Area ocupada pelo detalhamento do produto (imagem e descrição) */
.portfolio-details {
   width: 85%;
   margin: -55px 0 0 0;
   background-color: #fff;
   box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
   border-radius: 15px;
   /* border: 1px rgb(57, 177, 199) solid; */
}

/* Area ocupada pela imagem e bullet de paginação */
.swiper {
   overflow: hidden;
   padding: 0;
   height: max(450px);
   /* border: 2px rgb(51, 0, 255) solid; */
}

/* DIV dos bullet de paginação */
.swiper-pagination {
   margin-top: 5px;
   position: relative;
   /* border: 1px rgb(255, 0, 225) solid; */
   padding-left: 10px;
   padding-right: 10px;
}

.swiper-wrapper {
   display: flex;
   width: 100%;
   height: max(400px);
   z-index: 1;
   transition-property: transform;
   box-sizing: border-box;
   /* border: 2px rgb(9, 255, 0) solid; */
}

.swiper-wrapper .swiper-slide img {
   height: 380px;
   width: 100%;
   object-fit: scale-down;
   /* border: 2px solid #ccc; */
   border-radius: 10px;
   /* border: 3px red solid; */
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background-color: var(--white);
   opacity: 1;
   border: 1px solid var(--primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
   background-color: var(--primary);
}

#portfolio-info {
   padding-left: 15px;
   margin-left: 20px;
}

.details-product {
   margin-top: 5px;
   padding-bottom: 10px;
   border-bottom: 1px solid #dddbdb;
   /* border: 3px red solid; */
}

.portfolio-details .portfolio-info h3 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 15px;
   padding-bottom: 15px;
}

#portfolio-info ul {
   list-style: none;
   padding: 0;
   font-size: 14px;
}

.portfolio-details .portfolio-description {
   padding-top: 20px;
   /* border: 1px red solid; */
}

.description-title {
   font-size: 16px;
   font-weight: bold;
   margin-bottom: 10px;
}

.portfolio-description p {
   margin-top: 10px;
   font-size: 14px;
   padding: 0;
   /* border: 1px red solid; */
}
/* PORTFOLIO DETAILS - END */

/* Container da Grid de Produtos */

.products-grid {
   width: 100%;
   /* border: 2px rgb(57, 177, 199) solid; */
   padding: 0;
}

.category {
   display: flex;
   flex-direction: row;
   justify-content: center;
   gap: 15px;
}

.filtrosprodutos {
   display: flex;
   flex-direction: row;
   justify-content: right;
   gap: 15px;
   width: 40%;
}

.filtrosprodutos select {
   width: 50%;
   padding: 2px;
   height: 26px;
   font-size: 13px;
   font-family: var(--ff-primary);
   border-radius: 5px;
}

.portfolio-container {
   display: flex;
   justify-content: center;
   /* border: 1px red solid; */
   padding: 20px;
   margin-top: 10px;
}

.portfolio-wrap {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 10px;
   width: 100%;
   padding: 20px 10px;
   /* border: 2px rgb(0, 255, 60) solid; */
   background-color: #fff;
   box-shadow: 0px 2px 8px rgba(55, 84, 102, 0.15);
   border-radius: 15px;
}

.produto {
   border: 2px solid #ccc;
   text-align: center;
   width: 19%;
   min-width: 170px;
   height: 290px;
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
   /* border: 2px rgb(0, 255, 60) solid; */
}

.produto:hover {
   scale: 1.05;
   transition: var(--transition-1);
}

.produto:hover a {
   font-weight: bold;
}

.produto a {
   font-size: 14px;
   font-weight: 400;
   text-decoration: none;
   color: #000;
}

.detail-category {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 30px;
   border-bottom: 1px solid #ccc;
   color: #fff;
   background: var(--primary);
}

.detail-category h6 {
   font-size: 14px;
   margin: 0;
}

.imgproduto {
   display: flex;
   flex-direction: column;
   justify-content: center;
   width: 100%;
   height: 179px;
   /* border: 1px red solid; */
   position: relative;
}

.imgproduto img {
   height: 92%;
   /* border: 1px red solid; */
   object-fit: scale-down;
}

.details-link {
   display: flex;
   position: relative;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   /* border-top: 0.8px solid #797676; */
   height: 55px;
   color: #000;
   padding: 0 10px;
}

.details-link p {
   height: auto;
   font-size: 13px;
   font-weight: 600;
   margin: 0 0 8px 0 !important;
   text-align: left;
   width: 100%;
   line-height: 16px;
}

.supplier-box {
   display: flex;
   height: 20px;
   justify-content: first baseline;
}

.supplier-box p {
   text-transform: uppercase;
   height: 20px;
   padding-left: 10px;
   font-size: 12px;
}

.bx-link-external {
   padding-left: 5px;
   padding-top: 5px;
   font-size: 14px;
}

.seeall {
   font-size: 13px;
   font-weight: bold;
}

/* F.A.Q */

/* .faq {
   background: var(--faqbg);
} */

/* .faq .section-title h2 {
   background: var(--section);
} */

.faq .faq-list {
   display: flex;
   justify-content: center;
   padding: 0 100px;
}

.faq .faq-list ul {
   padding: 0;
   list-style: none;
   width: 80%;
   margin-top: 30px;
}

.faq .faq-list li + li {
   margin-top: 15px;
}

.faq .faq-list li {
   padding: 10px 20px;
   background: var(--tbbg);
   border-radius: 15px;
   position: relative;
   margin-bottom: 25px;
}

.faq .faq-list li:hover {
   background: #2296a3;
}

.faq .faq-list a {
   display: block;
   position: relative;
   font-family: var(--ff-primary);
   font-size: 15px;
   line-height: 24px;

   padding: 0 30px;
   outline: none;
   cursor: pointer;
   margin-left: 10px;
   color: #fff !important;
}

.faq .faq-list .icon-help {
   font-size: 24px;
   position: absolute;
   right: 0;
   left: 20px;
   color: #fff;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
   font-size: 24px;
   position: absolute;
   right: 0;
   top: 0;
}

.faq .faq-list p {
   margin-bottom: 0;
   padding: 10px 0 0 0;
   color: #fff;
}

.faq .faq-list .icon-show {
   display: none;
}

.faq .faq-list a.collapsed {
   color: var(--fcsecondary);
}

.faq .faq-list a.collapsed:hover {
   color: var(--primary);
}

.faq .faq-list a.collapsed .icon-show {
   display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
   display: none;
}

@media (max-width: 1200px) {
   .faq .faq-list {
      padding: 0;
   }
}

/* Contact */

.contact {
   width: 100%;
   height: 730px;
   background: url("../img/bg_contato.png") center center no-repeat;
   background-size: cover;
   object-fit: scale-down;
   position: relative;
   color: #e5e5e5;
}

.contact h3 {
   color: #2296a3;
   font-weight: 600;
}

.row-form {
   margin-top: 40px;
}

.contact p {
   font-weight: 200;
   letter-spacing: 2px;
}

.contact h2 {
   /* font-weight: 200; */
   letter-spacing: 5px !important;
}

.contact-form input,
.contact-form textarea {
   margin-bottom: 10px;
   background-color: transparent;
   border-radius: 15px;
}

.contact .info {
   background: var(--white);
   padding: 20px 0 10px 20px;
   border-radius: 15px;
}

.contact .info i {
   font-size: 18px;
   color: var(--primary);
   float: left;
   width: 36px;
   height: 36px;
   background: var(--section);
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   transition: all 0.3s ease-in-out;
}

.contact .info h4 {
   padding: 0 0 0 60px;
   font-size: 22px;
   font-weight: 400;
   color: var(--primaryfc);
   margin-bottom: 4px;
}

.contact .info p {
   padding: 0 0 0 60px;
   font-size: 14px;
   color: #686868;
}

.contact .info .email,
.contact .info .phone {
   margin-top: 20px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
   background: var(--primary);
   color: var(--white);
}

.contact .contact-form button[type="submit"] {
   background: var(--primary);
   border: 0;
   padding: 10px 24px;
   color: var(--white);
   transition: 0.4s;
   border-radius: 50px;
}

.contact .contact-form button[type="submit"]:hover {
   background: var(--secondary);
}

@media screen and (max-width: 820px) {
   .text-products h3 {
      font-size: 1.5rem;
      font-weight: 600;
   }

   .text-products p {
      margin-bottom: 20px;
      font-size: 15px;
      padding: 0 10px;
   }

   .cta-products {
      padding: 20px 0 !important;
   }

   .contact {
      height: 750px;
      background: url("../img/bg_contato_t.png") center center no-repeat;
   }

   .contact p {
      margin-top: 40px;
      padding: 0 20px 0 20px;
      font-size: 16px;
   }

   .row-form {
      margin-top: -30px;
   }

   .faq .faq-list ul {
      width: 100%;
   }

   .cta-images img {
      max-width: 480px;
      object-fit: scale-down;
   }
}

@media screen and (max-width: 576px) {
   .contact {
      height: 750px;
      background: url("../img/bg_contato_v.png") center center no-repeat;
   }

   .contact p {
      margin-top: 30px;
      padding: 0 15px 0 15px;
      font-size: 16px;
   }

   .contact h3 {
      font-size: 28px;
   }

   .row-form {
      margin-top: -40px;
   }

   .contact-form input,
   .contact-form textarea {
      margin-bottom: 5px;
   }

   .contact .contact-form button[type="submit"] {
      background: var(--primary);
      border: 0;
      padding: 5px 15px;
      border-radius: 40px;
   }

   .cta-images img {
      max-width: 370px;
   }
}

@keyframes animate-loading {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

/* Breadcrumbs */

.breadcrumbs {
   display: flex;
   justify-content: center;
   background: var(--white-tt);
   padding: 0;
}

.breadcrumbs h2 {
   font-size: 20px;
   font-weight: 500;
   margin-top: 20px;
   color: var(--secondary);
   line-height: 15px;
   margin-bottom: 0;
}

.breadcrumbs ol {
   display: flex;
   flex-wrap: wrap;
   list-style: none;
   /* border: 1px blue solid; */
   padding: 0;
   margin: 0;
}

.breadcrumbs ol li + li {
   padding-left: 5px;
}

.breadcrumbs li {
   font-size: 13px;
}

.breadcrumbs ol li + li::before {
   display: inline-block;
   padding-right: 5px;
   color: var(--fcs);
   content: "/";
}

.container-details {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
   /* border: 3px red solid; */
}

.swiper-slide {
   display: flex;
   flex-shrink: 0;
   position: relative;
   transition-property: transform;
}

@media (max-width: 768px) {
   .breadcrumbs .d-flex {
      display: block !important;
   }

   .breadcrumbs ol {
      display: block;
   }

   .breadcrumbs ol li {
      display: inline-block;
   }
}

/* Footer */

#footer {
   font-size: 14px;
   background: var(--tbbg);
}

#footer .footer-newsletter {
   padding: 50px 0;
   background: #f3f5fa;
   text-align: center;
   font-size: 15px;
   color: #181818;
   position: relative;
}

#footer .footer-newsletter h3 {
   font-size: 32px;
   font-weight: 600;
}

#footer .footer-newsletter span {
   margin-top: 30px;
   position: relative;
   text-align: left;
   width: 100%;
   /* background: #fff; */
   border-radius: 10px 20px 20px 10px;
}

#footer .footer-newsletter span input[type="email"] {
   border: 0.5px #000 solid;
   padding: 4px 5px;
   width: 100%;
   height: 40px;
   border-radius: 10px 0 0 10px;
   padding: 5px 8px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
   /* border: 1px red solid; */
}

#footer .footer-newsletter span button[type="submit"] {
   position: relative;
   top: 0;
   right: 0;
   bottom: 0;
   height: 40px;
   border: 0;
   background: none;
   font-weight: bold;
   padding: 0 20px;
   background: var(--primary);
   color: #fff;
   transition: 0.3s;
   border-radius: 15px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
   left: -15px;
   font-size: 0.8rem;
}

#footer .footer-newsletter span button[type="submit"]:hover {
   background: var(--secondary);
}

#footer .footer-top {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   width: 100%;
   padding: 30px 50px 0 50px;
   background: #fff;
   height: 130px;
}

#footer .footer-top h4 {
   font-size: 16px;
   font-weight: bold;
   color: var(--primary);
   position: relative;
   padding-bottom: 12px;
}

.footer-links {
   width: auto;
   height: 70px;
}

#footer .footer-top .footer-links ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

#footer .footer-top .footer-links ul i {
   color: var(--primary);
   font-size: 12px;
   line-height: 1;
}

#footer .footer-top .footer-links ul li {
   padding: 5px 0;
   display: flex;
   align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
   padding-top: 0;
}

#footer .footer-top .footer-links ul a {
   color: #777777;
   transition: 0.3s;
   display: inline-block;
   line-height: 1;
}

.footer-bottom .social-links {
   margin-right: 100px;
}

.footer-bottom .social-links a {
   font-size: 16px;
   display: inline-block;
   background: var(--primary);
   color: #fff;
   line-height: 1;
   padding: 9px 0;
   border-radius: 50%;
   text-align: center;
   width: 36px;
   height: 36px;
   transition: 0.3s;
}

.footer-bottom .social-links a:hover {
   background: var(--secondary);
   border: none;
   color: #fff;
   text-decoration: none;
}

.footer-bottom {
   display: flex;
   height: 60px;
   justify-content: space-between;
   justify-items: center;
   align-items: center;
   color: #fff;
}

.logo-footer {
   display: flex;
   justify-content: center;
   width: auto;
   margin-left: 100px;
}

.logo-footer img {
   max-height: 40px;
}

.footer-top .container {
   width: 100%;
}

@media (max-width: 768px) {
   #footer .footer-bottom {
      padding-top: 20px;
      padding-bottom: 20px;
   }

   .logo-footer {
      margin-left: 65px;
   }

   #footer .copyright,
   #footer .credits {
      display: none;
   }

   #footer .footer-newsletter h3 {
      font-size: 15px;
   }

   /* #footer .footer-newsletter span input[type="email"] {
      width: 100vw !important;
      height: 40px;
   } */

   /* #footer .footer-newsletter span button[type="submit"] {
      left: -20px;
      padding: 0 8px;
      height: 40px;
      border-radius: 20px;
   } */

   #footer .footer-top {
      width: 100%;
      flex-direction: column;
      padding: 30px 50px 10px 30px;
      background: #fff;
      height: auto;
   }

   #footer .footer-top h4 {
      font-size: 14px;
   }

   .footer-bottom .social-links {
      margin-right: 65px;
   }
}

.btn-products {
   background: var(--primary);
   transition: 0.3s;
   color: #fff;
   padding: 10px !important;
}

.btn-products:hover {
   background: var(--secondary);
   color: #fff;
   font-weight: 600;
}

/* btn Whatsapp */

.btn-whatsapp {
   position: fixed;
   display: flex;
   left: 30px;
   bottom: 18px;
   z-index: 100;
}

.btn-whatsapp a {
   text-decoration: none;
   display: block;
}

.btn-whatsapp img {
   width: 45px;
}

@media (max-width: 575px) {
   #btn-whatsapp {
      left: 16px;
   }

   .btn-whatsapp {
      bottom: 35px;
   }
}

.btn-whatsapp a i {
   display: block;
}

/* Select Language */

.chooseLang {
   display: -webkit-box;
   display: -ms-flexbox;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   /* border: 1px red solid; */
}
.chooseLang div {
   height: 25px;
   position: relative;
   width: 90px;
}
.lang {
   cursor: pointer;
   display: block;
   height: 25px;
   width: 25px;
   position: absolute;
   opacity: 0;
   left: 30px;
   top: 0;
   -webkit-transition: 0.76s;
   -o-transition: 0.76s;
   transition: 0.76s;
}

.pt-lang {
   background-image: url(../../images/br.svg);
}
.open .pt-lang {
   left: -30px;
   opacity: 1;
}
.en-lang {
   background-image: url(../../images/en.svg);
}
.open .en-lang {
   left: 0;
   opacity: 1;
}
.es-lang {
   background-image: url(../../images/es.svg);
}
.open .es-lang {
   left: 30px;
   opacity: 1;
}
.chooseLang .chosen {
   opacity: 1;
   z-index: 1;
}

/* Ajustes Mobile */

@media screen and (max-width: 992px) {
   .portfolio-container {
      /* border: 1px red solid; */
      padding: 10px 5px;
   }

   .produto {
      width: 20% !important;
      min-width: 165px;
   }
}

@media screen and (max-width: 576px) {
   .contact-info {
      display: none !important;
   }

   .container {
      justify-content: space-between !important ;
   }

   .category select {
      width: 39% !important;
   }

   .produto {
      margin: 10px 0 10px 0;
      width: 49%;
      min-width: 49%;
   }

   .filtrosprodutos {
      width: 100% !important;
   }

   .social-links-mobile {
      display: none;
   }

   .portfolio-container {
      /* border: 1px red solid; */
      padding: 10px;
   }

   .portfolio-wrap {
      justify-content: center;
      flex-wrap: wrap;
      gap: 5px;
      padding-left: 5px;
      padding-right: 5px;
      width: 100vw !important;
      /* border: 2px rgb(0, 255, 60) solid !important; */
   }

   .btn-next {
      font-size: 13px !important;
   }

   .chooseLang div {
      height: 20px !important;
      width: 75px !important;
   }

   .lang {
      height: 20px !important;
      width: 20px !important;
      left: 40px;
   }

   .open .pt-lang {
      left: 25px;
   }

   .open .en-lang {
      left: 0;
   }

   .open .es-lang {
      left: 50px;
   }
}

/*** Carousel Clientes ***/
.vendor-carousel .owl-dots {
   margin-top: 15px;
   display: flex;
   align-items: flex-end;
   justify-content: center;
}

.vendor-carousel .owl-dot {
   position: relative;
   display: inline-block;
   margin: 0 5px;
   width: 10px;
   height: 10px;
   background: #dddddd;
   border-radius: 2px;
   transition: 0.5s;
}

.vendor-carousel .owl-dot.active {
   width: 30px;
   background: var(--primary);
}

.carousel {
   position: relative;
   justify-content: center;
   /* border: 1px red solid; */
}

.vendor-carousel {
   max-width: 800px;
   max-height: 320px;
}

.vendor-carousel img {
   max-width: 800px;
   max-height: 320px;
   object-fit: scale-down;
}

.carousel-link {
   margin-bottom: 30px;
}

.carousel-link button {
   border-radius: 10px;
   font-size: 14px;
   padding: 12px;
}

.box-heading {
   padding: 20px 10px 20px 40px;
   /* margin-top: -20px; */
   margin-left: 40px;
}

.box-heading p {
   text-align: normal;
   font-family: "AmsiPro", Arial, sans-serif;
   font-weight: 300;
}

.div-checker {
   border: 1px red solid;
}

.div-checker-blue {
   border: 1px blue solid;
}

/* SLIDER */

.image-slider {
   margin-top: 200px;
   position: relative;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 1200px;
   height: 312px;
   overflow: hidden;
   border-radius: 10px;
   box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
   background-color: #fff;
}

.image-slider .images {
   position: relative;
   width: 100%;
   /* height: 100%; */
}

.image-slider .images img {
   position: absolute;
   width: 100%;
   /* height: 100%; */
   object-fit: scale-down;
   opacity: 0;
   transform: scale(1.1);
   transition: all 500ms ease-in-out;
}

.image-slider .images img.active {
   opacity: 1;
   transform: scale(1);
}

.image-slider .back-btn,
.image-slider .next-btn {
   position: absolute;
   top: 0;
   width: 40px;
   height: 312px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   color: #fff;
   font-size: 30px;
   transition: all 300ms ease-in-out;
}

.image-slider .next-btn {
   right: 0;
}

.image-slider .back-btn:hover,
.image-slider .next-btn:hover {
   background-color: rgba(0, 0, 0, 0.5);
}

.image-slider .thumbnails {
   position: absolute;
   bottom: 5px;
   width: 100%;
   height: 60px;
   display: flex;
   justify-content: center;
   gap: 5px;
}

.image-slider .thumbnails img {
   width: 130px;
   cursor: pointer;
   border: 2px solid transparent;
   transition: all 300ms ease-in-out;
}

.image-slider .thumbnails img.active {
   border: 2px solid #000;
}

.image-slider .thumbnails img:hover {
   scale: 1.05;
}

@media screen and (max-width: 820px) {
   .image-slider {
      margin-top: 60px;
      margin-bottom: 50px;
      width: 100vw;
      height: 12vh;
   }

   .image-slider .thumbnails {
      display: none;
   }

   .image-slider .back-btn,
   .image-slider .next-btn {
      width: 15px;
      height: 12vh;
      font-size: 18px;
   }

   /* .cta {
      background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.9)), url("../img/bg_destaques.png") fixed center center;
      background-size: cover;
      padding: 20px 5px;
      width: 100%;
   } */

   .cta {
      display: flex;
      background: no-repeat right url("../img/container2.png");
      background-size: 60%;
      background-color: var(--tbbg);
      padding: 20px 0 !important;
      height: 350px;
      background-position: calc(100% - 10px) bottom;
      justify-content: center !important;
      /* justify-items: left; */
   }

   .cta-text {
      width: 100% !important;
      margin-top: 0;
      margin-left: 0;
      /* border: 1px red solid; */
      text-align: center;
   }

   .cta h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
   }

   .cta p {
      font-size: 13px;
      margin-bottom: 10px;
   }

   .cta .cta-btn {
      font-weight: 500;
      font-size: 12px;
      padding: 6px 8px;
      border-radius: 10px;
      margin-top: 8px;
      border: 1px solid var(--white);
   }

   .portfolio-details-header {
      width: 90%;
   }

   .breadcrumbs .portfolio-details-header .breadcrumbs-links {
      display: none;
   }

   .text-about {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-items: center;
      justify-content: center;
      padding: 0 !important;
      margin: 0 0 10px 0 !important;
   }

   .box-heading {
      display: flex;
      margin: 0;
      flex-direction: column;
      padding: 5px !important;
      text-align: justify;
      width: 90%;
   }

   .box-heading h4 {
      margin: 0 0 10px 0 !important;
   }

   .box-heading h3 {
      margin-top: 0;
   }

   .why-us .box {
      padding: 30px;
      width: 90%;
   }

   .services .icon-box {
      padding: 30px;
      width: 90%;
   }

   #hero h1 {
      margin-top: -150px;
   }

   .hero-container h1 {
      font-size: 35px;
   }

   .formulario {
      padding: 10px;
   }

   .distributor-checkbox {
      padding: 10px;
      border: none;
   }
}

@media screen and (max-width: 390px) {
   .image-slider {
      width: 99vw;
      height: 12.5vh;
   }

   .image-slider .back-btn,
   .image-slider .next-btn {
      height: 12.5vh;
   }
}

/* MATERIAIS */

.catalog-container {
   display: flex;
   width: 100%;
   /* border: 1px blue solid; */
   justify-content: center;
   justify-items: center;
   padding: 0 !important;
   flex-wrap: wrap;
   gap: 25px;
   font-family: var(--ff-primary);
}

.catalog {
   display: flex;
   flex-direction: column;
   top: 0;
   height: auto;
   /* border: 1px blue solid; */
}

.catalog-download {
   margin-top: 0.8em;
   /* border: 1px blue solid !important; */
}

.catalog-download p {
   margin-bottom: 5px;
   padding: 0 10px;
   line-height: 1.2rem;
}

.catalog-download i {
   float: right;
   font-size: 1rem;
   line-height: 1.2rem;
}

.catalog img:hover {
   scale: 1.03;
   transition: 0.25s ease-out;
   cursor: pointer;
}

.catalog img {
   width: max(300px);
   border-radius: 20px;
   box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.5);
   -webkit-box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.5);
   -moz-box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.5);
}

.user-off {
   display: none;
}

.modal-content-login {
   position: relative;
   display: flex;
   flex-direction: column;
   width: 90%;
   pointer-events: auto;
   background-color: #fff;
   background-clip: padding-box;
   border: 1px solid rgba(0, 0, 0, 0.2);
   border-radius: 1rem;
   outline: 0;
   padding-left: 10px;
   padding-right: 10px;
   background: #2d6978;
   color: #fff;
   /* border: 1px red solid; */
}

.modal-content-login-bg {
   background: var(--secondary);
}

.header-login {
   display: flex;
   flex-shrink: 0;
   align-items: center;
   justify-content: space-between;
   padding: 0.8rem;
   border-bottom: 1px solid #dee2e6;
   border-top-left-radius: calc(0.3rem - 1px);
   border-top-right-radius: calc(0.3rem - 1px);

   .btn-close-login {
      box-sizing: content-box;
      width: 0.5em;
      height: 0.5em;
      color: #000;
      background: transparent
         url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
         center/1em auto no-repeat;
      border: 0;
      border-radius: 2px;
      opacity: 0.5;
      padding: 0.5rem 0.5rem;
      margin: 0 -0.5rem 0 auto;
   }
}

.modal-login-header {
   display: flex;
   justify-content: center;
   flex-shrink: 0;
   align-items: center;
   margin: 5px 0 10px 0;
   border-bottom: 1px solid #dee2e6;
   padding-bottom: 10px;
}

.modal-login-header h6 {
   width: 75%;
   text-align: center;
}

.modal-login-title {
   margin-bottom: 0;
   line-height: 1.5;
}

.error {
   color: #ff0000;
   display: none;
   font-size: 13px;
   font-weight: 500;
}

#sign-up,
#sign-in {
   color: #9bc761;
   font-weight: 400;
}

#sign-up:hover,
#sign-in:hover {
   cursor: pointer;
}

.btn-fixo {
   background-image: linear-gradient(#2f89af, #1c546c);
   border: 0;
   border-radius: 10px;
   box-shadow: rgba(0, 0, 0, 0.3) 0 5px 15px;
   box-sizing: border-box;
   color: #fff;
   cursor: pointer;
   font-family: Montserrat, sans-serif;
   font-size: 0.9em;
   margin: 5px;
   padding: 10px 20px;
   text-align: center;
   user-select: none;
   -webkit-user-select: none;
   touch-action: manipulation;
   transition: 0.25s ease-in-out;
}

.btn-fixo:hover {
   scale: 1.05;
}

.modal-dialog {
   display: flex;
   flex-direction: column;
   justify-content: center;
   width: 100%;
}

.modal-dialog input {
   height: 35px;
}

.signup-link {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
}

.forgot-password {
   color: #fff;
}

.centralize a:hover {
   color: #000;
   transition: 0.25s ease-out;
}

.logout i {
   font-size: 1.1rem;
   font-weight: 700;
   font-style: normal;
}

.user-null {
   display: none;
}

@media screen and (max-width: 576px) {
   .catalog-container {
      margin-top: -40px;
   }

   .modal-content-login {
      width: 100%;
   }

   .bootbox {
      display: flex !important;
      justify-content: center;
      align-items: center;
   }

   .modal-sm {
      width: 90vw;
   }

   .modal-dialog {
      width: 95%;
   }

   .modal-header h5 {
      font-size: 18px;
   }

   .bootbox-body {
      font-size: 0.8rem;
   }

   .modal-content-login label {
      font-size: 14px;
   }

   .signup-link {
      flex-direction: column;
   }

   .signup-link :where(a, span) {
      font-size: 13px;
   }

   .catalog-mobile {
      margin-top: 20px;
   }

   .catalog-download p {
      margin-bottom: 5px;
   }

   .why-us h3 {
      font-size: 20px;
      font-weight: 600;
   }

   .services h3 {
      font-size: 20px;
      font-weight: 600;
   }

   .social-links {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: right;
   }

   .btn-contact {
      font-size: 0.7rem !important;
      width: 90px;
   }
}

.bootbox-accept,
.bootbox-cancel {
   width: 90px;
}

#image-destaque:hover {
   cursor: pointer;
}

.active > .page-link,
.page-link.active {
   z-index: 3;
   color: var(--bs-pagination-active-color);
   /* background-color: var(--bs-pagination-active-bg);
   border-color: var(--bs-pagination-active-border-color); */
   background-color: var(--primary) !important;
   border-color: var(--primary) !important;
   line-height: 1.2rem !important;
}

.page-item a {
   color: var(--primary) !important;
}

.page-item.active a {
   color: #fff !important;
}

.dropdown-toggle {
   line-height: 1.2rem;
   background-color: var(--primary);
   border-color: var(--primary);
}

.btn-group button {
   background-color: var(--primary);
   border-color: var(--primary);
}

.btn-group button:hover {
   background-color: var(--secondary);
}

/* .page-list {
   font-size: 0.8rem;
} */

@media screen and (max-width: 576px) {
   td {
      font-size: 13px;
   }
}

.btn-close {
   box-sizing: content-box;
   width: 1em;
   height: 1em;
   padding: 0.25em 0.25em;
   color: #000;
   background: transparent
      url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
      center/1em auto no-repeat;
   border: 0;
   border-radius: 0.375rem;
   opacity: 0.5;
   font-size: 1rem;
}

.detail-title {
   font-size: 26px !important;
}

.product-filter {
   display: flex;
   align-items: center;
   height: 60px;
}

.navproducts {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   width: 100%;
   height: 60px;
   background: #f4f4f4;
   border: 1px solid #e0dede;
   padding: 0 7%;
   flex-wrap: wrap;
   z-index: 1;
}

.search {
   display: flex;
   position: relative;
   justify-content: right;
   align-items: center;
}

.product-filter button,
.search button {
   position: relative;
   display: grid;
   place-items: center;
   width: 40px;
   height: 60px;
   border: 0;
   padding: 0;
   background: transparent;
   color: #4a8c9c;
   cursor: pointer;
   /* z-index: 2; */
}

.search button {
   position: absolute;

   z-index: 1;
   font-size: 20px;
   width: 40px;
   height: 35px;
   border-radius: 0;
   border-top-right-radius: 10px;
   border-bottom-right-radius: 10px;
   background: #c6c6c6;
}

.search input {
   flex: 1 1 auto;
   height: 35px;
   width: 25vw;
   min-width: 250px;
   padding-left: 16px;
   padding-right: 60px;
   font-size: 15px;
   border: 1px solid #c6c6c6;
   border-radius: 10px;
   background: #ffffff;
   color: inherit;
   font-family: inherit;
   font-weight: 400;
   outline: none;
}

.filtercategory {
   display: flex;
   flex-direction: row;
   align-items: center;
   height: 60px;
   flex-wrap: wrap;
}

.filtercategory select {
   display: flex;
   border-radius: 5px;
   height: 28px;
   font-size: 14px;
   border: none;
   background: transparent;
   width: 250px;
   padding-left: 25px;
   margin-left: -30px;
   cursor: pointer;
   color: #4a8c9c;
   font-weight: 600;
}

#fornecedor {
   margin-left: 10px;
}
select:focus {
   outline: none;
}

@media screen and (max-width: 576px) {
   .navproducts {
      padding: 0 2%;
      margin-bottom: 30px;
   }

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

   .filtercategory select {
      width: 180px;
   }

   .search input {
      width: 95vw;
   }
}

.scroller[data-animated="true"] {
   overflow: hidden;
   -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
   mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
   width: max-content;
   flex-wrap: nowrap;
   animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
   --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
   --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
   --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
   --_animation-duration: 60s;
}

@keyframes scroll {
   to {
      transform: translate(calc(-50% - 0.5rem));
   }
}

.tag-list {
   display: flex;
   flex-direction: row !important;
   margin: 0;
   padding-inline: 0;
   list-style: none;
   background-color: #fff;
}

.tag-list img {
   padding-right: 20px;
   width: 100%;
   object-fit: scale-down;
}

#voltarLink {
   display: flex;
   font-size: 0.9rem;
   font-weight: bolder;
   align-items: center;
   margin-top: 5px;
}

#voltarLink i {
   margin-right: 3px;
}

.bxs-cart-alt {
   margin-right: 5px;
}

.btn-end {
   width: 70%;
   border-radius: 5px;
   padding: 10px;
   background: #dc3545;
   border: 1px #dc3545 solid;
   color: #fff;
   font-weight: bold;
   transition: ease-in 0.3s;
}

.btn-end:hover {
   /* scale: 1.05; */
   background: #bb2d3b;
}

.cart {
   width: 20px;
}

.cart-empty {
   display: none;
}

.labelflutua {
   position: absolute;
   top: 0;
   font-size: 12px;
   font-weight: 500;
   width: 19px;
   height: 19px;
   border-radius: 50%;
   margin: 7px 0 0 8px;
}

.progress-download {
   display: flex;
   width: 260px;
   height: 30px;
   background: #e5e4e4;
   border: 1px gray solid;
   justify-items: center;
   align-items: center;
   padding: 3px;
   border-radius: 5px;
}

.progress-bar-files {
   display: flex;
   justify-content: center;
   height: 24px;
   color: green;
   background: green;
   border-radius: 5px;
   font-size: 12px;
   /* width: 250px; */
}

.download {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
   /* border: 1px red solid; */
}

.download button {
   width: 200px;
   margin: 20px 0 20px 0;
   height: 2.5rem;
   color: #fff;
   background: #1c546c;
   font-weight: 600;
   border-radius: 5px;
}

.adm-kaibara {
   cursor: pointer;
   font-size: 15px;
}
