/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #0f0f1a;
  color: #fff;
  padding-bottom: 70px; /* espaço para o footer fixo */
  padding-top: 70px;    /* espaço para o header fixo */
}

/* ===== HEADER COM MENU HAMBURGUER ===== */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e1e2e;
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  box-sizing: border-box;
}

.logo-area {
  flex: 1;
}

.header-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
}

/* Botão hambúrguer maior */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;   /* aumentado */
  height: 30px;  /* aumentado */
}

.hamburger span {
  display: block;
  height: 4px;   /* mais grossa */
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #1e1e2e;
  color: white;
  z-index: 1100;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #333;
}

.menu-logo {
  height: 35px;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.menu-links li {
  border-bottom: 1px solid #333;
}

.menu-links a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  transition: background 0.2s;
}

.menu-links a:hover,
.menu-links a:focus {
  background: #ff6a00;
}

.menu-footer {
  padding: 20px;
  border-top: 1px solid #333;
  text-align: center;
}

/* Botão Sair dentro do menu lateral */
.logout-btn {
  background: #ff0a0a;        /* cor personalizada */
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 8px 14px;          /* padding vertical um pouco maior para melhor toque */
  font-size: 13px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  width: 100%;                /* <-- essencial: ocupa toda a largura do menu */
  margin-top: 10px;           /* <-- espaçamento superior */
  transition: 0.2s;
  box-shadow: 0px 0px 8px rgba(255, 106, 0, 0.6); /* ajuste a intensidade */
}
.logout-btn:hover {
  background: #d40808;        /* tom mais escuro ao passar o mouse */
  transform: scale(0.98);
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ===== CARDS ===== */
.card {
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 20px;
  margin: 15px;
  border: 1px solid #ff6a00;
}

/* ===== TÍTULOS ===== */
h1, h2, h3 {
  color: #ffaa44;
  margin-bottom: 15px;
}

/* ===== BOTÕES ===== */
.btn {
  background: linear-gradient(95deg, #ff6a00, #ff8c2e);
  border: none;
  border-radius: 40px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  margin-top: 10px;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(0.98);
}

.btn-secondary {
     background: #ff0a0a;
     border: 1px solid #ffffff;
     border-radius: 40px;
     padding: 6px 14px;
     font-size: 13px;
     cursor: pointer;
     width: 100%;
     box-shadow: 0px 0px 80px rgba(255, 106, 0, 0.6);
    }

/* ===== FORMULÁRIOS ===== */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #ddd;
}

.desc {
  font-size: 11px;
  color: #888;
  margin-bottom: 5px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid rgba(255,106,0,0.5);
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 14px;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: #ff6a00;
}

/* ===== MAPA ===== */
#mapa {
  height: 40vh;
  border-radius: 20px;
  margin: 12px 0;
  border: 1px solid #ff6a00;
}

.msg-mapa {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  margin: 8px 0;
  background: rgba(0,0,0,0.4);
  padding: 6px;
  border-radius: 30px;
}

.input-box {
  background: rgba(0,0,0,0.5);
  padding: 12px 15px;
  border-radius: 40px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,106,0,0.5);
}

.input-box input {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.input-box button {
  background: #000000;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  box-shadow: 0 0 3px #ffffff;
}

.sugestoes {
  background: #1e1e2f;
  border-radius: 16px;
  margin-bottom: 12px;
  max-height: 150px;
  overflow-y: auto;
}

.sugestao {
  padding: 10px 15px;
  border-bottom: 1px solid #334155;
  cursor: pointer;
  font-size: 14px;
}

.sugestao:hover {
  background: #ff6a00;
  color: black;
}

.resultado {
  background: rgba(0,0,0,0.6);
  padding: 16px;
  border-radius: 24px;
  margin-top: 20px;
  text-align: center;
  display: none;
}

.preco {
  font-size: 28px;
  font-weight: bold;
  color: #4caf50;
  text-shadow: 0 0 5px #4caf50;
}

/* ===== STATUS DE LOGIN ===== */
#loginStatus {
  background: #ff6a00;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  margin: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.logout-btn {
  background: #ff0a0a;
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  align-items: center;
  box-shadow: 0px 0px 80px rgba(255, 106, 0, 0.6);
}

/* ===== FOOTER FIXO ===== */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #ff6a00;
  z-index: 1000;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
  transition: 0.2s;
}

.footer-item.active {
  color: #ff6a00;
}

.footer-icon {
  font-size: 24px;
  margin-bottom: 2px;
}

/* ===== MODAL DE LOGIN ===== */
.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}

.auth-container {
  background: #1e1e2e;
  border-radius: 28px;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  box-shadow: 0 0 30px rgba(255,106,0,0.3);
  border: 1px solid rgba(255,106,0,0.5);
}

.auth-container h3 {
  text-align: center;
  margin-bottom: 10px;
  color: #ffaa44;
}

.auth-logo {
  display: block;
  width: 150px;
  margin: 0 auto 15px auto;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #334155;
  padding-bottom: 8px;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  border-radius: 30px;
  background: #2a2a3a;
  transition: 0.2s;
  color: #ccc;
}

