/* import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/***/
/*import css */
@import "./color.css";
/**/
/*font css */
:root {
    --font-inter:Inter;
    --font-poppins:Poppins;
}
/****/
/* import css */
@import "./color.css";
/**/
/* Classes Gerais */
/* header*/
header {
    width: 100%;
    padding:30px 2%;
    background-color:var(--color-two);
}

header .flex-page {
    align-items: center;
    justify-content: space-between;
}

.logo-brands a {
    display:flex;
    align-items: center;
    gap:0.4rem;
}

.logo-brands a  img {
    width:27px;
    height:27px;
}

.logo-brands a  h2 {
    color:var(--color-one);
    font-size: 1.3rem;
    font-family:var(--font-inter);
}
nav.nav-desktop ul {
    display:flex;
    list-style-type: none;
}

nav.nav-desktop ul li {
 padding:0 15px;
}

nav.nav-desktop ul li a {
    color:var(--color-tree);
    font-size: 0.9rem;
    font-family:var(--font-poppins);
    font-weight: bold;
    position: relative;
    transition: .5s ease;
}

nav.nav-desktop ul li a::after {
  content:" ";
  width:0%;
  height:6px;
  background-color:var(--color-four);
  position: absolute;
  transition: .5s ease;
  bottom:-5px;
  left:0;
}

nav.nav-desktop ul li a:hover::after {
    width: 100%;
}

nav.nav-desktop ul li a:hover {
    color:var(--color-four);
}

nav.nav-desktop ul li a.active {
    color: var(--color-four);
}

nav.nav-desktop ul li a.active::after {
    width: 100%;
}

.btn-menu  {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color:var(--color-two);
  font-size: 1.2rem;
  font-family:var(--font-inter);
  border-radius:5px;
  padding: 19px 35px;
  background: linear-gradient(to right, var(--color-five), var(--color-six));
  border: none;
  transition: .5s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-menu:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}


/**/

/* menu mobile */
.list-mobile {
    display: none;
    width:50px;
    height:50px;
    position: relative;
    background-color:var(--color-tree);
    transition:.5s ease-in;
    cursor: pointer;
}

.list-mobile:hover {
    opacity:0.8;
}

