/* ===================================================================
   ISEC — Páginas de formulário standalone
   Chrome da página + reaproveitamento do card do modal de forma estática
   =================================================================== */

body.form-page {
    min-height: 100vh;
    background:
        radial-gradient(120% 80% at 50% -10%, #141b2c 0%, #0b1322 55%, #070b14 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px 56px;
}

/* topo: logo + selo */
.fp-topbar {
    width: 100%;
    max-width: 720px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.fp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fp-logo img { height: 40px; width: auto; opacity: 0.95; }
.fp-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1.25;
    max-width: 220px;
}
.fp-secure {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #94A3B8;
    white-space: nowrap;
}
.fp-secure svg { color: var(--accent); }

/* card estático reaproveitando .modal */
.modal.is-static {
    transform: none;
    margin-bottom: 0;
    box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
    max-width: 720px;
    width: 100%;
}

/* rodapé curto */
.fp-foot {
    width: 100%;
    max-width: 720px;
    margin-top: 22px;
    text-align: center;
    font-size: 12.5px;
    color: #64748B;
    line-height: 1.6;
}
.fp-foot a { color: #94A3B8; text-decoration: underline; }
.fp-foot a:hover { color: var(--accent); }

/* card de profissional direcionado (páginas individuais) */
.fp-prof-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-top: 18px;
    background: rgba(212,175,55,0.06);
    border: 1.5px solid rgba(212,175,55,0.28);
    border-radius: 16px;
}
.fp-prof-pill img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--accent);
}
.fp-prof-pill .fp-prof-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
}
.fp-prof-pill .fp-prof-cred {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

@media (max-width: 640px) {
    body.form-page { padding: 18px 10px 40px; }
    .fp-logo span { font-size: 12.5px; max-width: 160px; }
    .fp-secure span { display: none; }
}
