.rozha-one-regular {
  font-family: "Rozha One", serif;
  font-weight: 400;
  font-style: normal;
}

.sm-txt {
  font-size: 20px;
  color: #f5ecd9;
  letter-spacing: -1.5px;
}

/* Logo */
.logo-top-index {
  margin-top: 2%;
  max-width: 85px;
  max-height: 85px;
}

@media (max-width: 600px) {
  .logo-top-index {
    margin-top: 1%;
    max-width: 60px;
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .logo-top-master {
    max-width: 350px;
  }
}

/* Rodapé */
.copy-txt {
  font-size: 25px;
  color: #f5ecd9;
  letter-spacing: -1.5px;
}

@media (max-width: 600px) {
  .copy-txt {
    font-size: 15px;
    color: #f5ecd9;
    letter-spacing: -1.5px;
  }
}

/* Animação mensagem de sucesso */
.sent-message,
.error-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  background: #e7ffe7;
  color: #219150;
  border: 1px solid #b4eab4;
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 16px;
  box-shadow: 0 6px 16px rgba(50, 200, 120, 0.10);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.6, .04, .98, .335);
}

.sent-message.active {
  display: flex;
  opacity: 1;
}

/* Estilo e animação do joinha */
.sent-message .fa-thumbs-up {
  font-size: 1.5em;
  margin-right: 8px;
  color: #29b667;
  opacity: 0;
  transform: scale(0.2) rotate(-30deg);
  transition: none;
}

.sent-message.active .fa-thumbs-up {
  animation: thumbsUpPop 0.7s cubic-bezier(.6, .04, .98, .335);
  opacity: 1;
  transform: scale(1) rotate(0);
}

@keyframes thumbsUpPop {
  0% {
    transform: scale(0.2) rotate(-30deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.25) rotate(5deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.content-principal h2 {
  font-size: 2em;
}

#cookie-banner-flex {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#cookie-banner-message {
  font-size: 1rem;
  flex: 1 1 300px;
  min-width: 180px;
}

#cookie-banner-buttons {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  flex: 0 1 300px;
  min-width: 200px;
}

@media (max-width:600px) {
  /* #cookie-banner-flex {
    flex-direction: column;
    align-items: stretch;
  } */

  #cookie-banner-buttons {
    margin-top: 10px;
    flex: 1 1 100%;
    justify-content: flex-end;
  }
}