/* CONTENEDOR */
.awn-plate-simple {
    width: 100%;
    margin-bottom: 24px;
}

/* FORMULARIO */
.awn-plate-form {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 16px;
    align-items: end;
    width: 100%;
}

/* INPUT */
.awn-plate-form input {
    width: 100%;
    height: 58px;
    border-radius: 12px;
    border: 1.5px solid #9aa4b2 !important;
    background: #ffffff !important;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    outline: none;
}

.awn-plate-form input::placeholder {
    color: #7b8794;
    opacity: 1;
}

/* HOVER INPUT */
.awn-plate-form input:hover {
    border-color: #aeb7c7;
    background: #ffffff;
}

/* FOCUS INPUT */
.awn-plate-form input:focus {
    border-color: #4f8df5;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(79, 141, 245, 0.12);
}

/* BOTON */
.awn-plate-form button {
    width: 100%;
    height: 58px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid #ff3b30;
    background: #ff3b30;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 14px rgba(255, 59, 48, 0.18);
}

.awn-plate-form button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

/* RESULTADO */
.awn-plate-result {
    margin-top: 30px;
}

/* TARJETA VEHÍCULO */
.awn-vehicle-card {
    background: #f8fafc;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 16px;
}

/* TÍTULO PRINCIPAL */
.awn-vehicle-name {
    font-size: 18px;
    font-weight: 800;
    color: #27314f;
    margin-bottom: 4px;
    line-height: 1.2;
}

/* VERSIÓN */
.awn-vehicle-version {
    font-size: 14px;
    color: #5c667d;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* GRID */
.awn-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

/* ITEM */
.awn-vehicle-item {
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

/* LABEL */
.awn-vehicle-label {
    display: block;
    color: #7b8794;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

/* VALUE */
.awn-vehicle-value {
    display: block;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.35;
}

/* MENSAJES */
.awn-loading {
    color: #27314f;
    font-weight: 600;
}

.awn-error-message {
    color: #dc2626;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .awn-plate-form {
        grid-template-columns: 1fr;
    }

    .awn-plate-form button {
        width: 100%;
    }

    .awn-vehicle-grid {
        grid-template-columns: 1fr;
    }
}