.main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 48px 20px;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 620px;
    margin: auto;
    background: var(--surface);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(20, 25, 43, 0.08);
}

h3 {
    text-align: center;
    padding-bottom: 24px;
    font-weight: 700;
    font-size: 1.4em;
    color: var(--text);
}

h5 {
    text-align: center;
    padding: 24px 0 0;
    font-size: 0.8em;
    color: var(--text-muted);
}

.containerprecios {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.precios {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border-radius: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    background: var(--bg);
}

.precios h4 {
    margin: 0;
    font-weight: 600;
    color: var(--text);
    font-size: 0.98em;
}

.precios h4[id^="fecha"] {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8em;
}

.precios h4[id^="resultado"] {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.05em;
}

@media screen and (max-width: 640px) {
    .container {
        padding: 24px;
    }

    .precios {
        flex-wrap: wrap;
        gap: 4px;
    }
}
