* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
  }
  
  body { 
    background: #0f172a; 
    color: #fff; 
    overflow-x: hidden; 
  }
  
  #map { 
    height: 50vh; 
    width: 100%; 
    border-radius: 0 0 24px 24px; 
  }
  
  .container { 
    padding: 20px; 
    max-width: 500px; 
    margin: 0 auto; 
  }
  
  .search-box {
    background: #1e293b;
    padding: 16px;
    border-radius: 16px;
    margin: -30px 16px 20px 16px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  
  .input-field {
    display: flex; 
    align-items: center; 
    gap: 12px;
    background: #334155; 
    padding: 14px; 
    border-radius: 12px;
    margin-bottom: 10px;
  }
  
  .input-field input { 
    background: transparent; 
    border: none; 
    color: #fff; 
    width: 100%; 
    outline: none; 
    font-size: 15px; 
  }
  
  .dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    flex-shrink: 0; 
  }
  
  .dot-green { 
    background: #22c55e; 
    box-shadow: 0 0 8px #22c55e; 
  }
  
  .dot-red { 
    background: #ef4444; 
    box-shadow: 0 0 8px #ef4444; 
  }
  
  .card {
    background: #1e293b; 
    padding: 16px; 
    border-radius: 16px;
    margin-bottom: 16px;
  }
  
  .card-title {
    margin-bottom: 12px; 
    font-size: 15px;
  }
  
  .payment-options { 
    display: flex; 
    gap: 12px; 
    overflow-x: auto; 
  }
  
  .pay-btn {
    min-width: 100px; 
    padding: 12px; 
    border-radius: 12px;
    background: #334155; 
    border: 2px solid transparent;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 6px;
    cursor: pointer; 
    transition: 0.2s; 
    flex: 1;
  }
  
  .pay-btn.active { 
    border-color: #22c55e; 
    background: #14532d; 
  }
  
  .pay-btn span { 
    font-size: 12px; 
  }
  
  .car-options { 
    display: flex; 
    gap: 12px; 
    overflow-x: auto; 
    padding-bottom: 4px; 
  }
  
  .car {
    min-width: 110px; 
    padding: 14px; 
    border-radius: 16px;
    background: #334155; 
    text-align: center; 
    cursor: pointer;
    border: 2px solid transparent; 
    transition: 0.2s; 
    flex: 1;
  }
  
  .car.active { 
    border-color: #facc15; 
    background: #422006; 
  }
  
  .car .price { 
    color: #facc15; 
    font-weight: bold; 
    margin-top: 6px; 
    font-size: 14px; 
  }
  
  .btn-pedir {
    width: 100%; 
    padding: 18px; 
    border-radius: 16px;
    background: linear-gradient(90deg, #facc15, #f59e0b);
    color: #000; 
    font-weight: bold; 
    font-size: 18px;
    border: none; 
    cursor: pointer; 
    transition: 0.2s;
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
  }
  
  .btn-pedir:disabled { 
    opacity: 0.5; 
    cursor: not-allowed; 
  }
  
  .btn-modal-submit {
    margin-top: 8px;
  }
  
  .status { 
    text-align: center; 
    padding: 12px; 
    font-size: 14px; 
    color: #94a3b8; 
  }
  
  /* Modal de Autenticação com Efeito Blur */
  .modal-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(6px);
    z-index: 9999; 
    display: flex; 
    align-items: flex-end; 
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .modal-overlay.hidden { 
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none; 
  }
  
  .modal-card {
    background: #1e293b; 
    width: 100%; 
    max-width: 480px;
    border-radius: 24px 24px 0 0; 
    padding: 28px 24px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  }
  
  .modal-card h2 { 
    margin-bottom: 6px; 
    font-size: 22px; 
  }
  
  .modal-card p { 
    color: #94a3b8; 
    font-size: 14px; 
    margin-bottom: 20px; 
  }
  
  .auth-form { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
  }
  
  .auth-form input {
    background: #334155; 
    border: 1px solid #475569; 
    padding: 14px;
    border-radius: 12px; 
    color: #fff; 
    outline: none; 
    font-size: 15px;
  }
  
  .auth-form input:focus { 
    border-color: #facc15; 
  }
  
  .auth-error { 
    color: #ef4444; 
    font-size: 13px; 
    margin-top: -6px; 
    margin-bottom: 8px; 
  }
  
  .hidden { 
    display: none !important; 
  }
  .auth-tabs {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid #334155;
  }
  
  .tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
  }
  
  .tab-btn.active {
    color: #38bdf8;
    border-bottom-color: #38bdf8;
  }
  
  .auth-error {
    background-color: #ef444422;
    border: 1px solid #ef4444;
    color: #f87171;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .hidden {
    display: none !important;
  }