.btn-modal-trigger {
    background-color: #6c757d;
    color: #fff;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-modal-trigger:hover {
    background-color: #5a6268;
  }
  
  .modal-style {
    border-radius: 1rem;
    overflow: hidden;
  }
  
  .modal-header {
    background-color: #0d6efd;
    color: #fff;
  }
  
  .modal-body {
    background-color: #f8f9fa;
    color: #333;
    font-size: 1.1rem;
  }
  
  .modal-footer {
    background-color: #f1f3f5;
  }
  


/*modal de empleo*/
.modal-content {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  

/*modal de festiviades*/

.modal-content {
  border-radius: 1.2rem;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom right, #ffffff, #f0f4f8);
  animation: fadeIn 0.5s ease-in-out;
}

.modal-header {
  background-color: #0d6efd;
  color: white;
  padding: 1rem 1.5rem;
  border-bottom: none;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
}
  
.modal-body {
  background: linear-gradient(180deg, #ffffff, #f9fafc);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  animation: fadeInUp .35s ease both;
  font-family: "Segoe UI", sans-serif;
}
.modal-body .modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f46e5; /* azul/índigo */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}
.modal-body p {
  font-size: 1rem;
  color: #374151; /* gris elegante */
  line-height: 1.5;
  margin: 0;
}
@keyframes fadeInUp {
  from {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ==== Hover/Interacción suave ==== */
.modal-body:hover {
  transform: translateY(-2px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.modal-footer {
  background-color: #f8f9fa;
  border-top: none;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
}

.btn-primary {
  background-color: #0d6efd;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #084298;
}

.btn-secondary {
  background-color: #6c757d;
  border: none;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
