/* Menú de selección de cotización pública (auto/moto) — sin login.
   Pantalla FORM sobre el sistema nuevo: card pública centrada + las dos opciones de
   tipo de seguro. Tipografía, tokens y botones salen de la base.

   Sin reglas de dark mode a propósito: pantalla pública sin login, siempre en claro.
   El template fuerza data-theme claro antes de pintar; no agregar
   `html[data-theme="dark"]` acá. */

.menu-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card {
    width: 100%;
    background: var(--woker-surface);
    border-radius: 16px;
    box-shadow: var(--woker-card-shadow);
    border: 1px solid var(--woker-border);
    padding: 34px 24px 28px;
}

.brand-block { text-align: center; margin-bottom: 24px; }

.brand-logo {
    display: block;
    width: fit-content;
    max-width: 40%;
    height: auto;
    margin: 0 auto 30px;
}

.brand-logo img { display: block; width: auto; height: auto; max-width: 100%; max-height: none; }

.brand-title { margin: 0 0 4px; font-size: 22px; font-weight: 700; color: var(--woker-ink); }

.brand-matricula { margin: 0; font-size: 13px; color: var(--woker-muted); }

.menu-subtitle { margin: 0 0 26px; font-size: 15px; color: var(--woker-muted); text-align: center; }

.menu-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto;
}

.menu-option {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* <a> sin color propio hereda el link-color azul de Bootstrap */
    color: var(--woker-ink);
    text-decoration: none !important;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid var(--woker-border-fuerte);
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06);
    transition: all 200ms ease;
    background: var(--woker-surface);
}

.menu-option:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(16, 24, 40, .12);
    border-color: rgba(var(--woker-violet-rgb), .35);
}

.option-content { display: flex; align-items: flex-start; gap: 10px; width: 100%; }

/* En esta pantalla los dos íconos (auto/moto) quedan siempre sobre fondo blanco:
   el matiz violeta suave original quedaba tapado por el override que ya traían. */
.option-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--woker-violet);
    background: var(--woker-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.option-meta { display: flex; flex-direction: column; justify-content: center; }

.option-title { margin: 0; font-size: 18px; font-weight: 600; color: var(--woker-ink); line-height: 1.1; }

.option-text { margin: 2px 0 0; color: var(--woker-muted); font-size: 14px; line-height: 1.4; }

.menu-footer {
    margin: 14px auto 0;
    max-width: 360px;
    text-align: center;
    font-size: 11px;
    color: var(--woker-subtle);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .menu-container { max-width: 600px; padding: 40px 20px; }
}
