/* GoDeltaCRM — Páginas de agradecimiento, estilo shadcn/monochrome */

/* ── Ocultar header y footer del tema ──────────────────────────────── */
body:has(.gdc-gracias-wrap) header,
body:has(.gdc-gracias-wrap) .site-header,
body:has(.gdc-gracias-wrap) #masthead,
body:has(.gdc-gracias-wrap) #header,
body:has(.gdc-gracias-wrap) .header-area,
body:has(.gdc-gracias-wrap) footer,
body:has(.gdc-gracias-wrap) .site-footer,
body:has(.gdc-gracias-wrap) #colophon,
body:has(.gdc-gracias-wrap) #footer,
body:has(.gdc-gracias-wrap) .footer-area {
    display: none !important;
}

/* ── Layout centrado ────────────────────────────────────────────────── */
body:has(.gdc-gracias-wrap) {
    background: #fafafa;
}

.gdc-gracias-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.gdc-gracias-wrap img {
    width: 200px;
    margin-bottom: 40px;
}

/* ── Tarjeta ────────────────────────────────────────────────────────── */
.gdc-gracias-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    padding: 52px 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.gdc-gracias-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #09090b;
    margin: 0 0 16px;
    line-height: 1.2;
}

.gdc-gracias-body {
    font-size: 1rem;
    color: #71717a;
    line-height: 1.65;
    margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .gdc-gracias-card {
        padding: 36px 28px;
    }

    .gdc-gracias-title {
        font-size: 1.375rem;
    }

    .gdc-gracias-wrap img {
        margin-bottom: 32px;
    }
}
