:root {
    color-scheme: dark;
    --bg: #070d1a;
    --bg-soft: #0d1730;
    --surface: #122140;
    --surface-2: #152952;
    --border: #2a4271;
    --text: #e8efff;
    --muted: #9fb2d8;
    --primary: #26c6dd;
    --primary-strong: #16a9d0;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --radius: 18px;
    --shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 5% -25%, #2a4c92 0%, transparent 42%),
        radial-gradient(circle at 100% 0, #0a6e80 0%, transparent 36%),
        var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.muted {
    color: var(--muted);
}

.centralizado {
    text-align: center;
}

.oculto {
    display: none !important;
}

.card {
    background: linear-gradient(152deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    gap: 0.95rem;
}

.form-duas-colunas {
    grid-template-columns: 1fr;
}

.form-duas-colunas .full {
    grid-column: auto;
}

label {
    display: grid;
    gap: 0.42rem;
    color: var(--muted);
    font-size: 0.93rem;
}

input,
select,
textarea,
button {
    font: inherit;
}

input,
select,
textarea {
    background: rgba(8, 15, 30, 0.72);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 0.78rem 0.88rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(38, 198, 221, 0.2);
}

input[type="color"] {
    min-height: 46px;
    padding: 0.32rem;
}

input[type="file"] {
    padding: 0.6rem;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.58rem;
}

.checkbox-inline input {
    width: 18px;
    height: 18px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.44rem;
    border: 0;
    border-radius: 12px;
    padding: 0.78rem 1rem;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.16s ease, opacity 0.16s ease, filter 0.16s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: scale(0.985);
}

.btn-primario {
    background: linear-gradient(120deg, var(--primary), var(--primary-strong));
    color: #042a36;
}

.btn-secundario {
    background: rgba(38, 198, 221, 0.12);
    color: var(--text);
    border: 1px solid rgba(38, 198, 221, 0.5);
}

.btn-pequeno {
    padding: 0.56rem 0.72rem;
    font-size: 0.84rem;
}

.inline-form {
    display: inline;
}

.flash {
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    margin-bottom: 0.9rem;
    border: 1px solid transparent;
    font-weight: 600;
}

.flash-sucesso {
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.42);
    color: #bbf7d0;
}

.flash-erro {
    background: rgba(239, 68, 68, 0.13);
    border-color: rgba(239, 68, 68, 0.45);
    color: #fecaca;
}

.flash-aviso {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
    color: #fde68a;
}

.flash-info {
    background: rgba(56, 189, 248, 0.14);
    border-color: rgba(56, 189, 248, 0.45);
    color: #bae6fd;
}

.layout-auth {
    display: grid;
    place-items: center;
    padding: 1rem;
}

.auth-main {
    width: 100%;
    max-width: 480px;
}

.auth-card {
    padding: 1.45rem;
}

.auth-card h1 {
    font-size: 2rem;
    margin-bottom: 0.45rem;
}

.auth-card .muted {
    margin-bottom: 1rem;
}

.painel-shell {
    min-height: 100vh;
    position: relative;
    display: block;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 22, 0.66);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 30;
}

.sidebar {
    width: min(88vw, 300px);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    background: rgba(7, 12, 25, 0.95);
    border-right: 1px solid var(--border);
    padding: 1.15rem 0.95rem;
    transform: translateX(-102%);
    transition: transform 0.25s ease;
    overflow-y: auto;
}

body.menu-aberto {
    overflow: hidden;
}

body.arrastando-bloco {
    user-select: none;
}

body.menu-aberto .sidebar {
    transform: translateX(0);
}

body.menu-aberto .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-topo {
    margin-bottom: 1rem;
    position: relative;
    padding-right: 2.5rem;
}

.sidebar-topo h2 {
    font-size: 1.34rem;
}

.badge {
    display: inline-flex;
    background: rgba(38, 198, 221, 0.18);
    color: #79e6f8;
    border: 1px solid rgba(38, 198, 221, 0.52);
    border-radius: 999px;
    padding: 0.24rem 0.68rem;
    font-size: 0.76rem;
    margin-bottom: 0.58rem;
}

.sidebar-fechar {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-fechar svg {
    width: 18px;
    height: 18px;
}

.menu {
    display: grid;
    gap: 0.46rem;
}

.menu a {
    text-decoration: none;
    padding: 0.75rem 0.86rem;
    border-radius: 12px;
    color: var(--muted);
    border: 1px solid transparent;
    transition: all 0.16s ease;
}

.menu a:hover,
.menu a:active {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.painel-conteudo {
    padding: 0.88rem;
    display: grid;
    gap: 1rem;
}

.painel-topbar-mobile {
    position: sticky;
    top: 0.55rem;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    background: rgba(7, 13, 30, 0.82);
    border: 1px solid var(--border);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    padding: 0.52rem 0.6rem;
}

.topbar-marca {
    font-weight: 800;
    letter-spacing: 0.01em;
}

.topbar-icone {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.topbar-icone svg {
    width: 19px;
    height: 19px;
}

.topo-pagina {
    display: grid;
    gap: 0.35rem;
}

.topo-pagina h1 {
    font-size: clamp(1.3rem, 3.2vw, 1.7rem);
}

.topo-com-acao {
    display: grid;
    gap: 0.8rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.78rem;
}

.cards-grid-estatisticas {
    grid-template-columns: 1fr;
}

.stat {
    padding: 0.95rem;
    display: grid;
    gap: 0.34rem;
}

.stat strong {
    font-size: 1.6rem;
}

.tabela-wrap {
    padding: 0.86rem;
    overflow: auto;
}

.tabela-wrap h2 {
    margin-bottom: 0.8rem;
}

.tabela {
    width: 100%;
    border-collapse: collapse;
}

.tabela th,
.tabela td {
    text-align: left;
    padding: 0.72rem 0.56rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.tabela th {
    color: #c8d8fa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.22rem 0.6rem;
    font-size: 0.75rem;
    border: 1px solid var(--border);
    color: #dbe8ff;
}

.tag-ok {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.4);
}

.tag-bloq {
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.4);
}

.template-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.82rem;
}

.template-card {
    padding: 0.9rem;
    display: grid;
    gap: 0.7rem;
}

.template-preview {
    border-radius: 14px;
    min-height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.template-info {
    display: grid;
    gap: 0.35rem;
}

.opcao-template {
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.opcao-template input {
    accent-color: var(--primary);
}

.opcao-template:hover {
    transform: translateY(-2px);
    border-color: rgba(38, 198, 221, 0.58);
}

.meta-url {
    background: rgba(38, 198, 221, 0.1);
    border: 1px solid rgba(38, 198, 221, 0.34);
    border-radius: 12px;
    padding: 0.82rem;
    word-break: break-all;
}

.editor-bio-form {
    gap: 1rem;
}

.editor-secao {
    padding: 0.88rem;
    display: grid;
    gap: 0.95rem;
}

.editor-secao-topo {
    display: grid;
    gap: 0.26rem;
}

.topo-preview {
    gap: 0.74rem;
}

.dados-pagina-grid {
    gap: 0.9rem;
}

.blocos-skeleton {
    display: grid;
    gap: 0.7rem;
}

.skeleton-card {
    height: 90px;
    border-radius: 14px;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.03) 8%,
        rgba(255, 255, 255, 0.12) 24%,
        rgba(255, 255, 255, 0.03) 40%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s linear infinite;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

.blocos-sortable {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
}

.blocos-sortable.carregando {
    opacity: 0;
}

.bloco-item {
    padding: 0.86rem;
    display: grid;
    gap: 0.8rem;
    touch-action: manipulation;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.bloco-item:hover {
    border-color: rgba(38, 198, 221, 0.45);
}

.bloco-item.arrastando {
    opacity: 0.35;
}

.bloco-item.dragging-pointer {
    position: fixed;
    z-index: 120;
    pointer-events: none;
    transform: rotate(1deg);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
}

.bloco-placeholder {
    border: 2px dashed rgba(38, 198, 221, 0.58);
    border-radius: 14px;
    background: rgba(38, 198, 221, 0.08);
}

.bloco-topo {
    display: grid;
    gap: 0.7rem;
}

.bloco-identificacao {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.62rem;
    align-items: center;
}

.bloco-icone {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(38, 198, 221, 0.45);
    background: rgba(38, 198, 221, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8beeff;
}

.bloco-icone svg {
    width: 22px;
    height: 22px;
}

.bloco-topo .tipo {
    font-size: 0.81rem;
}

.bloco-controles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.42rem;
}

.bloco-editar-toggle[aria-expanded="true"] {
    border-color: rgba(38, 198, 221, 0.72);
    background: rgba(38, 198, 221, 0.22);
}

.switch {
    display: inline-flex;
    align-items: center;
    gap: 0.44rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.switch input {
    width: 17px;
    height: 17px;
}

.switch-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.4rem 0.6rem;
}

.drag-handle {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: #8beeff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    touch-action: none;
}

.drag-handle svg {
    width: 18px;
    height: 18px;
}

.drag-handle:active {
    cursor: grabbing;
}

.bloco-config {
    display: grid;
    gap: 0.78rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.22s ease, opacity 0.18s ease;
}

.bloco-config.aberto {
    max-height: 640px;
    opacity: 1;
}

.bloco-config-grid {
    grid-template-columns: 1fr;
}

.acoes-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.54rem;
}

.acoes-editor {
    align-items: center;
}

.feedback-save {
    color: var(--muted);
    font-size: 0.88rem;
}

.preview-smartphone {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 0.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(160deg, #0b1222, #050911);
}

.preview-phone-frame {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
    padding: 0.5rem;
}

.preview-screen {
    border-radius: 18px;
    padding: 0.8rem 0.72rem;
    min-height: 540px;
    display: grid;
    align-content: start;
    gap: 0.75rem;
    color: var(--preview-text, #e2e8f0);
    font-family: var(--preview-font, Manrope), Manrope, sans-serif;
    background:
        linear-gradient(170deg, rgba(255, 255, 255, 0.06), transparent 34%),
        var(--preview-bg-image, none),
        var(--preview-bg, #0f172a);
}

.preview-head {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    text-align: center;
}

.preview-avatar,
.preview-avatar-fallback {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.32);
}

.preview-avatar-fallback {
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.12);
}

.preview-head h3 {
    font-size: 1.1rem;
}

.preview-head p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.preview-links {
    display: grid;
    gap: 0.56rem;
}

.preview-link-item {
    padding: 0.74rem 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--preview-btn);
    color: var(--preview-btn-text);
    font-weight: 700;
    text-align: center;
    font-size: 0.9rem;
}

.preview-link-item.preview-pill {
    border-radius: 999px;
}

.preview-link-item.preview-soft {
    border-radius: 18px;
}

.preview-link-item.preview-rounded {
    border-radius: 14px;
}

.preview-link-item.preview-shadow {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.preview-link-item.preview-whatsapp {
    font-size: 0.94rem;
}

.preview-link-muted {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    text-align: center;
}

.preview-footer {
    text-align: center;
    font-size: 0.76rem;
    opacity: 0.78;
    margin-top: 0.3rem;
}

.layout-publica {
    min-height: 100vh;
}

.publica {
    --tpl-bg: #0f172a;
    --tpl-text: #ecf1ff;
    --tpl-btn: #22d3ee;
    --tpl-btn-text: #06222f;
    --tpl-font: Manrope;
    --tpl-bg-image: none;

    min-height: 100vh;
    padding: 1rem 0.86rem 1.4rem;
    background:
        radial-gradient(circle at 20% -30%, rgba(255, 255, 255, 0.08), transparent 44%),
        linear-gradient(170deg, rgba(255, 255, 255, 0.04), transparent 35%),
        var(--tpl-bg-image),
        var(--tpl-bg);
    color: var(--tpl-text);
    font-family: var(--tpl-font), Manrope, sans-serif;
}

.tema-light {
    color-scheme: light;
}

.publica-wrap {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: grid;
    gap: 0.84rem;
}

.publica-topo {
    padding: 1rem 0.95rem;
    text-align: center;
    display: grid;
    gap: 0.44rem;
}

.avatar {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.38);
}

.avatar-fallback {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.8rem;
    font-weight: 800;
}

.publica-links {
    display: grid;
    gap: 0.66rem;
}

.link-card {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tpl-btn);
    color: var(--tpl-btn-text);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1rem 1rem;
    min-height: 54px;
    font-weight: 800;
    transition: transform 0.16s ease, filter 0.16s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.link-card:active {
    transform: scale(0.988);
}

.link-card-whatsapp {
    background: linear-gradient(120deg, #2ddf73, #13b855);
    color: #032812;
    order: -1;
}

.link-card.destaque {
    display: grid;
    gap: 0.12rem;
    text-align: center;
}

.estilo-pill {
    border-radius: 999px;
}

.estilo-rounded {
    border-radius: 14px;
}

.estilo-soft {
    border-radius: 18px;
}

.com-sombra {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.sem-sombra {
    box-shadow: none;
}

.redes-wrap,
.mapa-wrap,
.vazio {
    padding: 0.9rem;
    display: grid;
    gap: 0.72rem;
}

.redes-grid {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rede-chip {
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--tpl-text);
    padding: 0.7rem;
    display: grid;
    gap: 0.32rem;
    justify-items: center;
    text-align: center;
    font-weight: 600;
    transition: transform 0.14s ease, background 0.14s ease;
}

.rede-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.rede-chip:active {
    transform: scale(0.985);
}

.rede-chip .icone {
    width: 22px;
    height: 22px;
    display: inline-flex;
}

.rede-chip .icone svg {
    width: 22px;
    height: 22px;
}

.mapa-botoes {
    display: grid;
    gap: 0.56rem;
}

.publica-rodape {
    text-align: center;
    opacity: 0.82;
    padding: 0.35rem 0;
}

.publica-404 {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.publica-404 .card {
    width: min(420px, 100%);
    padding: 1.2rem;
    display: grid;
    gap: 0.75rem;
    text-align: center;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 1.05rem;
    transform: translate(-50%, 120%);
    background: rgba(8, 16, 34, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e2ecff;
    border-radius: 12px;
    padding: 0.68rem 0.85rem;
    font-size: 0.88rem;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
    z-index: 300;
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
    max-width: min(90vw, 420px);
    text-align: center;
    pointer-events: none;
}

.toast.visivel {
    transform: translate(-50%, 0);
    opacity: 1;
}

.toast.sucesso {
    border-color: rgba(34, 197, 94, 0.52);
}

.toast.erro {
    border-color: rgba(239, 68, 68, 0.52);
}

@media (min-width: 680px) {
    .form-duas-colunas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-duas-colunas .full {
        grid-column: 1 / -1;
    }

    .dados-pagina-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dados-pagina-grid .meta-url,
    .dados-pagina-grid label:nth-child(2) {
        grid-column: 1 / -1;
    }

    .bloco-config-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 760px) {
    .painel-conteudo {
        padding: 1rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .template-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topo-com-acao {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (max-width: 860px) {
    .tabela-mobile thead {
        display: none;
    }

    .tabela-mobile,
    .tabela-mobile tbody,
    .tabela-mobile tr,
    .tabela-mobile td {
        display: block;
        width: 100%;
    }

    .tabela-mobile tr {
        border: 1px solid var(--border);
        border-radius: 14px;
        margin-bottom: 0.7rem;
        padding: 0.55rem 0.65rem;
        background: rgba(255, 255, 255, 0.02);
    }

    .tabela-mobile td {
        border-bottom: 0;
        padding: 0.42rem 0;
        text-align: right;
    }

    .tabela-mobile td::before {
        content: attr(data-label);
        float: left;
        color: var(--muted);
        font-weight: 700;
    }
}

@media (min-width: 1024px) {
    body.menu-aberto {
        overflow: auto;
    }

    .painel-shell {
        display: grid;
        grid-template-columns: 284px 1fr;
    }

    .sidebar-overlay {
        display: none;
    }

    .sidebar {
        position: sticky;
        top: 0;
        height: 100vh;
        transform: none;
        width: auto;
        z-index: auto;
        background: rgba(7, 12, 25, 0.78);
    }

    .sidebar-fechar {
        display: none;
    }

    .painel-topbar-mobile {
        display: none;
    }

    .painel-conteudo {
        padding: 1.25rem;
    }

    .template-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1240px) {
    .cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .painel-editor .editor-bio-form {
        grid-template-columns: 1.14fr 1fr;
        align-items: start;
    }

    .painel-editor .editor-bio-form .editor-secao:first-child,
    .painel-editor .editor-bio-form .editor-secao:nth-child(2) {
        grid-column: 1;
    }

    .painel-editor .editor-bio-form .editor-secao:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / span 2;
        position: sticky;
        top: 1.2rem;
    }
}
