/* */

@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans+Thai:wght@100..800&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
  /* rolagem suave */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  /* evita scroll lateral */
  padding-top: 70px;
  /* ajuste esse valor pra altura real do seu nav */
}

.titulo-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.icone {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 40%;
}

h2 {
  font-family: "Playpen Sans Thai", cursive;
  font-optical-sizing: auto;
  font-weight: weighted;
  font-style: oblique;
}

h3 {
  font-family: "Playpen Sans Thai", cursive;
  font-weight: 400;
}

p,
button,
a,
li,
strong,
::placeholder {
  font-family: "Playpen Sans Thai", cursive;
  font-optical-sizing: auto;
  font-weight: weighted;
  font-style: normal;
}

.petalastec {
  font-size: 1rem;
  color: aliceblue;
  cursor: pointer;
}

/*RESPONSIVIDADE*/

/* Telas médias (tablets) */
@media (max-width: 992px) {

  h2 {
    font-family: "Playpen Sans Thai", cursive;
    font-optical-sizing: auto;
    font-weight: weighted;
    font-style: oblique;
    font-size: large;
  }

  h3 {
    text-align: center;
  }

  p,
  button,
  a,
  li,
  strong,
  ::placeholder {
    font-family: "Playpen Sans Thai", cursive;
    font-optical-sizing: auto;
    font-weight: weighted;
    font-style: normal;
    font-size: small;
  }

  .icone {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: cover;
    border-radius: 40%;
  }



}

/* Telas médias (celulares) */
@media (max-width: 490px) {


  h2 {
    font-family: "Playpen Sans Thai", cursive;
    font-optical-sizing: auto;
    font-weight: weighted;
    font-style: oblique;
    font-size: x-large;
  }

  h3 {
    font-family: "Playpen Sans Thai", cursive;
    font-weight: 200;
    font-size: small;
    text-align: center;

  }

  .titulo-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .icone {
    width: 1rem;
    height: 1rem;
    object-fit: cover;
    border-radius: 40%;
  }

  .direitos-autorais p {
    font-size: 0.8rem;
  }

  .petalastec {
    font-size: 0.8rem;
    color: aliceblue;
    cursor: pointer;
  }


}