.text-laranja {
    color: #FF6A00 !important;
  }
  
  .btn-laranja {
    background-color: #FF6A00;
    color: white;
    border: none;
  }
  
  .btn-laranja:hover {
    background-color: #e55e00;
    color: white;
  }
  
  .btn-outline-laranja {
    color: #FF6A00;
    border: 2px solid #FF6A00;
    background-color: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 106, 0, 0.3);
  }
  
  .btn-outline-laranja:hover {
    background-color: #FF6A00;
    color: #fff;
    box-shadow: 0 6px 12px rgba(255, 106, 0, 0.5);
    transform: translateY(-2px);
  }

  form input:focus,
form textarea:focus,
form select:focus {
  border-color: #FF6A00 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.25) !important;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 106, 0, 0.1);
    border: 1px solid #FF6A00;
  }
  
  .accordion-button.collapsed {
    border: 1px solid #dee2e6;
  }
  
  .accordion-button:focus {
    box-shadow: none !important;
  }

  .custom-horarios {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
  }
  
  .custom-horarios thead th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
  }
  
  .custom-horarios th,
  .custom-horarios td {
    padding: 1rem;
    vertical-align: middle;
  }
  
  .custom-horarios td.text-danger {
    font-weight: 500;
    color: #FF6A00 !important;
  }

  /* Estilo base para checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #FF6A00;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: all 0.2s ease-in-out;
}

/* Quando está marcado */
input[type="checkbox"]:checked {
  background-color: #FF6A00;
  border-color: #FF6A00;
}

#mensagemEnviada {
  display: none;
}