.auth-tab.active {
  background: #ff6a00;
  color: white;
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.auth-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 30px;
  border: 1px solid #ff6a00;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 14px;
  outline: none;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: #ff6a00;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 5px;
}

.auth-close {
  background: #555;
  margin-top: 10px;
}

.auth-error {
  color: #ff8888;
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
}

.divider {
  text-align: center;
  margin: 15px 0;
  color: #aaa;
  font-size: 12px;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #444;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.google-btn {
  background: #4285f4;
}

.link-alternate {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.link-alternate span {
  color: #ffaa44;
  cursor: pointer;
  text-decoration: underline;
}

/* Modal de boas-vindas */
.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.welcome-card {
  background: #1e1e2e;
  border-radius: 28px;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  text-align: center;
  border: 1px solid #ff6a00;
  box-shadow: 0 0 30px rgba(255,106,0,0.3);
  position: relative;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  transition: 0.2s;
}

.welcome-close:hover {
  color: #ff6a00;
}

.welcome-logo {
  width: 180px;
  margin-bottom: 20px;
}

.welcome-title {
  color: #ffaa44;
  font-size: 20px;
  margin-bottom: 12px;
}

.welcome-description {
  color: #ddd;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.welcome-btn {
  background: #ff6a00;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}

.welcome-btn:hover {
  background: #ff8c2e;
  transform: scale(0.98);
}

/* Banner do modal de boas-vindas */
.welcome-banner {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid #ff6a00;
}

/* Seção patrocinada */
.sponsored-section {
  margin: 20px 15px;
  position: relative;
  background: rgba(0,0,0,0.3);
  border-radius: 16px;
  padding: 15px 0;
}

.sponsored-badge {
  position: absolute;
  top: -10px;
  left: 15px;
  background: #ff6a00;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.sponsors-swiper {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  background: transparent;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.swiper-pagination-bullet-active {
  background: #ff6a00 !important;
  font-size: 3px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ff6a00;
  background: rgba(0,0,0,0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
}

/* Responsividade */
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none; /* em mobile, usa apenas swipe */
  }
  .sponsored-section {
    margin: 15px;
  }
}

#fotoPreview img, #cnhPreview img {
  max-width: 100px;
  max-height: 100px;
  border-radius: 8px;
  border: 1px solid #ff6a00;
  margin-top: 5px;
}

/* Estilo para campos de upload de arquivo */
.auth-input[type="file"] {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #ff6a00;
  border-radius: 30px;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Para navegadores WebKit (Chrome, Edge, Safari) – personaliza o botão "Escolher arquivo" */
.auth-input[type="file"]::-webkit-file-upload-button {
  background: #ff6a00;
  border: none;
  border-radius: 30px;
  padding: 6px 15px;
  margin-right: 12px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.auth-input[type="file"]::-webkit-file-upload-button:hover {
  background: #ff8c2e;
  transform: scale(0.98);
}

/* Para Firefox */
.auth-input[type="file"]::file-selector-button {
  background: #ff6a00;
  border: none;
  border-radius: 30px;
  padding: 6px 15px;
  margin-right: 12px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.auth-input[type="file"]::file-selector-button:hover {
  background: #ff8c2e;
  transform: scale(0.98);
}

/* Espaço entre os campos de upload e as pré‑visualizações */
#fotoPreview, #cnhPreview {
  margin-top: 8px;
  text-align: center;
}

/* Estilo para upload personalizado */
.file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.file-upload-btn {
  background: #ff6a00;
  border: none;
  border-radius: 30px;
  padding: 8px 16px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.file-upload-btn:hover {
  background: #ff8c2e;
  transform: scale(0.98);
}

#fotoNome, #cnhNome {
  color: #ccc;
  font-size: 13px;
  word-break: break-all;
}

.notif-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}
.notif-modal.visible {
  visibility: visible;
  opacity: 1;
}
.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}
.alert-modal.visible {
  visibility: visible;
  opacity: 1;
}

