@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);
  }
}

/* Ícones sociais via Simple Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  line-height: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-icons a img {
  width: 42px !important;
  height: 42px !important;
  display: block;
}

.social-icons a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* Evita sublinhado herdado nos ícones sociais */
.social-icons a:hover img,
.social-icons a img {
  filter: none;
}

/* Posiciona o ícone do Instagram no canto superior direito dos cards */
.card .card-body {
  position: relative;
}

.social-icons.ig-top-right {
  position: absolute;
  top: 10px;
  right: 10px;
  margin-top: 0;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

/* Navbar: align and style language selector */
#mainNav .nav-item #langSelect {
  display: inline-block;
  width: auto;
  margin: 0;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
}

#mainNav .nav-item #langSelect:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.6);
}

#mainNav .nav-item #langSelect option {
  color: #000; /* ensure options are readable in dropdown */
}