.list-mobile img {
    width:42px;
    height:42px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.menu-mobile {
    width:0%;
    height:100vh;
    position: fixed;
    top:0;
    right: 0;
    z-index: 99999;
    background-color:var( --color-twenty-nine);
    overflow: hidden;
}

.menu-mobile.show-menu {
    width: 300px;
    padding: 15px;
}

.menu-mobile ul {
    padding:50px 0;
}

.menu-mobile ul li {
    padding:20px 3%;
}

.menu-mobile ul li:hover {
    background-color:var(--color-thirty-one);
    cursor: pointer;
}


.menu-mobile ul li a {
    color:var(--color-fourteen);
    font-size: 1rem;
    font-family:var(--font-inter);
}

.menu-mobile ul li:hover a {
    color:var(--color-six);
}

.button-mobile {
    text-align: center;
}

.button-mobile a {
  padding: 14px 20px;
  color:var(--color-two);
  font-size: 1.1rem;
  font-family:var(--font-inter);
  border-radius:5px;
  background: linear-gradient(to right, var(--color-five), var(--color-six));
  border: none;
  transition: .5s ease;
  cursor: pointer;
  text-decoration: none;
}

.button-mobile  a:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.btn-close {
    padding: 60px 0;
    text-align: center;
}

.btn-close img {
    width:80px;
    height:80px;
    cursor: pointer;
}
/***/
/* main banner-description */
main.banner-description {
    width: 100%;
    min-height: 90vh;
    padding:0 2%;
    position: relative;
    background-position:right center;
    background-color:var( --color-thirty-two);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.wrapper-main {
    padding:80px 0;
}

.compart-info {
    width:335px;
    height:50px;
    display: flex;
    align-items: center;
    gap:0.8rem;
    border-radius:5px;
    padding:10px;
    text-align: center;
    border: 3px solid var(--color-tree);
    background-color:var(--color-ten);
    margin-bottom: 1rem;
}

.details-fill {
    width:10px;
    height:10px;
    background-color:var(--color-eleven);
    border-radius:6px;
    
}

.compart-info h3 {
    color:var(--color-two);
    font-size:1.1rem;
    font-family:var(--font-poppins);
}

.title-main h1 {
    color:var(--color-fourteen);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: 1.3;
    font-family:var(--font-inter);
    max-width: 550px;
}

.title-main p {
  color:var(  --color-twelve);
  max-width:500px;
  font-size: 1rem;
  line-height:28px;
  font-family:var(--font-poppins);
  margin-bottom: 1rem;
}

.btn-main {
    margin-top:1.8rem;
}

.btn-main a {
  display: inline-block;
  color:var(--color-two);
  font-size: 1.2rem;
  font-family:var(--font-inter);
  padding: 19px 35px;
  background: linear-gradient(to right, var(--color-thirteen), var(--color-six));
  border: none;
  border-radius:5px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-main a:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}


/***/

/* efeito scroll */
.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  background:var(--color-tree); 
  padding: 20px 0;
}

.scroll-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

.scroll-content span {
  display: inline-block;
  margin: 0 30px;
  font-size: 1.1rem;
  color:var(--color-fourteen);
  font-family: var(--font-inter);
  font-weight: 500;
}

/* Animação */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* section session-two */
section.session-two {
    width: 100%;
    padding:90px 2%;
    background-color:var(--color-two);
}

section.session-two .flex-page {
    gap:1.2rem;
}

.left-img {
    position: relative;
    max-width:500px;
}

.left-img img {
    width:100%;
}

.right-description h3 {
    color:var(--color-four);
    font-size: 1.2rem;
    font-family:var(--font-inter);
    margin-bottom:0.4rem;
}

.right-description .desk-right {
    color: var(--color-thirteen);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-family: var(--font-poppins);
    margin-bottom: 1rem;
    max-width: 733px;
}

.right-description p {
    color:var(--color-fiveteen);
    font-size: 1rem;
    font-family:var(--font-poppins);
    text-align: justify;
    margin-bottom:0.5rem;
    line-height: 30px;
    max-width:650px;
}

.dimension-parts {
    display:flex;
    align-items: center;
    gap:1rem;
    justify-content:space-around;
    margin-top:2.3rem;
}

.group-wind {
    width:350px;
    height:200px;
    overflow: hidden;
    padding:50px 3%;
    background: var( --color-seventeen); 
    backdrop-filter: blur(10px); 
   -webkit-backdrop-filter: blur(10px); 
    position: absolute;
    right:-60px;
    bottom:-40px;
}

.group-wind h2 {
    color:var(--color-two);
    font-size:2.8rem;
    font-family:var(--font-poppins);
}


.group-wind h3 {
    color:var(--color-fourteen);
    font-size: 1.9rem;
    font-family:var(--font-poppins);
    margin-bottom: 0.4rem;
}

.border-wind {
    width:110px;
    height:6px;
    background-color:var(--color-eighteen);
}


.box1 {
    width:100%;
    max-width:330px;
    height:90px;
    padding:20px;
    border-radius: 5px;
    border-left: 3px solid var(--color-four);
    background-color:var( --color-sixteen);
}

.box1 h2 {
    color:var(--color-thirteen);
    font-size:1.2rem;
    font-family:var(--font-poppins);
}

.box1 h2 i {
    font-size:1.1rem;
}

.box1 .text-wind {
    color:var(--color-four);
    font-size:1rem;
    font-family:var(--font-poppins);
}

.box2 {
    width:100%;
    max-width:330px;
    height:90px;
    padding:20px;
    border-radius:5px;
    border-right: 3px solid var(--color-four);
    background-color:var( --color-sixteen);
}

.box2 h2 {
    color:var(--color-thirteen);
    font-size:1.2rem;
    font-family:var(--font-poppins);
}

.box2 h2 i {
    font-size:1.1rem;
}

.box2 .text-wind {
    color:var(--color-four);
    font-size:1rem;
} 

/* section session-tree*/
section.session-tree {
    width: 100%;
    padding:80px 2%;
    background-color:var(--color-tree);
}

.title-services {
    text-align: center;
}

.title-services h2 {
    color: var(--color-fourteen);
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-family: var(--font-inter);
    text-align: center;
}

.title-services p {
    color:var(--color-twenty-tree);
    font-size: 1rem;
    font-family: var(--font-poppins);
    max-width:658px;
    margin: 10px auto;
    line-height: 30px;
}

.border-servicos {
    width:90px;
    height:5px;
    background-color:var(--color-four);
    margin:15px auto;
}

.grid-services {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    max-width:1130px;
    gap:1rem;
    margin:70px auto;
}

.card-servicos {
    width:350px;
    height:350px;
    padding:20px;
    background-color:var( --color-nineteen);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.219);
    border: 2px solid var(--color-twenty);
    border-radius:5px;
}

