﻿.modal-header {
  border-bottom: none;
  padding-left: 1.5rem;
}


h5.modal-title {
  font-size: 1.5rem;
}

.modal-footer {
  background: #fbfbfb;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0.8rem;
}



.hover-shadow:hover {
  background-color: #f1f7fc !important; 
}

.cursor-pointer {
  cursor: pointer;
}

table .dropdown-menu {
  min-width: auto !important;
  width: auto !important;

}

footer {
  position: relative;
  z-index: -1;
}

.evento-descricao-geral table {
  width: 100%;
  border: solid 1px var(--bs-border-color);
}

.evento-descricao-geral table tr th, .evento-descricao-geral table tr td
{
  padding: 0.4rem;
}

.evento-descricao-geral table tr th, .evento-descricao-geral table tr td
{
  padding: 0.4rem;
  border: solid 1px var(--bs-border-color);

}

.image-text-shadow {
  text-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}

.image-box-shadow {
  box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}



 /* Estilo para Tabs Modernas */
 .modern-tabs .nav-pills .nav-link {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 12px 24px;
  color: #6c757d;
  font-weight: 500;
  margin: 0 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-tabs .nav-pills .nav-link:hover {
  color: #495057;
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

.modern-tabs .nav-pills .nav-link.active {
  background: linear-gradient(45deg, #274df8, #764ba2);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Estilo para Tabs com Underline */
.underline-tabs .nav-tabs {
  border-bottom: 2px solid #e9ecef;
}

.underline-tabs .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: #6c757d;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease;
}

.underline-tabs .nav-tabs .nav-link:hover {
  color: #274df8;
  background: transparent;
  border-color: transparent;
}

.underline-tabs .nav-tabs .nav-link.active {
  color: #274df8;
  background: transparent;
  border-color: transparent;
  border-bottom: 3px solid #274df8;
}

.underline-tabs .nav-tabs .nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #274df8, #764ba2);
  border-radius: 2px;
}

/* Estilo para Navigation Cards */
.nav-cards .nav-link {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  color: #6c757d;
  padding: 20px;
  margin: 0 10px 10px 0;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-cards .nav-link:hover {
  background: #f8f9fa;
  border-color: #274df8;
  color: #274df8;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-cards .nav-link.active {
  background: linear-gradient(45deg, #274df8, #764ba2);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.nav-cards .nav-link i {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

/* Animação do conteúdo das tabs */
.tab-pane {
  animation: fadeInUp 0.5s ease;
  
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


h1, h2, h3 {
  color: #343a40;
}

/* Estilo responsivo */
@media (max-width: 768px) {
  .nav-cards .nav-link {
      margin: 5px 0;
      padding: 15px;
  }
  
  .modern-tabs .nav-pills .nav-link {
      margin: 5px 0;
      display: block;
  }
}