@charset "UTF-8";

.navbar-brand img {
  height: 70px;
  width: auto;
}

.event-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 90%;
  width: 100%;
  position: absolute;
}

.fa-brands {
  padding: 20px;
  font-size: 30px !important;
  width: 70px !important;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

a {
  text-decoration: none;
  /* remove o sublinhado */
  color: inherit;
  /* herda a cor do elemento pai */
}

/* Opcional: adicionar efeito de hover */
a:hover {
  text-decoration: underline;
  /* mostra sublinhado apenas ao passar o mouse */
  color: #007BFF;
  /* muda a cor ao passar o mouse */
}

.img-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.reveal-img {
  width: 350px;
  max-width: 90vw;
  border-radius: 28px;
  animation: pulse 2s infinite;
  display: block;
  margin: 0 10px;
  background: transparent;
}

.reveal-img-20anos {
  width: 400px;
  max-width: 90vw;
  border-radius: 28px;
  display: block;
  margin: 0 10px;
  background: transparent;
}

.small-img {
  width: 180px;
  max-width: 50vw;
}

.card-img-top {
  height: 200px;
  /* ajuste conforme necessário */
  object-fit: cover;
  /* mantém o enquadramento central */
}

.calendar-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.calendar-btn img {
  vertical-align: middle;
}

.calendar-btn.google:hover {
  background: #4285F4;
  color: #fff;
}

.calendar-btn.apple:hover {
  background: #000;
  color: #fff;
}

.logo-reduzida {
  margin-top: 20px !important;
  width: 200px;
  /* ajuste o tamanho que quiser */
  height: auto;
  /* mantém proporção */
  display: block;
  margin: 0 auto;
  /* centraliza */
}

:root {
  --bs-primary-rgb: 84, 188, 232 !important;
}


#mainNav .navbar-nav>li.nav-item>a.nav-link.active {
  color: #fff;
  background: #54bce8 !important;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

#lang-select {
  border: none;
  background: transparent;
  color: #fff;
  font-weight: bold;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.lang-selector img {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  display: inline-block;
}

.lang-selector select {
  color: #000 !important;
  /* Texto preto */
  background: #fff;
  /* Fundo branco */
  border: none;
  /* Remove borda padrão, se quiser */
  font-size: 14px;
  /* Ajuste de tamanho se necessário */
  appearance: none;
  /* Remove o estilo nativo do select */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}