@import url('https://fonts.googleapis.com/css2?family=Caladea:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* font-family: 'Nunito', serif;
font-family: "Caladea", serif; */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
.header{
    background: rgb(255, 230, 242);
    background: linear-gradient(90deg, rgb(255, 230, 242) 3%, rgba(255, 163, 209, 1) 66%, rgba(255, 105, 180, 1) 85%);
    width: 100%;
    height: 15vh;
    display: flex;
    align-items: center; 
    justify-content: center; 
    z-index: 2;
    position: relative; 
}
body{
    background: rgb(255, 230, 242);
}
.header h1{
  width: 60%;
  float: left;
  margin: 0 auto;
  text-align: center;
  font-size: 6vh;
  color: #444444;
  font-family: 'Caladea', serif;
}
.header h1 strong{
  color: rgba(255, 105, 180, 1);
}
#logoheader{
    width: 15%;
    float: left;
    margin-left: 2%;
    height: auto;
}
.adoheader{
    text-decoration: none;
    color: #444444;
    font-family: "Caladea", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8vh;
    float: right;
    margin-right: 5%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 20%;
    /* margin-top: 3%; */
    transition: all 0.3s ease-in-out;
}
.adoheader:hover{
    color: rgb(255, 230, 242);
    text-decoration: underline;
    transform: translateY(-5px);
}
.card {
  width: 238px;
  height: 318px;
  background: rgb(255, 252, 255);
  transition: all 1s;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
  font-size: 2.5vh;
  font-weight: 900;
  margin-bottom: 10rem;
}

.card:hover, .card.ativo {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
  background: rgb(255, 230, 242);
}

.first-content {
  height: 100%;
  width: 100%;
  transition: all 1s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  opacity: 1;
  border-radius: 15px;
}

.card:hover .first-content, .card.ativo .first-content {
  height: 0px;
  opacity: 0;
}

.second-content {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 1s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.card:hover .second-content, .card.ativo .second-content {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}






.corpo {
    width: 70%;
    margin-left: 15%;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 2%;
    padding-right: 2%;
    background-color: rgb(255, 230, 242);
    height: auto;
    box-shadow: 0 3px 5px #ffffffc5;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column; 

}

.first-content .span{
    width: 99%;
    margin-top: 1%;
    font-family: "Caladea", serif;
    font-size: 1.8vh;
    text-align: center;
}

.first-content .info2{
    font-size: 1.6vh;
    font-family: "Caladea", serif;
    width: 99%;
    text-align: center;
    margin-bottom: 3%;
}
.imgproduto {
    width: 80%;
    height: auto;
    margin-left: 10%;
}
.imgprodutogrande {
    width: 60%;
    height: auto;
    margin-left: 20%;
}
.imgprodutopequeno {
    width: 100%;
    height: auto;
}



.second-content span{
    width: 99%;
    margin-top: 1%;
    margin-bottom: 1%;
    font-family: "Caladea", serif;
    font-size: 1.4vh;
    text-align: center;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 5%;

}

.btnprodutos {
  display: block;
  margin: 10px auto 0 auto; /* Centraliza e dá espaço acima */
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid rgba(255, 105, 180, 1);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: #000;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.2s ease-in;
  position: relative; /* necessário para a animação ::before */
}

.btnprodutos:hover {
  background: rgba(255, 105, 180, 1);
  box-shadow: 0 0 30px 5px rgba(255, 163, 209, 1);
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.btnprodutos:hover::before {
  animation: sh02 0.5s 0s linear;
}

.btnprodutos::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}

.btnprodutos:active {
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.2s ease-in;
}


.redessociais {
  display: flex;
  float: right;
  align-items: center;
  height: 25%;
  margin-top: 1%;
  margin-right: 15%;
}

.Btnredes {
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-left: 10px;
}

.instagram {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.youtube {
  background-color: #ff0000;
}

.whatsapp {
  background-color: #25d366;
}

.Btnredes:hover {
  width: 110px;
  transition-duration: 0.4s;
  border-radius: 30px;
}

.Btnredes:hover .text {
  opacity: 1;
  transition-duration: 0.4s;
}

.Btnredes:hover .svgIcon {
  opacity: 0;
  transition-duration: 0.3s;
}

.text {
  position: absolute;
  color: rgb(255, 255, 255);
  width: 120px;
  font-weight: 600;
  opacity: 0;
  transition-duration: 0.4s;
}

.svgIcon {
  transition-duration: 0.3s;
  height: 1.5em;
  width: 1.5em;
  max-width: 24px;
  max-height: 24px;
}

.svgIcon path {
  fill: #ffffff;
}

.footer{
    background: rgb(255, 230, 242);
    background: linear-gradient(90deg, rgba(255, 105, 180, 1) 3%, rgba(255, 163, 209, 1) 66%, rgb(255, 230, 242) 85%);
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin-top: 2%;
    z-index: 2;
    position: relative;
}
ul {
  width: auto;
  margin-left: 15%;
  height: 25%;
  margin-top: 1%;
  list-style: none;
}
#logofooter{
  width: 32%;
  height: auto;
}
.logofooter {
  width: 40%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
li, a{
  color: #444444;
}


.sidebar-esquerda,
.sidebar-direita {
  position: fixed;
  width: 10%;
  height: 100vh;
  z-index: 1;
}

.sidebar-esquerda {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255,105,180,1) 0%,
    rgba(255,163,209,1) 60%,
    rgb(255,230,242) 97%
  );
}

