.hb-sim {
   /* background: var(--awb-color2);
    border-radius: 18px;
    padding: 32px 32px 28px;
    margin: 32px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", "Segoe UI", sans-serif;*/
}

.hb-sim-title {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.6rem;
    color: var(--awb-color7);
    font-weight: 700;
}

.hb-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 20px;
    align-items: end;
    margin-bottom: 24px;
}

.hb-field label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--awb-color8);
}

.hb-input-wrapper {
    position: relative;
}

.hb-input-wrapper input {
    /*width: 100%;
    padding: 12px 14px;
    padding-right: 60px;
    border-radius: 999px;
    border: 1px solid var(--awb-color3);
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    background: var(--awb-color1);*/
}

.hb-input-wrapper input:focus {
    border-color: var(--awb-color5);
    box-shadow: 0 0 0 2px rgba(200,155,103,0.25);
    background: var(--awb-color1);
}

.hb-sufijo {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--awb-color7);
    pointer-events: none;
}

.hb-btn {
    border-radius: var(--button-border-radius-top-left, 0) var(--button-border-radius-top-right, 0) var(--button-border-radius-bottom-right, 0) var(--button-border-radius-bottom-left, 0);
    border: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    justify-self: flex-start;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hb-btn-primary {
    background: var(--awb-color5);
    color: var(--awb-color1);
}

.hb-btn-primary:hover {
    background: var(--awb-color4);
}

.hb-resultados h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--awb-color7);
}

.hb-resultados p {
    margin: 4px 0;
    font-size: 0.95rem;
    color: var(--awb-color8);
}

.hb-nota {
    font-size: 0.8rem;
    color: var(--awb-color6);
    margin-top: 10px;
}

.hb-error {
    color: #b00020;
    font-weight: 500;
}

.hb-comparador-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.hb-comparador-col {
    background: var(--awb-color1);
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid var(--awb-color3);
}

.hb-comparador-col h5 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    color: var(--awb-color7);
}

@media (max-width: 640px) {
    .hb-sim {
        padding: 24px 18px 20px;
    }
    .hb-form {
        grid-template-columns: 1fr;
    }
    .hb-btn {
        width: 100%;
        justify-content: center;
    }
}
