.seminuevos-page {
    width: 92%;

    margin: 40px auto 0;
}

.seminuevos-card {
    min-height: 340px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: rgba(255,255,255,0.92);

    border-radius: 28px;

    padding: 40px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);

    color: #053985;
}

.seminuevos-card h1 {
    font-family: 'Oxygen', sans-serif;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;

    color: #0b3f92;

    margin-bottom: 26px;
}

.seminuevos-card p {
    font-size: 18px;

    line-height: 1.7;

    max-width: 720px;

    margin: 0 auto;
}

.seminuevos-card p::before {
    content: "❄";

    color: #5fa8ff;

    margin-right: 12px;

    font-size: 1.1em;

    vertical-align: middle;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .seminuevos-card {
        min-height: 260px;

        padding: 26px;
    }

    .seminuevos-card h1 {
        font-size: 24px;
    }

    .seminuevos-card p {
        font-size: 16px;

        line-height: 1.6;
    }
}