.notif-modal, .alert-modal {
  visibility: hidden !important;
  opacity: 0 !important;
}
.notif-modal.visible, .alert-modal.visible {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Botão WhatsApp estilizado */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  border-radius: 40px;
  padding: 6px 16px;
  color: white;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(37,211,102,0.4);
  background: linear-gradient(135deg, #20b859, #0e6e5c);
}

.btn-whatsapp:active {
  transform: scale(0.98);
}



/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

/* Taxímetro */
.taximetro-card {
  background: #2a2a3a;
  border-radius: 20px;
  padding: 16px;
  margin-top: 15px;
  border: 1px solid #ffaa44;
  text-align: center;
}
.taximetro-valor {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffaa44;
  margin: 10px 0;
}
.taximetro-detalhes {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0;
  font-size: 0.9rem;
}
.taximetro-detalhes div {
  background: #1e1e2e;
  padding: 8px;
  border-radius: 12px;
  flex: 1;
}
.taximetro-botao {
  background: #ff6a00;
  border: none;
  border-radius: 30px;
  padding: 8px 16px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

/* Modal do taxímetro */
.taximetro-modal .modal-content {
  background: #1e1e2e;
  border-radius: 28px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
  border: 2px solid #ff6a00;
}
.taximetro-modal .taximetro-valor {
  font-size: 3rem;
}
.taximetro-modal .taximetro-detalhes {
  flex-direction: column;
}
.taximetro-modal .taximetro-detalhes div {
  background: #2a2a3a;
  margin-bottom: 8px;
}

/* Estilos padronizados para botões dos modais */
.concluir-modal button, 
.alert-modal button, 
.confirm-modal button, 
.notif-modal button {
  background: #ff6a00;
  border: none;
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.2s;
}
.concluir-modal button:hover, 
.alert-modal button:hover, 
.confirm-modal button:hover, 
.notif-modal button:hover {
  background: #ff8c33;
}
/* Botão "Não" do confirm-modal fica cinza */
.confirm-modal .confirm-btn-no {
  background: #555;
}
.confirm-modal .confirm-btn-no:hover {
  background: #777;
}

/* ========== MENU LATERAL UNIFICADO ========== */
.side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #1e1e2e;
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -2px 0 10px rgba(0,0,0,0.5);
}
.side-menu.open {
  right: 0;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ff6a00;  /* linha laranja */
  flex-shrink: 0;
}
.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: #ff6a00;   /* X laranja */
  cursor: pointer;
}
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  overflow-y: visible;
}
.menu-links li a {
  display: block;
  padding: 12px 20px;
  color: #eee;
  text-decoration: none;
  border-bottom: 1px solid #333;
  transition: 0.2s;
}
.menu-links li a:hover {
  background: #ff6a00;
  color: white;
}
.menu-footer {
  padding: 16px;
  border-top: 1px solid #333;
  text-align: center;
  flex-shrink: 0;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

  /* Modais (idênticos ao motorista.html) */
  .concluir-modal, .alert-modal, .confirm-modal, .notif-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
  }
  .concluir-modal.visible, .alert-modal.visible, .confirm-modal.visible, .notif-modal.visible {
    visibility: visible;
    opacity: 1;
  }
  .concluir-modal-content, .alert-modal-content, .confirm-modal-content, .notif-modal-content {
    background: #1e1e2e;
    border-radius: 28px;
    width: 85%;
    max-width: 320px;
    padding: 24px;
    text-align: center;
    border: 2px solid #ff6a00;
    box-shadow: 0 0 20px rgba(255,106,0,0.5);
    animation: fadeInUp 0.3s ease;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .confirm-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
  }
  .confirm-btn {
    background: #ff6a00;
    border: none;
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    min-width: 80px;
  }
  .confirm-btn-no {
    background: #555;
  }
  .btn-voltar {
    display: inline-block;
    margin: 15px;
    padding: 8px 16px;
    background: #ff6a00;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
  }
  .btn-voltar:hover {
    background: #ff8c2e;
  }

/* ========== TAXÍMETRO (estilo completo do motorista.html) ========== */
.taximetro-card {
  background: #2a2a3a;
  border-radius: 20px;
  padding: 20px;
  margin: 15px;
  border: 2px solid #ffaa44;
  text-align: center;
}
.taximetro-valor-grande {
  font-size: 3rem;
  font-weight: bold;
  color: #ffaa44;
  margin: 15px 0;
}
.taximetro-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0;
  font-size: 1rem;
}
.taximetro-info div {
  background: #1e1e2e;
  padding: 10px;
  border-radius: 12px;
  flex: 1;
}
.taximetro-bandeiras {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.taximetro-bandeiras button {
  flex: 1;
  padding: 8px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: #ffaa44;
  color: #1e1e2e;
}
.taximetro-bandeiras button.active {
  background: #ff6a00;
  color: white;
  border: 2px solid white;
}
.taximetro-bandeiras button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.taximetro-botoes {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.taximetro-botoes button {
  flex: 1;
  padding: 12px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}
.btn-taxi-iniciar {
  background: #4caf50;
  color: white;
}
.btn-taxi-pausar {
  background: #ff9800;
  color: white;
}
.btn-taxi-finalizar {
  background: #f44336;
  color: white;
}
.btn-taxi-iniciar:disabled,
.btn-taxi-pausar:disabled,
.btn-taxi-finalizar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.taximetro-valor-total {
  font-size: 1.4rem;
  color: #ffaa44;
  font-weight: bold;
  display: inline-block;
  margin-top: 8px;
  text-shadow: 0 0 5px rgba(255,106,0,0.5);
}
.valor-total-neon {
  font-size: 2.4rem;
  color: #00ff00;
  font-weight: bold;
  text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
  display: inline-block;
}
.status-taxi-msg {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #aaa;
}
.install-fixed {
  position: fixed;
  top: 320px; /* ajuste conforme a altura do seu cabeçalho */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: #ff0a0a;
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0px 0px 8px rgba(255, 106, 0, 0.6);
  display: none;
}
.install-fixed:hover {
  background: #d40808;
  transform: translateX(-50%) scale(0.98);
}
