/* Estilos específicos para la página de gracias */
:root {
    --px-orange: #dd6d2c;
    --px-orange-10: #fee4d9;
    --px-ink: #101010;
    --px-muted: #6b7280;
    --px-bg: #fff6f0;
    /* fondo suave de la sección */
}

body.thankyou-body {
    background: linear-gradient(180deg, var(--px-bg) 0%, #ffffff 60%);
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 16px;
}

.ty-card {
    width: min(900px, 100%);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    padding: clamp(24px, 4vw, 48px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ty-badge {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: var(--px-orange-10);
    border: 3px solid var(--px-orange);
}

.ty-badge svg {
    width: 44px;
    height: 44px;
}

.ty-title {
    font-size: clamp(26px, 4vw, 40px);
    margin: 0 0 10px;
    color: var(--px-ink);
    font-weight: 800;
}

.ty-lead {
    color: var(--px-muted);
    max-width: 60ch;
    margin: 0 auto 22px;
}

.ty-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--px-orange-10);
    color: var(--px-ink);
    font-weight: 700;
    margin-bottom: 22px;
}

.ty-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 6px;
}

.ty-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid var(--px-orange);
    transition: transform .15s ease, box-shadow .2s ease;
}

.ty-btn.primary {
    background: var(--px-orange);
    color: #fff;
}

.ty-btn.ghost {
    background: transparent;
    color: var(--px-orange);
}

.ty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(221, 109, 44, .25);
}

.ty-footnote {
    color: var(--px-muted);
    margin-top: 18px;
    font-size: .95rem;
}