:root {
  --verde-musgo: #5a7256;
  --lilas-suave: #c5b8e3;
  --off-white: #fdfcf7;
  --texto: #2e2e2e;
  --hover: #8e80c5;
  --fonte-principal: 'chunko';
  --fonte-secundaria: 'gotham';
}

@font-face {
  font-family: 'chunko';
  src: url(fonts/Chunko-Bold-Demo-BF67b2ec86adebe.otf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'gotham';
  src: url('fonts/gotham/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'gotham';
  src: url('fonts/gotham/Gotham-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'gotham';
  src: url('fonts/gotham/Gotham-Ultra.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}



body {
  background-color: var(--lilas-suave);
  background-image: url(Imagens/fundonuvens.png);
  background-size: cover;
  background-blend-mode: multiply;
  margin: 0.5rem;
  font-family: var(--fonte-secundaria);
  color: var(--verde-musgo);

}


header {
  font-family: var(--fonte-principal);
  text-align: center;
  color: var(--off-white);
  padding: 10px;
  margin: 10px;
  font-size: 3rem;
}

.site-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.side {
  padding: 1rem;
}

.content {
  padding: 2rem;
}

 h2, h3, h4 {
  font-weight: 700;
  margin: 0.5rem;
}

.menu-item, a {
  color: var(--verde-musgo);
  text-decoration: none;
}

.cards {
  background: var(--off-white);
  padding: 20px;
  width: 0.8fr;
  gap: 5px;
  margin: 0.5rem;
  height: fit-content;
  border: 4px solid;
  border-color: var(--verde-musgo);
  border-radius: 15px;
  position: relative;
}

cards:hover {
  transform: translateY(0.5em) translateX(-0.3em) scale(1.02);
}

main-card:hover{
  transform: translateY(0.5em) translateX(-0.3em) scale(1.02);
}

.main-card {
  background: var(--off-white);
  padding: 20px;
  width: 0.8fr;
  gap: 5px;
  height: fit-content;
  border: 4px solid;
  border-color: var(--verde-musgo);
  border-radius: 15px;
  position: relative;
  z-index: 9999;
}


.spotify-embed {
  position: relative;
  font-family: var(--fonte-secundaria);
  height: auto;
  color: var(--verde-musgo);
  max-width: 350px;
  margin: 1rem auto;
  text-align: center;
  justify-content: center;

}


.nuvem {
  position: absolute; /* Or absolute, depending on desired behavior */
  top: 50%;
  left: 0;
  animation: flyAcross 10s linear infinite alternate; /* Example animation */
  z-index: 999;
  pointer-events: none;
}

@keyframes flyAcross {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw - 100px)); /* Adjust 100px for image width */
  }
}

footer {
  color: var(--off-white);
  position: relative;
  text-align: center;
  padding: 0;
  margin-top: 40px;
}

.veve {
  background-image: url("gifveve.gif");
  background-repeat: repeat-x;
  background-size: contain; /* ou 60%, dependendo do efeito */
  background-position: bottom;
  display: block;
  width: 100%;
  height: 30px;
  gap: 0px;
}

.gif {
  max-width: 20vh;
}
