@import url('https://fonts.googleapis.com/css2?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');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top: 2rem;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: Poppins, sans-serif;
}

.cloud{
  width: 150px;
}

:root{
  --main-color: #58b0d6;
  --second-color: #1e3932;
  --third-color: #59d359;
}

section{
  padding: 50px 10%;
  background-color: #edf8fb;
}


*::selection{
  color: #edf8fb;
  background: var(--main-color);
}

img{
  width: 100%;
}

header{
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #edf8fb;
  box-shadow: 0 4px 41px rgb(14 55 54 / 14%);
  padding: 15px 10%;
  transition: 0.2s;
}

.logo{
  display: flex;
  align-items: center;

}

.logo img{
  width: 180px;
  padding: 20px;
}

.navbar{
  display: flex;
}

.navbar a{
  font-size: 1rem;
  padding: 11px 20px;
  color: var(--second-color);
  font-weight: 600;
  text-transform: uppercase;
}

.navbar a:hover{
  color: var(--main-color);
}

#menu-icon{
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

.home{
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  background: #edf8fb;
  gap: 1rem;
  padding: 95px 0 0 0; /* Ajustado para alinhar abaixo do header e remover margens laterais/inferior */
  align-content: flex-start; /* Alinha a imagem no topo da seção */
}

.home-text{
  flex: 1 1 17rem;
}

.home-img{
  flex: 1 1 17rem;
}

.home-img img{
  animation: animate 3s linear infinite;
}
@keyframes animate{
  0%{
    transform: translate(-11px, 0)
  } 50% {
    transform: translate(-0px, -11px);
  } 100% {
    transform: translate(-11px, 0)
  }
}

.home-text span{
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--second-color)
}

.home-text h1{
  font-size: 3.2rem;
  color: var(--main-color);
  font-weight: bolder;
}

.home-text h2{
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--second-color);
  margin: 0.5rem 0 1.4rem;
}

.btn{
  padding: 7px 16px;
  border: 2px solid var(--second-color);
  border-radius: 40px;
  color: var(--second-color);
  font-weight: 500;
}

.btn:hover{
  color: #edf8fb;
  background: var(--second-color);
}

.heading{
  text-align: center;
  text-transform: uppercase;
}

.heading2{
  text-align: center;
  text-transform: uppercase;
  margin-bottom: -80px;
}

.heading3{
  text-align: center;
  text-transform: uppercase;
  margin-bottom: -80px;
}

.heading span{
  font-size: 1rem;
  font-weight: 600;
  color: var(--second-color);
}

.heading2 span{
  font-size: 1rem;
  font-weight: 600;
  color: var(--second-color);
}


.heading h1{
  font-size: 2rem;
  color: var(--main-color);
}

.heading2 h1{
  font-size: 2rem;
  color: var(--main-color);
}

.shop-container{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5rem;
  background: #edf8fb;
}

.shop-container2{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5rem;
  background: #edf8fb;
}

.shop-container3{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5rem;
  background: #edf8fb;
}

.shop-container .box{
  flex: 1 1 10rem;
  background: var(--main-color);
  padding: 20px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  border-radius: 0.5rem;
}

.shop-container2 .box2{
  flex: 1 1 10rem;
  background: var(--main-color);
  padding: 20px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}

.shop-container3 .box3{
  flex: 1 1 10rem;
  background: var(--main-color);
  padding: 20px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: -164px;
}

.shop-container .box .box-img{
  width: 150px;
  height: 150px;
  margin-top: -100px;
}

.shop1-2{
  margin-top: -100px;
}

.shop-container2 .box2 .box-img2{
  width: 300px;
  height: 300px;
}

.shop-container3 .box3 .box-img3{
  width: 300px;
  height: 300px;
}

.shop-container .box .box-img:hover{
 transform: translateY(-15px);
}

.shop-container2 .box2 .box-img2:hover{
 transform: translateY(-15px);
}

.shop-container3 .box3 .box-img3:hover{
 transform: translateY(-15px);
}


.shop-container .box .box-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.shop-container2 .box2 .box-img2 img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.shop-container3 .box3 .box-img3 img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.stars{
  margin: 1rem 0 0.1rem;
}

.stars2{
  margin: 1rem 0 0.1rem;
}

.stars3{
  margin: 1rem 0 0.1rem;
}

.shop-container .box .stars .bx{
  color: #FAF9F6;
}

.shop-container2 .box2 .stars2 .bx{
  color: #FAF9F6;
}

.shop-container3 .box3 .stars3 .bx{
  color: #FAF9F6;
}


.shop-container .box h2{
  color: #FAF9F6;
  font-size: 1.2rem;
}

.shop-container2 .box2 h2{
  color: #FAF9F6;
  font-size: 1.2rem;
  margin-top: -20px;
}

.shop-container2 .box2 p{
  color: #FAF9F6;
  font-size: 0.9rem;
}

.shop-container3 .box3 p{
  color: #FAF9F6;
  font-size: 0.9rem;
}

.shop-container3 .box3 h2{
  color: #FAF9F6;
  font-size: 1.2rem;
  margin-top: -20px;

}

.shop-container .box span{
  color: #FAF9F6;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0.2rem 0 0.5rem;
}

.shop-container2 .box2 span{
  color: #FAF9F6;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0.2rem 0 0.5rem;
}

.shop-container3 .box3 span{
  color: #FAF9F6;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0.2rem 0 0.5rem;
}

.box .btn{
  border: 2px solid #FAF9F6;
  color: #FAF9F6;
}

.box2 .btn{
  border: 2px solid #FAF9F6;
  color: #FAF9F6;
}

.box3 .btn{
  border: 2px solid #FAF9F6;
  color: #FAF9F6;
}

.box .btn:hover{
  background: #FAF9F6;
  color: var(--second-color);
}

.box2 .btn:hover{
  background: #FAF9F6;
  color: var(--second-color);
}

.box3 .btn:hover{
  background: #FAF9F6;
  color: var(--second-color);
}

.home-video{
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #edf8fb;
  gap: 1rem;
  padding-top: 50px;
  padding-bottom: 70px;
  padding-left: 180px;
}

.home-text-video{
  flex: 1 1 17rem;
}

.home-text-video span{
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--second-color);
  text-align: center;
}

.home-text-video h1{
  font-size: 3.2rem;
  color: var(--main-color);
  font-weight: bolder;
  text-align: center;
}

.home-text-video h2{
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--second-color);
  margin: 0.5rem 0 1.4rem;
  text-align: center;
}

.container-fluid {
  color: #FAF9F6;
  background-color: var(--third-color);
  text-align: center;
  height: 120px;
}

form{
  display: flex;
  align-items: center;
  justify-items: center;
}

.form-box{
  padding: 10px;
  border-radius: 5px;
  background: #edf8fb;
  box-shadow: 10px 10px 15px #FAF9F6, -10px -10px -15px white;
}

.form-box input{
  font-size: 15px;
  color: var(--second-color);
  padding: 10px 10px;
  border: none;
  outline: none;
  background: #FAF9F6;
}

.form-box .submit{
  padding: 10px 10px;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  background: var(--main-color);
  cursor: pointer;
  transition: .3s;
  color: #FAF9F6;
}

@media screen and (max-width: 768px){
  main.row {
  grid-template-columns: 1fr;
  }
  .row .coluna00:nth-child(2){
    margin-top: 30px;
  }

  .coluna00 .content {
    padding: 0 6px;
  }

  .box p {
    font-size: 16px;
  }
}
