* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f3f5f7;
    color: #1d2733;
    font-family: Arial, Helvetica, sans-serif;
}

.contenedor {
    width: min(100% - 32px, 760px);
    margin: 0 auto;
    padding: 60px 0;
}

.tarjeta {
    padding: 36px;
    background: #ffffff;
    border: 1px solid #e2e7ec;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(20, 35, 50, 0.08);
}

h1 {
    margin: 14px 0 12px;
    font-size: clamp(32px, 7vw, 52px);
    line-height: 1.05;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

.etiqueta {
    display: inline-block;
    padding: 7px 12px;
    background: #e7f8ed;
    color: #137333;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.etiqueta-error {
    background: #fdebec;
    color: #b3261e;
}

.acciones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.boton {
    display: inline-block;
    padding: 14px 20px;
    background: #111827;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.boton-secundario {
    background: #e9edf2;
    color: #1d2733;
}

.dato {
    margin: 24px 0;
    padding: 18px;
    overflow-wrap: anywhere;
    background: #f3f5f7;
    border-radius: 10px;
    line-height: 1.6;
}

.nota {
    color: #66717e;
    font-size: 15px;
}

@media (max-width: 600px) {
    .contenedor {
        width: min(100% - 20px, 760px);
        padding: 20px 0;
    }

    .tarjeta {
        padding: 24px;
    }

    .boton {
        width: 100%;
        text-align: center;
    }
}
