body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

#calendar .fc-today-button {
    display: none;
}



.card-img-top {
  height: 250px; /* você pode ajustar a altura aqui */
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.card {
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
}


h1, h2, h3 {
  color: #05101c; /* Azul Escuro */
}

a {
  color: #05101c;
}

.btn-success {
  background-color: #05101c;
  border: none;
}

.btn-success:hover {
  background-color: #0a1f35;
}

footer {
  background-color: #222;
  color: white;
}

footer a {
  color: #D4AF37;
}

/* FullCalendar Custom */
#calendar {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(5, 16, 28, 0.2);
}

.fc .fc-toolbar-title {
  color: #05101c;
  font-size: 1.5rem;
}

.fc .fc-button {
  background-color: #05101c;
  border: none;
  color: white;
}

.fc .fc-button:hover {
  background-color: #0a1f35;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: #f0f8ff;
}

/* Formulário */
form label {
  font-weight: 600;
  color: #05101c;
}

.form-check-label a {
  text-decoration: underline;
}
