/* Fundo suave e tipografia clean */
body {
    background-color: #f0f4fa;
    color: #0a2f5a;
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Container centralizado */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    text-align: center;
    padding: 2rem;
  }
  
  /* Título principal */
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  /* Descrição opcional abaixo do título */
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.5;
  }
  
  /* Botões grandes e arredondados */
  .btn-route {
    display: inline-block;
    margin: 0.5rem 1rem;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    border: 2px solid #0d6efd;
    border-radius: 8px;
    color: #0d6efd;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
  }
  
  
  .btn-route:hover {
    background-color: #0d6efd;
    color: #fff;
  }
  
  /* em public/assets/css/style.css */
.dropdown-menu {
  max-height: none !important;
  overflow: visible !important;
}

/* Força o btn-rem-emp a 1.2rem x 1.2rem */
.accordion-header .btn-rem-emp {
  width: 1.2rem !important;
  height: 1.2rem !important;
  padding: 0;
  margin-left: .5rem;
}