.sidebar-direita {
  right: 0;
  background: linear-gradient(
    to right,
    rgb(255,230,242) 0%,
    rgba(255,163,209,1) 40%,
    rgba(255,105,180,1) 100%
  );
}

@media (max-width: 1142px) {
  .cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 2rem;
  }


  .header h1{
    font-size: 4vh;
    width: 80%;
  }

  .footer {
    flex-direction: column;
    height: auto;
    padding: 5% 0;
  }

  .logofooter {
    width: 80%;
    margin-bottom: 3%;
  }

  ul {
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  li {
    margin-bottom: 5px;
  }

  .redessociais {
    float: none;
    margin: 0 auto;
    justify-content: center;
  }

  .Btnredes {
    width: 40px;
    height: 40px;
  }

  .Btnredes:hover {
    width: 60px;
    border-radius: 20px;
  }

  .text {
    font-size: 12px;
    width: auto;
  }

  #logoheader {
    width: 30%;
    float: none;
    margin: 2% auto;
    display: block;
  }

  .adoheader {
    float: none;
    font-size: 2.5vh;
    margin: 2% auto;
    display: block;
    text-align: center;
  }

  .header {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2%;
  }


  .imgproduto {
    width: 50%;
    margin: 0 auto;
  }

  .imgprodutopequeno {
    width: 60%;
    margin: 0 auto;
  }

  .imgprodutogrande {
    width: 40%;
    margin: 0 auto;
  }

  .btnprodutos,
  #btnprodutos {
    width: 60%;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 768px) {
  .header,
  .footer {
    justify-content: space-between;
    padding: 0.8rem 5%;
  }

  .header h1{
    font-size: 3.5vh;
  }

  #logoheader {
    width: 35%;
  }

  .sidebar-direita, .sidebar-esquerda {
    display: none;
  }

  .adoheader {
    font-size: 1.6vh;
  }

  .imgproduto {
    width: 60%;
    margin: 0 auto;
  }

  .imgprodutopequeno {
    width: 70%;
    margin: 0 auto;
  }

  .imgprodutogrande {
    width: 50%;
    margin: 0 auto;
  }

  .btnprodutos,
  #btnprodutos {
    width: 70%;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .imgproduto {
    width: 70%;
    margin: 0 auto;
  }

  .imgprodutopequeno {
    width: 80%;
    margin: 0 auto;
  }

  .imgprodutogrande {
    width: 60%;
    margin: 0 auto;
  }

  .btnprodutos,
  #btnprodutos {
    width: 80%;
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
  }
}