.icon-servicos {
    width:50px;
    height:50px;
    margin-bottom: 0.8rem;
    border-radius: 5px;
    background-color:var(--color-twenty-one);
    position: relative;
}

.icon-servicos img {
    width:35px;
    height:35px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.title-servicos h2 {
    color:var(--color-fourteen);
    font-family:var(--font-inter);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.text-servicos p {
    color:var(--color-sixteen);
    font-size: 1rem;
    font-family:var(--font-poppins);
    margin-bottom:0.8rem;
}

.btn-services {
 width: 100%;
  display:inline-block;
  color:var(--color-two);
  font-size: 1.1rem;
  text-align: center;
  font-family:var(--font-inter);
  border-radius:5px;
  padding: 18px 35px;
  background:var(--color-tree);
  border: none;
  cursor: pointer;
  transition: .5s;
  text-decoration: none;
}

.btn-services:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* section galery-work */
section.galery-work {
    width: 100%;
    padding:80px 2%;
    background-color:var(--color-fourteen);
}

.title-galery h2 {
    color: var(--color-thirteen);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-family: var(--font-inter);
  
}

.border-galery {
    width:90px;
    height:5px;
    background-color:var(--color-four);
    margin-bottom: 1rem;
}

.title-galery p {
   
    font-size: 1rem;
    font-family:var(--font-poppins);
    text-align: justify;
    margin-bottom:0.5rem;
    line-height: 27px;
    max-width:600px;
}

.galery-imagens {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1rem;
    max-width:1200px;
    margin: 50px auto;
}

.image-al {
    width:300px;
    height:250px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* section session-four */
section.session-four {
    width: 100%;
    padding:40px 2%;
    background-color:var(--color-tree);
}

.title-four {
    padding:40px 0;
}

section.session-four .flex-page {
    padding:60px 0;
    gap:0.5rem;
}

.title-four h2 {
    color:var(--color-fourteen);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-family:var(--font-poppins);
}

.border-four {
    width:90px;
    height:5px;
    background-color:var(--color-four);
    margin-bottom: 1rem;
}



.title-four p {
    color:var( --color-twenty-tree);
    font-size:1rem;
    font-family:var(--font-poppins);
    max-width:660px;
    line-height: 27px;
}

.icon-four {
    margin-bottom:0.5rem;
}

.square-four {
    padding:20px;
    border: 1px solid var(--color-twenty);
    border-radius: 5px;
    overflow: hidden;
}

.time-four h2 {
    color:var(--color-fourteen);
    font-size: 1.4rem;
    font-family:var(--font-inter);
    margin-bottom: 1rem;
}

.time-four p {
    color:var(--color-twenty-tree);
    font-size: 1rem;
    font-family:var(--font-poppins);
    max-width:400px;
}


/***/
/* section session-contact */
section.session-contact {
    width:100%;
    padding:80px 2%;
    background-color:var(--color-fourteen);
}

.title-contact h2 {
    color: var(--color-thirteen);
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-family: var(--font-poppins);
    margin-bottom: 1rem;
    text-align: center;
    
}

.border-contact {
    width:90px;
    height:5px;
    margin: 10px auto;
    background-color:var(--color-four);
    margin-bottom:0.8rem;
}

.title-contact p {
    color:var(--color-fiveteen);
    font-size: 1rem;
    margin: 10px auto;
    font-family:var(--font-poppins);
    text-align: justify;
    margin-bottom:0.5rem;
    line-height: 27px;
    max-width:520px;
}

.form-group{
    margin: 20px auto;
    max-width:800px;
}

.form-group label {
    display:block;
    color:var(--color-nineteen);
    font-size:1rem;
    font-family:var(--font-poppins);
    font-weight: bold;
    margin-bottom:0.8rem;
}


.form-group input[type=text] {
    width:100%;
    line-height:50px;
    font-size:1rem;
    font-weight: bold;
    margin-bottom:0.8rem;
    font-family:var(--font-inter);
    color:var(--color-fiveteen);
    border: 1px solid var(--color-nineteen);
    padding-left:1.5rem;
    border-radius:5px;
}

.form-group input[type=text]::placeholder {
     color:var(--color-nineteen);
}


.form-group input[type=text]:focus {
    border:2px solid var(--color-four);
}



.form-group input[type=tel] {
    width:100%;
    line-height:50px;
    font-size:1rem;
    font-weight: bold;
    margin-bottom:0.8rem;
    font-family:var(--font-inter);
    color:var(--color-fiveteen);
    border: 1px solid var(--color-nineteen);
    padding-left:1.5rem;
    border-radius:5px;
}

.form-group input[type=tel]::placeholder {
     color:var(--color-nineteen);
}

.form-group input[type=tel]:focus {
    border:2px solid var(--color-four);
}


.position-parts {
    display: flex;
    align-items: center;
}


.form-group select {
  width: 100%;
  line-height:50px;
  border: 1px solid var(--color-nineteen);
  border-radius: 8px;
  color:var(--color-nineteen);
  font-size: 1rem;
  font-family:var(--font-inter);
  font-weight: bold;
  padding-left:1.5rem;
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}


.form-group {
  position: relative;
}

.form-group select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}


.form-group select:focus {
  border: 2px solid var(--color-four);

}

.form-group textarea {
    width: 100%;
    height:150px;
    font-size: 1rem;
    font-family:var(--font-inter);
    font-weight: bold;
    color:var(--color-fiveteen);
    padding:20px 20px;
    border-radius:5px;
    resize: none;
}

.form-group textarea::placeholder {
    color:var(--color-nineteen);
}

.form-group textarea:focus {
    border: 2px solid var(--color-four);
}

.button-form {
     margin: 10px auto;
     max-width:800px;
}

.button-form button {
    width:280px;
    height:60px;
    border: none;
    color:var(--color-fourteen);
    font-size: 1.1rem;
    font-family:var(--font-poppins);
    background: linear-gradient(to right, var(--color-five), var(--color-six));
    border-radius:5px;
    transition: .5s ease-in;
    cursor: pointer;
}

.button-form button i {
    font-size: 1.1rem;
}

.button-form button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}


/*footer */
footer {
    width: 100%;
    padding:30px 2%;
    background-color:var(--color-tree);
}

footer .flex-page {
    align-items: center;
    justify-content: space-between;
}

.wrapper-footer {
    display:flex;
    align-items: center;
    gap:0.9rem;
}

.logo-footer {
    display:flex;
    margin-top:1.1rem;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.logo-footer img {
    width:32px;
    height:32px;
}

.logo-footer a {
    display:flex;
    align-items: center;
    gap:0.4rem;
}

.logo-footer a  img {
    width:27px;
    height:27px;
}
.logo-footer a  h2 {
    color:var(--color-fourteen);
    font-size: 1.3rem;
    font-family:var(--font-inter);
}

.arrow-footer {
    width:38px;
    height:38px;
    position: relative;
    background-color:var( --color-nineteen);
    border-radius: 5px;
    transition: .5s ease-in;
    cursor: pointer;
}

.arrow-footer:hover {
    opacity: 0.8;
}

.arrow-footer i {
    color:var(--color-fourteen);
    font-size: 1.3rem;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.term-footer {
    display:flex;
    align-items: center;
    gap: 0.7rem;
}

.term-footer a {
 color:var(--color-fourteen);
 font-size:0.9rem;
 font-family:var(--font-poppins);
 transition: .5s ease-in;
}

.term-footer a:hover {
    color:var(--color-four);
}

.text-footer p {
    color:var(--color-twenty-tree);
    font-size:0.9rem;
    font-family:var(--font-inter);
    margin-bottom:0.8rem;
}

.local-footer p  {
    color:var(--color-twenty-tree);
    font-size:0.9rem;
    font-family:var(--font-inter);
}


.whatsapp-btn {
  position: fixed;
  bottom: 2px;
  right: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  animation: pulse 1.5s infinite;
}


.whatsapp-btn img {
  width: 70px;
  height:70px;
}

/* TOOLTIP */
.tooltip {
  position: absolute;
  right: 80px;
  background-color:var(--color-fiveteen);
  font-family: var(--font-inter);  
  color:var(--color-fourteen);
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
}

 span {
    font-size: 2.3rem;
}

/* HOVER */
.whatsapp-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(-5px);
}

@keyframes pulse {
  0% {
    transform: scale(1);
   
  }

  70% {
    transform: scale(1.1);
  
  }

  100% {
    transform: scale(1);

  }
}

/*session-policy*/

section.session-policy {
    width:100%;
    padding: 90px 2%;
    background-color:var(--color-fourteen);
}

.logo-center a {
    display:flex;
    align-items: center;
    justify-content: center;
    gap:0.4rem;
}

.logo-center a  img {
    width:27px;
    height:27px;
}

.logo-center a  h2 {
    color:var(--color-one);
    font-size: 1.3rem;
    font-family:var(--font-inter);
}

.part-policy h1 {
    color: var(--color-thirty-two);
    font-size: clamp(1rem, 4vw, 2rem);
    font-family: var(--font-inter);
    margin-bottom: 1rem;
}

.part-policy p {
    color:var( --color-fiveteen);
    font-size:1.3rem;
    font-family:var(--font-inter);
    margin-bottom: 1rem;
}

.content-policy h2 {
    margin-bottom: 1rem;
     font-size: 1.3rem;
    font-family:var(--font-inter);
}

.content-policy p {
    color:var( --color-fiveteen);
    font-size:0.9rem;
    font-family:var(--font-inter);
    margin-bottom: 1rem;
    max-width:580px;
    line-height: 24px;
}
/***/

/* Página individual de serviços de cãmara fria */
.btn-mobile {
    display:none;
    padding: 14px 20px;
    color:var(--color-two);
    font-size: 1.1rem;
    font-family:var(--font-inter);
    border-radius:5px;
    background: linear-gradient(to right, var(--color-five), var(--color-six));
    border: none;
    transition: .5s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn-mobile:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.image-could {
    width: 100%;
    height:70vh;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image-could h1 {
    color:var(--color-fourteen);
    font-size:3rem;
    font-family:var(--font-poppins);
    text-align: center;
    max-width:800px;
    margin: 0 auto;
    position: relative;
    top:140px;
}

.cold-room {
    width: 100%;
    padding:80px 2%;
    background-color:var(--color-fourteen);
}

.cold-room .flex-page {
    gap:2rem;
}

.imagem-room {
    max-width:650px;
}

.imagem-room > img {
    width: 100%;
    height:550px;
}

.left-information h2 {
    color: var(--color-thirteen);
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-family: var(--font-inter);
    margin-bottom:0.8rem;
}

.left-information p {
     color:var(--color-fiveteen);
    font-size: 1rem;
    font-family:var(--font-poppins);
    text-align: justify;
    margin-bottom:0.5rem;
    line-height: 30px;
    max-width:550px;
}

.button-room a {
    display: inline-block;
  color:var(--color-two);
  font-size: 1.2rem;
  font-family:var(--font-inter);
  padding: 19px 35px;
  background: linear-gradient(to right, var(--color-thirteen), var(--color-six));
  border: none;
  border-radius:5px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.button-room a:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
/**/