/* CSS principal e responsivo para a landing page */

/* Corpo da página: fundo com imagem fornecida (cobre toda a tela) */

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


body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: url('VICKY-BG-1.png') no-repeat center top;
  background-size: cover;
  color: #000;
  box-sizing: border-box;
}

/* Logo (header) */
.logo {
  display: block;
  max-width: 250px;
  width: 80%;
  height: auto;
  margin: 20px auto;
}

.welcome {
  position: relative;
  text-align: center;
  margin: 10px auto 0;
}

.estrela {
  position: absolute;
  bottom: -33px;
  left: -19px;
  width: 69px;
  height: auto;
}

.bem-vinda-texto {
  display: inline-block; 
  border-radius: 10px;
  padding: 10px 15px;
  margin-top: 10px;
  font-size: 1.1em;
  line-height: 1.2em;
  rotate: 3deg;
}

.bem-vinda-texto .bem-vinda {
  color: #F8458C;   
  font-style: italic;
  font-weight: normal;
  font-size: 1.2em;
}

.bem-vinda-texto .bem-vinda strong{
  color: #F8458C;   
  font-style: italic;
  font-weight: bold;
  font-size: 1.2em;
}

.linha-rosa {
  display: block;
  width: 378px;
  height: auto;
  margin: 5px auto 0;
}

/* Seção de introdução (texto explicativo) */
.intro {
  background-color: #FFFFFF;
  border: 2px solid #000;
  border-radius: 50px;
  margin: 20px auto;
  padding: 5px 30px;
  width: 90%;
  max-width: 320px;
  text-align: center;
  font-size: 0.95em;
  line-height: 1.4em;
  rotate: -3deg;
  position: relative;
}

.intro p{
  margin-top: 0;
  rotate: 3deg;
}

.botoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0 0 0;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 280px;
  padding: 12px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  font-weight: normal;
  color: #000000;
  text-decoration: none;
  transition: transform 0.3s ease; 
}

.btn:hover{
  transform: scale(1.1);
}

.btn img {
  height: 20px;
  width: auto;
  margin-right: 8px;
}

.btn-whats {
  /* background: linear-gradient(#FD9651, #C87947); */
  background-color: #fd9651;
  border: 2px solid #000000;
}

.btn-pinterest {
  /* background: linear-gradient(#BE7DFF, #8E39FF); */
  background-color: #9471d2;
  border: 2px solid #000000;
}

.modelo {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
.imagem-modelo {
  width: 100%;
  height: auto;
  display: block;
}

footer{
  position: relative;
}


.tag {
  position: absolute;
  top: -32px;
  left: 28%;
  background-color: transparent;
  rotate: -1deg;
  border-radius: 25px;
}

.tag img {
  width: 100%;
  max-width: 223px;
}

.tag span {
  border: 2px solid #000;
  padding: 5px 25px;
  font-weight: normal;
  font-size: 0.9em;
  border-radius: 25px;
  display: block;
  margin: 5px;
}

.tag span strong{
  font-weight: bold;
}

.tag span strong.maior{
  font-size: 1.5em;
}


/* Media query para telas maiores (exemplo: ajustar tamanho de fonte) */
@media (min-width: 480px) {
  .bem-vinda-texto { font-size: 1.2em; }
  .intro { max-width: 500px; }
  .btn { font-size: 1.05em; }
}
@media (max-width: 767px) {
  .tag {
    left: 2%;
  }
  .estrela {
    bottom: -7px;
    left: -19px;
    width: 65px;
  }
  .linha-rosa {
    width: 100%;
  }
  .intro {
    margin: 20px auto;
    padding: 5px 18px;
    width: 90%;
    max-width: 400px;
  }
  .tag {
    position: absolute;
    top: -13px;
    left: 4%;
    background-color: transparent;
    rotate: -5deg;
    border-radius: 25px;
  }
  .tag img {
    width: 100%;
    max-width: 150px;
  }
}  


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classes de animação sequencial */
.animate-sequence-1 { animation: fadeInDown 0.8s ease forwards; }
.animate-sequence-2 { animation: fadeInDown 0.8s ease 0.2s forwards; }
.animate-sequence-3 { animation: fadeInDown 0.8s ease 0.4s forwards; }
.animate-sequence-4 { animation: fadeInDown 0.8s ease 0.6s forwards; }
.animate-sequence-5 { animation: fadeInDown 0.8s ease 0.8s forwards; }
.animate-sequence-6 { animation: fadeInDown 0.8s ease 1.0s forwards; }

/* Elementos inicialmente invisíveis */
.animate-sequence {
  opacity: 0;
}


.animacao{
  animation:normal;
  opacity: 1;
}
