
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}
body {
    background-color: #dddddd;
}
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

.header {
    position: relative;
    height: 300px; /* Ajuste a altura conforme necessário */
    animation: delay-image 1s;
    background-image: url('https://bonfim-rr.locais.co/fundo/1440x560/bonfim-rr.webp');
    background-size: cover;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.container {
    margin-top: 100px;
}
.profile-image {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* Ajuste o tamanho conforme necessário */
    height: 200px; /* Ajuste o tamanho conforme necessário */
    border-radius: 50%;
    animation: delay-image 1s;
    background-image: url('https://bonfim-rr.locais.co/logo/200x200/bonfim-rr.webp');
    background-size: 201px;
    background-position: center;
    background-color: #fff;
    background-repeat: no-repeat;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.logos {
    width: 120px; /* Ajuste o tamanho conforme necessário */
    height: 120px; /* Ajuste o tamanho conforme necessário */
    border-radius: 50%;
    animation: delay-image 1s;
    background-position: center;
    background-color: #fff;
    background-repeat: no-repeat;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    margin: 10px;
}
a {
  color: #003366; /* Cor de primeiro plano (links) */
  text-decoration: none;
}

a:hover {
  color: #002244; /* Cor de primeiro plano (links ao passar o mouse) */
/*  text-decoration: underline;*/
}
/* Define a classe para atrasar o carregamento da imagem */
.delayed-image {
  animation: delay-image 1s;
}

.search-form {
display: flex;
align-items: center;
background-color: #f2f2f2;
border-radius: 20px;
padding: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
margin-block: auto;
}
.search-form input[type="text"] {
flex: 1;
border: none;
outline: none;
background-color: transparent;
font-size: 16px;
padding: 8px 0;
margin-left: 10px;
}
.search-form button {
background-color: transparent;
border: none;
outline: none;
cursor: pointer;
font-size: 18px;
color: #666;
margin-left: 10px;
}
.search-form button i {
display: inline-block;
width: 25px;
height: 25px;
background-image: url('search-icon.svg');
background-size: contain;
background-repeat: no-repeat;
margin-top: 6px;
}

/* Define a animação com o atraso */
@keyframes delay-image {
  0% { opacity: 0; } /* Começa com a imagem invisível */
  100% { opacity: 1; } /* Termina com a imagem totalmente visível */
}
.collapse-content {
  display: none;
}
.vermelho {
    color: red;
}
.azul {
    color: blue;
}
.form-select {
    background-color: #f2f2f2;
    border: var(--bs-border-width) solid #f2f2f2;
}
.collapse-container {
  width: 80%;
  margin: 0 auto;
}

.collapse-item {
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-bottom: 10px;
}

.collapse-header {
  background-color: #f0f0f0;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 20px;
}

.collapse-header h3 {
  margin: 0;
}

.collapse-content {
  padding: 10px;
  display: none;
}

.logo {
  display: inline-block;
}

.logo::before,
.logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #000;
  animation: waves 2s linear infinite;
}

.logo::before {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.logo::after {
  width: 120%;
  height: 120%;
  animation-delay: 1s;
}

@keyframes waves {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.share-button {
  position: relative;
  display: inline-block;
}

.share-button .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.share-button .btn:hover {
  background-color: #555;
}

.share-button .btn i { 
font-size: 18px;
}
.share-button .dropdown-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
  display: none;
  min-width: 160px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.share-button .dropdown-menu a {
  display: block;
  padding: 5px 0;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.share-button .dropdown-menu a:hover {
  background-color: #f5f5f5;
}