.detalle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem;
    gap: 2rem;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.detalle__titulo {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
}

.detalle__descripcion {
    font-family: var(--fuente-mono);
    font-size: 1.2rem;
    line-height: 1.9;
    text-align: center;
    color: #444;
}

.detalle__lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 480px;
}

.detalle__lista li {
    font-family: var(--fuente-mono);
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
    background-color: rgba(107, 147, 199, 0.15);
    border-radius: 0.75rem;
    border-left: 4px solid var(--color-acento);
}

.detalle__precio {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-acento-hover);
}

.detalle__suscribir {
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .detalle {
        padding: 4rem 2rem;
        gap: 2.5rem;
    }
}
