body {
  background-color: rgba(256, 256, 256, 0.9);
  /* background-image: url('../assets/noise.png'); */
  background-repeat: repeat;
  background-size: auto;
  background-blend-mode: lighten;
  font-family: Inter, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

header {
    margin-top: 30px;
    margin-bottom: 80px;
}

.card-bg-effect {
    background-color: rgba(240, 136, 209, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
    border: none !important;
}


/* Cor de fundo quando o switch está ativo */
.form-check-input:checked {
  background-color: rgba(140, 140, 140, 0.5); /* ou uma cor como #28a745 */
  border-color: rgba(140, 140, 140, 0.5);
}

/* Cor do botão (o círculo) */
.form-check-input {
  background-color: #ccc;
  border-color: #ccc;
}

/* Mudar o botão quando estiver ativo */
.form-check-input:checked::before {
  background-color: #fff; /* cor do círculo */
}


/* Animate the words on top */

.andi-title span {
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}

.andi-title span.animate-out {
  transform: translateY(-10px);
  opacity: 0;
}

.andi-title span.animate-in {
  transform: translateY(10px);
  opacity: 0;
  animation: riseUp 0.4s forwards;
}

@keyframes riseUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


@media (max-width: 767.98px) {
  .disappear {
    display: none !important;
  }
}


.fade-line {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#animated-text span,
#animated-text-pt span {
  color: #a087b9; /* light purple */
  opacity: 0.3;
  transition: color 0.5s ease, opacity 0.5s ease;
  font-size: 1.7rem;
}

/* make them visible one by one */
#animated-text span.visible,
#animated-text-pt span.visible {
  color: black;
  opacity: 1;
}

/* ✨ Custom color for the word "blog" */
#animated-text .special-word.visible,
#animated-text-pt .special-word.visible, .iris-word {
  color: #4b0082; /* dark purple (Indigo) */
}

/* Site footer */
.site-footer-row {
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
}

.site-footer-email a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.site-footer-privacy {
  font-size: 0.75em;
  font-weight: 500;
  opacity: 0.75;
}

.site-footer-privacy:hover {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .site-footer-row {
    font-size: 1rem;
  }

  .site-footer-email {
    text-align: center;
  }
}

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  display: none;
  padding: 1rem;
  pointer-events: none;
}

#cookie-banner.is-visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: rgba(140, 140, 140, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: Inter, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.cookie-banner-text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #212529;
  text-align: left;
}

.cookie-banner-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-btn {
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cookie-btn-accept {
  background-color: #343a40;
  color: #f8f9fa;
}

.cookie-btn-accept:hover {
  background-color: #ffc107;
  color: #212529;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #212529;
  border: 1px solid rgba(33, 37, 41, 0.35);
}

.cookie-btn-reject:hover {
  background-color: rgba(33, 37, 41, 0.08);
}

