*, *::before, *::after {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root {
    --azul-profundo:#14335e;
    --azul-principal:#214e8a;
    --azul-claro:#4a7ec0;
    --fundo:#eef4fb;
    --texto:#1a2535;
    --texto-suave:#4a5a72;
    --branco:#ffffff;
    --borda:#ccddf0;
    --container:1180px;
    --sombra-nav:0 4px 24px rgba(20,51,94,.16);
    --sombra-dropdown:0 16px 40px rgba(20,51,94,.18);
}

body {
    font-family:'Inter', Arial, sans-serif;
    background:var(--fundo);
    color:var(--texto);
}

a {
    text-decoration:none;
}

/* HEADER */

.cr-header {
    position:sticky;
    top:0;
    z-index:9999;
    background:var(--azul-principal);
    box-shadow:var(--sombra-nav);
}

.cr-header-inner {
    max-width:var(--container);
    margin:auto;
    padding:0 25px;
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.cr-brand {
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.cr-brand-logo {
    width:70px;
height:70px;
    border-radius:50%;
    object-fit:cover;
    background:white;
    padding:1px;
}

.cr-brand-text {
    display:flex;
    flex-direction:column;
}

.cr-brand-name {
    font-family:'Lora', Georgia, serif;
    font-size:20px;
    font-weight:600;
    color:white;
    line-height:1.2;
}

.desktop-brand {
    display:block;
}

.mobile-brand {
    display:none;
}

.cr-brand-tagline {
    font-size:11px;
    color:rgba(255,255,255,.78);
    letter-spacing:.04em;
    text-transform:uppercase;
    font-weight:500;
    margin-top:2px;
}

/* MENU DESKTOP */

.cr-nav {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    list-style:none;
    flex:1;
}

.cr-nav > li {
    position:relative;
}

.cr-nav > li > a {
    display:flex;
    align-items:center;
    gap:5px;
    padding:24px 10px;
    border-radius:8px;
    font-size:13.5px;
    font-weight:500;
    color:rgba(255,255,255,.94);
    transition:.18s;
    white-space:nowrap;
}

.cr-nav > li > a:hover,
.cr-nav > li:hover > a {
    background:rgba(255,255,255,.12);
    color:white;
}

.arrow {
    width:14px;
    height:14px;
    opacity:.65;
    transition:transform .2s;
}

.cr-nav > li:hover .arrow {
    transform:rotate(180deg);
}

/* DROPDOWN */

.cr-dropdown {
    visibility:hidden;
    opacity:0;
    position:absolute;
    top:100%;
    left:0;
    min-width:270px;
    background:white;
    border-radius:0 0 14px 14px;
    box-shadow:var(--sombra-dropdown);
    border:1px solid var(--borda);
    overflow:hidden;
    z-index:10050;
    transform:translateY(0);
    transition:opacity .12s ease, visibility .12s ease;
}

.cr-nav > li:hover .cr-dropdown {
    visibility:visible;
    opacity:1;
}

.cr-dropdown-header {
    padding:12px 16px 10px;
    font-size:10.5px;
    font-weight:700;
    color:var(--azul-claro);
    letter-spacing:.1em;
    text-transform:uppercase;
    border-bottom:1px solid var(--borda);
    background:var(--fundo);
}

.cr-dropdown a {
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    font-size:13.5px;
    color:var(--texto);
    font-weight:500;
    border-bottom:1px solid #f0f6fc;
    transition:.15s;
}

.cr-dropdown a:last-child {
    border-bottom:none;
}

.cr-dropdown a:hover {
    background:var(--fundo);
    color:var(--azul-principal);
    padding-left:22px;
}

.dot {
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--azul-claro);
    opacity:.45;
    flex-shrink:0;
}

/* BOTÕES */

.cr-acessos {
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}

.btn-congresso,
.btn-aluno {
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:9px 16px !important;
    border-radius:10px;
    font-size:13.5px;
    line-height:1.1;
    font-weight:600;
    white-space:nowrap;
}

.btn-congresso {
    background:#2a9dad !important;
    color:#fff !important;
    border:1px solid #2a9dad !important;
}

.btn-congresso:hover {
    background:#238b99 !important;
    border-color:#238b99 !important;
    color:#fff !important;
}

.btn-aluno {
    background:#fff !important;
    color:var(--azul-principal) !important;
    border:1px solid #fff !important;
}

.btn-aluno:hover {
    background:#eef4fb !important;
    color:var(--azul-profundo) !important;
}

/* MOBILE */

.cr-mobile-btn {
    display:none;
    width:54px;
    height:54px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.12);
    color:white;
    border-radius:14px;
    font-size:24px;
    cursor:pointer;
    flex-shrink:0;
}

.cr-overlay {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(20,30,50,.5);
    z-index:9998;
    backdrop-filter:blur(2px);
}

.cr-sidebar {
    position:fixed;
    top:0;
    left:-370px;
    width:340px;
    max-width:92%;
    height:100vh;
    background:white;
    overflow-y:auto;
    z-index:9999;
    transition:left .25s cubic-bezier(.4,0,.2,1);
    display:flex;
    flex-direction:column;
}

.cr-sidebar.ativo {
    left:0;
}

.cr-sidebar-top {
    background:var(--azul-principal);
    padding:20px 18px;
    flex-shrink:0;
}

.sidebar-top-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:16px;
}

.sidebar-close {
    background:rgba(255,255,255,.12);
    border:none;
    color:white;
    width:36px;
    height:36px;
    border-radius:8px;
    font-size:22px;
    cursor:pointer;
}

.sidebar-brand {
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
}

.sidebar-brand img {
    width:52px;
    height:52px;
    border-radius:50%;
    background:white;
    padding:3px;
}

.sidebar-brand-name {
    font-family:'Lora', Georgia, serif;
    font-size:16px;
    font-weight:600;
}

.sidebar-brand-sub {
    font-size:11px;
    opacity:.75;
    margin-top:2px;
}

.sidebar-access {
    display:flex;
    gap:8px;
}

.sidebar-access a {
    flex:1;
    text-align:center;
    padding:9px 12px;
    border-radius:8px;
    font-size:12.5px;
    font-weight:700;
}

.sidebar-access .s-aluno {
    background:white;
    color:var(--azul-principal);
}

.sidebar-access .s-congresso {
    background:rgba(255,255,255,.12);
    color:white;
    border:1px solid rgba(255,255,255,.2);
}

.sidebar-nav {
    padding:16px 16px 100px;
}

.sidebar-grupo {
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:var(--azul-claro);
    padding:16px 4px 8px;
    border-top:1px solid var(--borda);
    margin-top:4px;
}

.sidebar-grupo:first-child {
    border-top:none;
    padding-top:4px;
}

.sidebar-link {
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px 14px;
    border-radius:9px;
    font-size:14px;
    font-weight:500;
    color:var(--texto);
    margin-bottom:4px;
}

.sidebar-link:hover {
    background:var(--fundo);
    color:var(--azul-principal);
}

.s-dot {
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--borda);
    flex-shrink:0;
}

/* CONTEÚDO */

.cr-hero {
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 24px;
}

.cr-hero-card {
    background:white;
    border-radius:18px;
    padding:38px 42px;
    box-shadow:0 10px 30px rgba(20,51,94,.09);
    border-top:4px solid var(--azul-principal);
}

.cr-hero-tag {
    display:inline-block;
    font-size:11.5px;
    font-weight:700;
    color:var(--azul-claro);
    letter-spacing:.1em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.cr-hero-card h1 {
    font-family:'Lora', Georgia, serif;
    font-size:34px;
    font-weight:600;
    color:var(--azul-profundo);
    line-height:1.3;
    margin-bottom:16px;
}

.cr-hero-card p {
    font-size:16px;
    line-height:1.8;
    color:var(--texto-suave);
    max-width:880px;
}

.cr-hero-card p + p {
    margin-top:12px;
}

/* FOOTER */

.cr-footer {
    background:#214e8a;
    color:white;
    margin-top:36px;
}

.cr-footer-simples {
    max-width:var(--container);
    margin:auto;
    padding:18px 22px 20px;
    text-align:center;
}

.footer-marca {
    margin-bottom:5px;
}

.footer-nome {
    font-family:'Lora', Georgia, serif;
    font-size:17px;
    font-weight:600;
    color:white;
    line-height:1.15;
}

.footer-subtitulo {
    margin-top:1px;
    font-size:11px;
    color:rgba(255,255,255,.65);
    letter-spacing:.04em;
}

.cr-footer-simples p {
    font-size:12px;
    line-height:1.4;
    color:rgba(255,255,255,.72);
    margin:1px 0;
}

.footer-whatsapp {
    color:rgba(255,255,255,.88);
    font-weight:500;
}

.footer-whatsapp:hover {
    color:white;
    text-decoration:underline;
}

.footer-nota {
    display:block;
    margin-top:0;
    font-size:10.8px;
    color:rgba(255,255,255,.52);
}

/* RESPONSIVO */

@media(max-width:1250px) {
    .cr-nav,
    .cr-acessos {
        display:none;
    }

    .cr-mobile-btn {
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .cr-header-inner {
        height:86px;
    }

    .cr-brand-logo {
        width:60px;
        height:60px;
    }

    .cr-brand-tagline {
    display:block;
    font-size:10px;
    letter-spacing:.06em;
    color:rgba(255,255,255,.68);
    margin-top:2px;
}
}

@media(max-width:640px) {
   .cr-header-inner {
    min-height:100px;
}

    .cr-brand-logo {
        width:62px;
height:62px;
    }

    .cr-brand-name {
    font-size:18px;
    line-height:1.1;
    white-space:nowrap;
}

.desktop-brand{
    display:block;
}

.mobile-brand{
    display:none;
}
    
   .cr-brand-tagline {
    display:block;
    font-size:11px;
    font-weight:500;
    color:rgba(255,255,255,.78);
    letter-spacing:.04em;
    margin-top:1px;
}

    .cr-mobile-btn {
        width:56px;
        height:56px;
    }

    .sidebar-access {
        flex-direction:column;
    }

    .cr-hero {
        margin:28px auto 48px;
        padding:0 16px;
    }

    .cr-hero-card {
        padding:32px 28px;
    }

    .cr-hero-card h1 {
    font-size:28px;
}

.cr-hero-card p {
    font-size:16px;
    line-height:1.7;
    max-width:none;
}

    .cr-footer-simples {
        padding:28px 20px;
    }
}

@media(max-width:640px) {

.desktop-brand{
    display:none;
}

.mobile-brand{
    display:block;
    font-size:18px;
    font-weight:600;
    line-height:1.1;
    color:white;
}

.cr-brand-tagline{
    font-size:11px;
    margin-top:1px;
}
        .footer-nome {
    font-size:17px;
}

.footer-subtitulo {
    font-size:11px;
}

}

/* WHATSAPP */

.cr-whatsapp {
    position:fixed;
    right:24px;
    bottom:24px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;
    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 10px 28px rgba(0,0,0,.22);

    z-index:99999;

    transition:.2s;
}

.cr-whatsapp svg {
    width:30px;
    height:30px;
    fill:currentColor;
    display:block;
}

.cr-whatsapp:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.26);
}

@media(max-width:640px) {
    .cr-whatsapp {
        width:54px;
        height:54px;
        right:16px;
        bottom:18px;
    }

    .cr-whatsapp svg {
        width:28px;
        height:28px;
    }
}

/* =====================================================
   ISOLAR DO TEMA NEVE
===================================================== */

body.cr-site-publico .site-header,
body.cr-site-publico .header,
body.cr-site-publico .nv-navbar,
body.cr-site-publico .builder-item,
body.cr-site-publico .nv-page-title,
body.cr-site-publico .entry-header {
    display:none !important;
}

body.cr-site-publico {
    margin:0 !important;
    padding:0 !important;
    background:#eef4fb !important;
}
/* =========================================================
   AJUSTES VISUAIS GERAIS — SITE 2026
   ========================================================= */

.cr-site-main {
    min-height: auto;
    padding: 32px 20px 64px;
}

.cr-page-box {
    max-width: 1120px;
    margin: 24px auto 0;
    padding: 44px 46px 52px;
}

.cr-site-footer {
    padding: 26px 20px 22px;
}

.cr-site-footer h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.cr-site-footer p {
    margin: 4px 0;
    font-size: 14px;
}

.cr-whatsapp-fixo {
    right: 26px;
    bottom: 28px;
    width: 62px;
    height: 62px;
    z-index: 9999;
}

@media (max-width: 768px) {
    .cr-site-main {
        padding: 22px 14px 42px;
    }

    .cr-page-box {
        margin-top: 18px;
        padding: 32px 24px 38px;
    }

    .cr-whatsapp-fixo {
        right: 18px;
        bottom: 22px;
        width: 56px;
        height: 56px;
    }
}

/* ==========================
   CURSOS HOME 2026
========================== */

.cr-home-cursos{
    max-width:1180px;
    margin:60px auto;
    padding:0 24px;
}

.cr-section-head{
    text-align:center;
    margin-bottom:36px;
}

.cr-section-tag{
    display:block;
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#718ca9;
    margin-bottom:10px;
}

.cr-section-head h2{
    font-family:'Lora',serif;
    font-size:42px;
    color:#214e8a;
}

.cr-cursos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.cr-curso-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.cr-curso-imagem img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.cr-curso-faixa{
    background:#214e8a;
    color:#fff;
    padding:12px 18px;
    font-weight:700;
    font-size:14px;
}

.cr-curso-body{
    padding:22px;
}

.cr-curso-body h3{
    font-size:22px;
    line-height:1.3;
    margin-bottom:12px;
    color:#14335e;
}

.cr-curso-body p{
    color:#4a5a72;
    margin-bottom:20px;
}

.cr-btn-curso{
    display:inline-block;
    background:#214e8a;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* ==========================
   CURSOS HOME 2026 — VERTICAL COMPACTO
========================== */

.cr-cursos-home {
    max-width:1320px;
    margin:28px auto 0;
    padding:0 24px;
}

.cr-cursos-home .cr-section-head {
    text-align:center;
    margin-bottom:22px;
}

.cr-section-kicker {
    display:block;
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#718ca9;
    margin-bottom:8px;
}

.cr-cursos-home .cr-section-head p {
    font-size:15px;
    color:#4a5a72;
}

.cr-cursos-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    align-items:stretch;
}

.cr-curso-card {
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(20,51,94,.10);
    display:flex;
    flex-direction:column;
    height:100%;
}

.cr-curso-img {
    position:relative;
}

.cr-curso-img img {
    width:100%;
    height:135px;
    object-fit:cover;
    display:block;
}

.cr-curso-faixa {
    position:absolute;
    left:12px;
    bottom:10px;
    color:#fff;
    padding:6px 10px;
    border-radius:7px;
    font-size:11px;
    font-weight:700;
}

.cr-curso-conteudo {
    padding:16px 18px 18px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.cr-curso-conteudo h3 {
    font-family:'Lora', Georgia, serif;
    font-size:20px;
    line-height:1.18;
    color:#14335e;
    margin-bottom:8px;
}

.cr-curso-subtitulo {
    font-size:13.5px;
    color:#4a5a72;
    margin-bottom:10px;
    line-height:1.35;
}

.cr-curso-meta {
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:10px;
}

.cr-curso-meta span {
    background:#eef4fb;
    color:#214e8a;
    border:1px solid #ccddf0;
    padding:4px 8px;
    border-radius:999px;
    font-size:11.5px;
    font-weight:600;
}

.cr-curso-resumo {
    font-size:13.5px;
    line-height:1.4;
    color:#4a5a72;
    margin-bottom:10px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.cr-curso-investimento {
    font-size:13.5px;
    color:#14335e;
    margin-bottom:12px;
}

.cr-curso-btn {
    display:inline-block;
    background:#214e8a;
    color:#fff;
    padding:8px 14px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    margin-top:auto;
    width:max-content;
}

.cr-curso-btn:hover {
    background:#14335e;
    color:#fff;
}

@media(max-width:1180px) {
    .cr-cursos-grid {
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:900px) {
    .cr-cursos-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:640px) {
    .cr-cursos-home {
        margin-top:26px;
        padding:0 16px;
    }

    .cr-cursos-grid {
        grid-template-columns:1fr;
        gap:20px;
    }

    .cr-curso-img img {
        height:165px;
    }

    .cr-curso-conteudo h3 {
        font-size:22px;
    }
}
/* ==========================
   SUBMENU INTERNO — REVISTA / ÁREAS
========================== */

.cr-submenu-area {
    background:#e0effa;
    border-bottom:1px solid #ccddf0;
}

.cr-submenu-inner {
    max-width:1180px;
    margin:0 auto;
    padding:12px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.cr-submenu-titulo {
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#718ca9;
    white-space:nowrap;
}

.cr-submenu-links {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:7px;
    flex-wrap:nowrap;
}

.cr-submenu-links a {
    font-size:12.5px;
    font-weight:700;
    color:#214e8a;
    padding:8px 12px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid #ccddf0;
    transition:.18s;
    white-space:nowrap;
}

.cr-submenu-links a.ativo {
    background:#214e8a;
    color:#ffffff;
    border-color:#214e8a;
}

.cr-submenu-links a:hover {
    background:#fff;
    color:#14335e;
}

.cr-pagina-area {
    max-width:1180px;
    margin:34px auto 56px;
    padding:0 24px;
}

.cr-revista-box h1 {
    font-family:'Lora', Georgia, serif;
    font-size:36px;
    line-height:1.25;
    color:#14335e;
    margin-bottom:16px;
}

.cr-revista-box p {
    font-size:16px;
    line-height:1.8;
    color:#4a5a72;
    max-width:900px;
}

.cr-revista-box p + p {
    margin-top:12px;
}

@media(max-width:900px) {
    .cr-submenu-inner {
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
    }

    .cr-submenu-links {
        justify-content:flex-start;
    }
}

@media(max-width:640px) {
    .cr-submenu-inner {
        padding:14px 18px;
    }

    .cr-submenu-links {
        gap:6px;
    }

    .cr-submenu-links a {
        font-size:13px;
        padding:8px 10px;
        background:#fff;
    }

    .cr-pagina-area {
        padding:0 18px;
        margin-top:26px;
    }

    .cr-revista-box h1 {
        font-size:28px;
    }
}
/* ==========================
   SUBMENU REVISTA — AJUSTE MOBILE
========================== */

@media(max-width:700px) {

    .cr-submenu-inner {
        padding:22px 18px;
        gap:14px;
    }

    .cr-submenu-links {
        display:flex;
        flex-wrap:wrap;
        justify-content:flex-start;
        gap:10px;
        width:100%;
    }

    .cr-submenu-links a {
        font-size:14px;
        padding:9px 13px;
        white-space:normal;
        line-height:1.2;
    }

    .cr-pagina-area {
        margin-top:42px;
    }

    .cr-revista-box h1 {
        font-size:36px;
        line-height:1.12;
    }

    .cr-revista-box p {
        font-size:20px;
        line-height:1.55;
    }
}

@media(max-width:430px) {

    .cr-submenu-links a {
        font-size:13.5px;
        padding:8px 11px;
    }

    .cr-revista-box h1 {
        font-size:32px;
    }

    .cr-revista-box p {
        font-size:18px;
    }
}

/* ==================================================
   CABEÇALHO DAS ÁREAS
   Revista • Anais • Congresso
================================================== */

/* ==================================================
   CARD CIENTÍFICO
================================================== */

.cr-cabecalho-area{
    padding:36px 24px;
}

.cr-cabecalho-inner{
    max-width:980px;
    margin:0 auto;
    background:#eef4fb;
    border:1px solid #d9e5f2;
    border-radius:20px;
    padding:34px;
    display:flex;
    align-items:flex-start;
    gap:28px;
}

.cr-cabecalho-icone{
    width:84px;
    height:84px;
    border-radius:50%;
    background:#dfeafb;
    border:1px solid #c8d8ef;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    flex-shrink:0;
}

.cr-cabecalho-label{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#4a7ec0;
    margin-bottom:10px;
}

.cr-cabecalho-texto h1{
    margin:0 0 12px;
    font-family:'Lora',serif;
    font-size:42px;
    line-height:1.15;
    color:#14335e;
}

.cr-cabecalho-texto p{
    max-width:700px;
    margin:0;
    color:#4a5a72;
    font-size:17px;
    line-height:1.75;
}

.cr-cabecalho-selos{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}

.cr-cabecalho-selos span{
    background:#fff;
    border:1px solid #d0dced;
    border-radius:999px;
    padding:8px 12px;
    font-size:13px;
    font-weight:600;
    color:#214e8a;
}
/* ==================================================
   REFINO CIRÚRGICO — PÁGINAS REVISTA / ANAIS / CONGRESSO
================================================== */

.cr-cabecalho-inner {
    padding:32px 24px;
    gap:28px;
}

.cr-cabecalho-icone {
    width:76px;
    height:76px;
    font-size:34px;
}

.cr-cabecalho-texto h1 {
    font-size:36px;
    max-width:820px;
}

.cr-cabecalho-texto p {
    font-size:16px;
    line-height:1.65;
    max-width:820px;
}

.cr-cabecalho-selos {
    margin-top:14px;
}

.cr-cabecalho-selos span {
    padding:7px 11px;
    font-size:12.5px;
}

.cr-pagina-area {
    max-width:980px;
    margin:42px auto 60px;
}

.cr-conteudo-area {
    background:transparent;
    box-shadow:none;
    border:none;
    padding:0 24px;
}

.cr-conteudo-area h2 {
    font-family:'Lora', Georgia, serif;
    font-size:30px;
    color:#14335e;
    margin-bottom:22px;
    padding-bottom:12px;
    border-bottom:2px solid #4a7ec0;
}

.cr-conteudo-area p {
    font-size:17px;
    line-height:1.85;
    color:#1a2535;
    max-width:880px;
}

.cr-conteudo-area p + p {
    margin-top:18px;
}
/* ==================================================
   BREADCRUMB — ÁREAS CIENTÍFICAS
================================================== */

.cr-breadcrumb {
    max-width:980px;
    margin:22px auto 0;
    padding:0 24px;
    font-size:14px;
    color:#718ca9;
}

.cr-breadcrumb a {
    color:#214e8a;
    font-weight:600;
}

.cr-breadcrumb span {
    margin:0 7px;
    color:#718ca9;
}

.cr-breadcrumb strong {
    color:#14335e;
    font-weight:700;
}

/* ==================================================
   MENU EM BLOCOS — CONGRESSO
================================================== */

.cr-congresso-menu-blocos {
    background:#e0effa;
    border-bottom:1px solid #ccddf0;
}

.cr-congresso-menu-inner {
    max-width:1400px;
    margin:0 auto;
    padding:18px 24px;
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:14px;
}

.cr-congresso-grupo {
    background:#fff;
    border:1px solid #ccddf0;
    border-radius:16px;
    padding:14px 14px 13px;
    box-shadow:0 8px 22px rgba(20,51,94,.06);
}

.cr-congresso-grupo-titulo {
    display:block;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:.08em;
    font-weight:800;
    color:#14335e;
    margin-bottom:10px;
}

.cr-congresso-grupo-titulo.ativo {
    color:#214e8a;
}

.cr-congresso-grupo-links {
    display:flex;
    flex-direction:column;
    gap:5px;
}

.cr-congresso-grupo-links a {
    font-size:13px;
    line-height:1.25;
    color:#4a5a72;
    font-weight:600;
}

.cr-congresso-grupo-links a:hover {
    color:#214e8a;
    text-decoration:underline;
}

@media(max-width:1200px) {
    .cr-congresso-menu-inner {
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:700px) {
    .cr-congresso-menu-inner {
        grid-template-columns:1fr;
        padding:14px 18px;
    }
}


/* =========================================================
   SUBNAV PADRÃO — SITE 2026
   Congresso / Revista / Anais
   ========================================================= */

.cr-subnav {
    background: #f7f9fc;
    border-bottom: 1px solid #d8e3ef;
    padding: 14px 20px;
    position: relative;
    z-index: 80;
}

.cr-subnav-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cr-subnav details {
    position: relative;
}

.cr-subnav summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 17px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    color: #25364d;
    background: transparent;
}

.cr-subnav summary::-webkit-details-marker {
    display: none;
}

.cr-subnav summary::after {
    content: "⌄";
    margin-left: 7px;
    font-size: 13px;
    color: #4a7ec0;
}

.cr-subnav details.ativo summary,
.cr-subnav summary:hover {
    background: #dcecff;
    color: #214e8a;
}

.cr-subnav details[open] summary {
    background: #214e8a;
    color: #ffffff;
}

.cr-subnav details[open] summary::after {
    color: #ffffff;
}

.cr-subnav-dropdown {
    display: none;
}

.cr-subnav details[open] .cr-subnav-dropdown {
    display: block;
    position: absolute;
    top: 46px;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(20, 51, 94, .16);
    z-index: 120;
}

.cr-subnav-dropdown a {
    display: block;
    padding: 12px 16px;
    background: #ffffff;
    color: #214e8a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #e3edf7;
}

.cr-subnav-dropdown a:last-child {
    border-bottom: none;
}

.cr-subnav-dropdown a:hover {
    background: #e3f4f1;
    color: #14335e;
}

@media (max-width: 760px) {
    .cr-subnav {
        background: #edf4fb;
        padding: 12px;
    }

    .cr-subnav-inner {
        display: block;
    }

    .cr-subnav details {
        background: #ffffff;
        border: 1px solid #d7e3f0;
        border-radius: 12px;
        margin-bottom: 8px;
        overflow: hidden;
    }

    .cr-subnav summary {
        border-radius: 0;
        padding: 13px 16px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: #214e8a;
    }

    .cr-subnav details[open] .cr-subnav-dropdown {
        position: static;
        display: block;
        min-width: auto;
        box-shadow: none;
        border-radius: 0;
    }

    .cr-subnav-dropdown a {
        background: #f7f9fc;
        padding: 11px 16px;
        border-top: 1px solid #e3edf7;
        border-bottom: none;
    }
}
/* Ajuste fino da SUBNAV — fonte e seta no padrão do menu principal */

.cr-subnav summary {
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.cr-subnav summary::after {
    content: "▾";
    margin-left: 7px;
    font-size: 10px;
    position: relative;
    top: -1px;
    color: currentColor;
}

.cr-subnav-dropdown a {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
}

/* Reduz espaço entre o header/hero e o conteúdo */

.cr-congresso-hero,
.cr-page-hero,
.cr-header-congresso {
    margin-bottom: 34px;
}

.cr-site-main,
.cr-congresso-main,
.cr-conteudo-site {
    padding-top: 34px;
}

.cr-site-main h2:first-child,
.cr-congresso-main h2:first-child,
.cr-conteudo-site h2:first-child {
    margin-top: 0;
}
/* =====================================================
   AJUSTE DE ESPAÇAMENTO — CONGRESSO
   ===================================================== */

body.cr-congresso-publico .cr-pagina-area {
    margin-top: -48px !important;
}


/* =====================================================
   AJUSTE DE ESPAÇAMENTO — REVISTA
   ===================================================== */

body.cr-revista-publica .cr-pagina-area {
    margin-top: -48px !important;
}


/* =====================================================
   AJUSTE DE ESPAÇAMENTO — ANAIS
   ===================================================== */

body.cr-anais-publico .cr-pagina-area {
    margin-top: -48px !important;
}

/* =====================================================
   AJUSTE FINO — PESO DA FONTE DA SUBNAV
   ===================================================== */

.cr-subnav summary {
    font-weight: 500 !important;
}

.cr-subnav details.ativo summary,
.cr-subnav details[open] summary {
    font-weight: 600 !important;
}

.cr-subnav-dropdown a {
    font-weight: 500 !important;
}
/* Títulos internos das páginas do Congresso */
body.cr-congresso-publico .cr-pagina-area > h2 {
    font-family: 'Lora', Georgia, serif !important;
    color: #0b2f63 !important;
    font-size: clamp(2rem, 3vw, 2.7rem) !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
    margin: 0 0 28px !important;
    padding-bottom: 14px !important;
    border-bottom: 2px solid #4a7ec0 !important;
}

/* Corrige títulos que vêm do conteúdo antigo */
body.cr-congresso-publico .conteudo-revista h1,
body.cr-congresso-publico .conteudo-revista h2,
body.cr-congresso-publico .conteudo-revista h3 {
    font-family: 'Lora', Georgia, serif !important;
    color: #0b2f63 !important;
    font-weight: 600 !important;
}
/* Padronização dos títulos internos do Congresso */
body.cr-congresso-publico .conteudo-revista h1,
body.cr-congresso-publico .conteudo-revista h2,
body.cr-congresso-publico .conteudo-revista h3,
body.cr-congresso-publico .conteudo-revista h4,
body.cr-congresso-publico .conteudo-revista h5,
body.cr-congresso-publico .conteudo-revista strong.titulo,
body.cr-congresso-publico .conteudo-revista .titulo {
    color: #0b2f63 !important;
}
/* Espaço entre header da área e título das páginas internas */
body.cr-congresso-publico .cr-pagina-area {
    padding-top: 36px !important;
}

/* Título padrão das páginas internas do Congresso */
body.cr-congresso-publico .cr-pagina-area > h2 {
    font-family: 'Lora', Georgia, serif !important;
    color: #0b2f63 !important;
    font-size: clamp(2.1rem, 3vw, 3rem) !important;
    line-height: 1.12 !important;
    font-weight: 600 !important;
    margin: 0 0 30px !important;
    padding-bottom: 14px !important;
    border-bottom: 2px solid #4a7ec0 !important;
    background: transparent !important;
}
/* =====================================================
   EDIÇÕES ANUAIS DOS ANAIS E REVISTA
===================================================== */

body.cr-anais-publico .artigo-wrapper,
body.cr-revista-publica .artigo-wrapper{
    max-width:980px;
    margin:0 auto;
}

/* Ajuste da largura da edição anual dos Anais */
body.cr-anais-publico main.artigo-wrapper {
    width: 100% !important;
    max-width: 1040px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}
/* Espaço entre header da área e conteúdo interno */
body.cr-congresso-publico .cr-pagina-area {
    padding-top: 48px !important;
}

/* Título padrão das páginas internas do Congresso */
body.cr-congresso-publico .cr-pagina-area > h2,
body.cr-congresso-publico .cr-titulo-pagina {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}
body.cr-site-publico .cr-header .cr-header-inner{
    min-height:82px !important;
}

/* =====================================================
   FAIXA DE CONTEXTO ENTRE MENU PRINCIPAL E SUBNAV
===================================================== */

.cr-area-contexto{
    background:#eef4fb;
    border-top:3px solid #2a9dad;
    border-bottom:1px solid #d8e3ef;
}

.cr-area-contexto-inner{
    max-width:1180px;
    margin:0 auto;
    padding:10px 24px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#14335e;
    font-size:13.5px;
    font-weight:600;
}

.cr-area-contexto-icone{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#dcecff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

@media(max-width:760px){
    .cr-area-contexto-inner{
        padding:9px 16px;
        font-size:13px;
    }
}
/* =====================================================
   HEADER DAS ÁREAS — VERSÃO COMPACTA
   Congresso / Revista / Anais
===================================================== */

.cr-cabecalho-area{
    padding:30px 24px 18px !important;
}

.cr-cabecalho-inner{
    max-width:980px !important;
    padding:26px 30px !important;
    gap:22px !important;
    border-radius:18px !important;
    background:#f3f8fd !important;
    border:1px solid #cfddec !important;
    border-left:5px solid #2a9dad !important;
    box-shadow:none !important;
}

.cr-cabecalho-icone{
    width:58px !important;
    height:58px !important;
    font-size:24px !important;
    background:#e0effa !important;
}

.cr-cabecalho-label{
    font-size:11px !important;
    margin-bottom:7px !important;
    letter-spacing:.13em !important;
}

.cr-cabecalho-texto h1{
    font-size:30px !important;
    line-height:1.18 !important;
    margin-bottom:8px !important;
}

.cr-cabecalho-texto p{
    font-size:15px !important;
    line-height:1.55 !important;
    max-width:760px !important;
}

.cr-cabecalho-selos{
    display:none !important;
}

/* Título da página abaixo do header */
.cr-pagina-area > h2,
body.cr-congresso-publico .cr-pagina-area > h2{
    font-size:32px !important;
    line-height:1.15 !important;
    font-weight:600 !important;
    margin-bottom:24px !important;
    padding-bottom:12px !important;
}

/* Mobile */
@media(max-width:700px){
    .cr-cabecalho-area{
        padding:24px 18px 12px !important;
    }

    .cr-cabecalho-inner{
        display:block !important;
        text-align:center !important;
        padding:24px 22px !important;
        border-left:0 !important;
        border-top:5px solid #2a9dad !important;
    }

    .cr-cabecalho-icone{
        margin:0 auto 14px !important;
        width:54px !important;
        height:54px !important;
        font-size:22px !important;
    }

    .cr-cabecalho-texto h1{
        font-size:30px !important;
        line-height:1.12 !important;
    }

    .cr-cabecalho-texto p{
        font-size:16px !important;
        line-height:1.5 !important;
    }

    .cr-pagina-area > h2,
    body.cr-congresso-publico .cr-pagina-area > h2{
        font-size:30px !important;
    }
}
/* =====================================================
   ESPAÇAMENTO FIXO ENTRE HEADER DA ÁREA E CONTEÚDO
   Congresso / Revista / Anais
===================================================== */

body.cr-congresso-publico .cr-cabecalho-area,
body.cr-revista-publica .cr-cabecalho-area,
body.cr-anais-publico .cr-cabecalho-area{
    padding-bottom:36px !important;
}

body.cr-congresso-publico .cr-pagina-area,
body.cr-revista-publica .cr-pagina-area,
body.cr-anais-publico .cr-pagina-area{
    margin-top:0 !important;
    padding-top:0 !important;
}

body.cr-congresso-publico .cr-pagina-area > h2,
body.cr-revista-publica .cr-conteudo-area > h2,
body.cr-anais-publico .cr-conteudo-area > h2{
    margin-top:0 !important;
}
/* Revista - Edições anteriores */

.cr-lista-edicoes {
    margin-top: 32px;
}

.cr-lista-edicoes h2 {
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33, 78, 138, .25);
}

.cr-card-edicao {
    background: #ffffff;
    border: 1px solid rgba(33, 78, 138, .18);
    border-left: 5px solid #28b8c6;
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(33, 78, 138, .08);
}

.cr-card-edicao h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.cr-card-edicao h3 a {
    color: #214e8a;
    text-decoration: none;
}

.cr-card-edicao p {
    margin: 0 0 16px;
    color: #3f4d63;
}

.cr-botao-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: #214e8a;
    color: #ffffff !important;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none !important;
}

.cr-botao-link:hover {
    background: #28b8c6;
    color: #ffffff !important;
}
/* Revista - página anual / sumário */

.cr-edicao-revista {
    max-width: 980px;
}

.cr-bloco-editorial,
.cr-sumario-edicao {
    background: #ffffff;
    border: 1px solid rgba(33, 78, 138, .16);
    border-left: 5px solid #214e8a;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: 0 10px 28px rgba(33, 78, 138, .08);
}

.cr-bloco-editorial h2,
.cr-sumario-edicao h2 {
    margin-top: 0;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33, 78, 138, .22);
    color: #17335f;
}

.cr-card-artigo-edicao {
    padding: 22px 0;
    border-bottom: 1px solid rgba(33, 78, 138, .14);
}

.cr-card-artigo-edicao:last-child {
    border-bottom: none;
}

.cr-card-artigo-edicao h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.cr-card-artigo-edicao h3 a {
    color: #214e8a;
    text-decoration: none;
}

.cr-card-artigo-edicao h3 a:hover {
    color: #28b8c6;
}

.cr-autores-artigo {
    margin: 0 0 8px;
    color: #26384f;
    font-weight: 500;
}

.cr-paginas-artigo {
    margin: 0 0 14px;
    color: #5b6b80;
    font-size: .95rem;
}

.cr-card-artigo-edicao .cr-botao-link {
    margin-top: 4px;
}

/* ==================================================
   REVISTA - EDIÇÃO ANUAL
================================================== */

.cr-bloco-editorial {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 36px;
    border-left: 6px solid #28b8c6;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.cr-bloco-editorial h2 {
    margin: 0 0 20px;
    color: #214e8a;
}

.cr-sumario-edicao h2 {
    margin-bottom: 28px;
    color: #214e8a;
}

.cr-lista-artigos-edicao {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cr-card-artigo-edicao {
    background: #fff;
    border: 1px solid #dbe5f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    transition: .25s;
}

.cr-card-artigo-edicao:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.cr-card-artigo-edicao h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.cr-card-artigo-edicao h3 a {
    color: #214e8a;
    text-decoration: none;
}

.cr-card-artigo-edicao h3 a:hover {
    color: #28b8c6;
}

.cr-autores-artigo {
    color: #46556b;
    margin-bottom: 10px;
}

.cr-paginas-artigo {
    color: #6d7a8e;
    margin-bottom: 18px;
}

.cr-card-artigo-edicao .cr-botao-link {
    display: inline-block;
    background: #214e8a;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.cr-card-artigo-edicao .cr-botao-link:hover {
    background: #28b8c6;
}

/* Revista - artigo individual */

.cr-artigo-container {
    max-width: 980px;
}

.cr-artigo-card {
    background: #ffffff;
    border: 1px solid rgba(33, 78, 138, .16);
    border-left: 6px solid #214e8a;
    border-radius: 18px;
    padding: 36px 42px;
    box-shadow: 0 12px 32px rgba(33, 78, 138, .08);
}

.cr-artigo-header {
    border-bottom: 1px solid rgba(33, 78, 138, .18);
    padding-bottom: 24px;
    margin-bottom: 26px;
}

.cr-artigo-header h1 {
    color: #214e8a;
    margin-bottom: 14px;
}

.cr-artigo-subtitulo,
.cr-artigo-title-en,
.cr-artigo-subtitle-en {
    margin-bottom: 10px;
    color: #33445c;
}

.cr-artigo-autores,
.cr-meta-revista,
.cr-secao-artigo {
    background: #f7fbff;
    border: 1px solid rgba(33, 78, 138, .12);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 22px;
}

.cr-autor-card {
    margin-bottom: 12px;
}

.cr-autor-card span {
    display: block;
    color: #45566e;
}

.cr-botoes-artigo {
    display: flex;
    gap: 10px;
    margin: 22px 0;
}

.cr-secao-artigo h2 {
    margin-top: 0;
    color: #214e8a;
    border-bottom: 1px solid rgba(33, 78, 138, .18);
    padding-bottom: 8px;
}

.cr-corpo-artigo {
    background: #ffffff;
    font-size: 1.02rem;
    line-height: 1.8;
}

.cr-como-citar {
    background: #eef7fb;
}

/* ==================================================
   REVISTA - LARGURA E MOBILE
================================================== */

.cr-revista-publica .cr-pagina-area,
.cr-revista-publica .cr-conteudo-area {
    width: 100%;
}

.cr-revista-publica .cr-container,
.cr-revista-publica .cr-editorial-content,
.cr-revista-publica .cr-edicao-revista,
.cr-revista-publica .cr-artigo-container {
    width: min(100% - 32px, 980px);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.cr-revista-publica .cr-cabecalho-inner {
    width: min(100% - 32px, 980px);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.cr-revista-publica .cr-editorial-content > *,
.cr-revista-publica .conteudo-revista > * {
    max-width: 100%;
}

.cr-revista-publica .cr-editorial-content {
    font-size: 1rem;
    line-height: 1.75;
}

@media (max-width: 768px) {

    .cr-revista-publica .cr-container,
    .cr-revista-publica .cr-editorial-content,
    .cr-revista-publica .cr-edicao-revista,
    .cr-revista-publica .cr-artigo-container,
    .cr-revista-publica .cr-cabecalho-inner {
        width: min(100% - 24px, 100%);
        max-width: none;
    }

    .cr-revista-publica .cr-cabecalho-area {
        padding: 24px 0;
    }

    .cr-revista-publica .cr-cabecalho-inner {
        padding: 22px;
    }

    .cr-revista-publica .cr-artigo-card,
    .cr-revista-publica .cr-bloco-editorial,
    .cr-revista-publica .cr-sumario-edicao,
    .cr-revista-publica .cr-card-edicao {
        padding: 22px;
        border-radius: 14px;
    }

    .cr-revista-publica h1 {
        font-size: 1.75rem;
    }

    .cr-revista-publica h2 {
        font-size: 1.35rem;
    }
}

/* REVISTA - correção definitiva de largura */

body.cr-revista-publica .cr-pagina-area {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.cr-revista-publica .cr-conteudo-area {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.cr-revista-publica .cr-cabecalho-inner,
body.cr-revista-publica .cr-editorial-content,
body.cr-revista-publica .conteudo-revista,
body.cr-revista-publica .cr-edicao-revista,
body.cr-revista-publica .cr-artigo-container {
    width: calc(100% - 40px) !important;
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    body.cr-revista-publica .cr-cabecalho-inner,
    body.cr-revista-publica .cr-editorial-content,
    body.cr-revista-publica .conteudo-revista,
    body.cr-revista-publica .cr-edicao-revista,
    body.cr-revista-publica .cr-artigo-container {
        width: calc(100% - 24px) !important;
        max-width: none !important;
    }

    body.cr-revista-publica .cr-artigo-card,
    body.cr-revista-publica .cr-bloco-editorial,
    body.cr-revista-publica .cr-sumario-edicao,
    body.cr-revista-publica .cr-card-edicao {
        padding: 20px !important;
    }
}

/* Revista - artigo individual: barra lateral responsiva */

@media (max-width: 768px) {

    body.cr-artigo-revista .cr-artigo-card {
        border-left: none !important;
        border-top: 6px solid #214e8a !important;
        padding: 24px 22px !important;
    }

    body.cr-artigo-revista .cr-artigo-header h1 {
        font-size: 2rem !important;
        line-height: 1.12 !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
        hyphens: auto;
    }

    body.cr-artigo-revista .cr-artigo-subtitulo,
    body.cr-artigo-revista .cr-artigo-title-en,
    body.cr-artigo-revista .cr-artigo-subtitle-en {
        font-size: 1.05rem !important;
        line-height: 1.55 !important;
    }

    body.cr-artigo-revista .cr-autor-card,
    body.cr-artigo-revista .cr-meta-revista,
    body.cr-artigo-revista .cr-secao-artigo {
        padding: 18px !important;
    }
}
/* ANAIS - alinhamento igual Revista */

body.cr-anais-publico .cr-pagina-area,
body.cr-anais-publico .cr-conteudo-area {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.cr-anais-publico .cr-cabecalho-inner,
body.cr-anais-publico .conteudo-revista {
    width: calc(100% - 40px) !important;
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    body.cr-anais-publico .cr-cabecalho-inner,
    body.cr-anais-publico .conteudo-revista {
        width: calc(100% - 24px) !important;
        max-width: none !important;
    }
}

/* ANAIS - padrão visual igual Revista */

body.cr-anais-publico .cr-container,
body.cr-anais-publico .cr-editorial-content,
body.cr-anais-publico .conteudo-revista {
    width: calc(100% - 40px) !important;
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.cr-anais-publico .conteudo-revista {
    font-size: 1rem;
    line-height: 1.75;
}

body.cr-anais-publico .conteudo-revista h2 {
    color: #17335f;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33, 78, 138, .25);
}

body.cr-anais-publico .conteudo-revista p {
    color: #25364d;
    line-height: 1.75;
}

@media (max-width: 768px) {
    body.cr-anais-publico .cr-container,
    body.cr-anais-publico .cr-editorial-content,
    body.cr-anais-publico .conteudo-revista {
        width: calc(100% - 24px) !important;
        max-width: none !important;
    }
}

/* Anais - edição anual: barra lateral responsiva */

@media (max-width: 768px) {

    body.cr-anais-publico .artigo {
        border-left: none !important;
        border-top: 6px solid #214e8a !important;
        padding: 24px 22px !important;
    }

    body.cr-anais-publico .titulo-pagina-anais {
        font-size: 2rem !important;
        line-height: 1.12 !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
        hyphens: auto;
    }

    body.cr-anais-publico .subtitulo {
        font-size: 1.05rem !important;
        line-height: 1.55 !important;
    }

    body.cr-anais-publico .cr-card-artigo-edicao,
    body.cr-anais-publico .cr-bloco-editorial,
    body.cr-anais-publico .cr-sumario-edicao {
        padding: 20px !important;
    }
}
/* ==========================
   FORMULÁRIOS SITE 2026
========================== */

.cr-form-site {
    max-width:760px;
    margin:34px auto;
    padding:34px;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(20,51,94,.12);
}

.cr-form-alerta {
    max-width:760px;
    margin:28px auto 0;
    padding:14px 18px;
    border-radius:10px;
    font-weight:700;
}

.cr-form-alerta.sucesso {
    background:#e8f7ee;
    color:#166534;
    border:1px solid #b7e4c7;
}

.cr-form-alerta.erro {
    background:#fff1f2;
    color:#9f1239;
    border:1px solid #fecdd3;
}

.cr-form-grid {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
}

.cr-form-site p {
    margin:0 0 18px;
}

.cr-form-site label {
    display:block;
    margin-bottom:7px;
    font-size:14px;
    font-weight:700;
    color:#14335e;
}

.cr-form-site input,
.cr-form-site select,
.cr-form-site textarea {
    width:100%;
    border:1px solid #ccddf0;
    border-radius:10px;
    padding:12px 14px;
    font-size:15px;
    color:#1a2535;
    background:#ffffff;
}

.cr-form-site input:focus,
.cr-form-site select:focus,
.cr-form-site textarea:focus {
    outline:none;
    border-color:#214e8a;
    box-shadow:0 0 0 3px rgba(33,78,138,.12);
}

.cr-form-btn {
    background:#214e8a;
    color:#ffffff;
    border:0;
    border-radius:10px;
    padding:13px 24px;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
}

.cr-form-btn:hover {
    background:#14335e;
}

@media(max-width:700px) {
    .cr-form-site {
        margin:26px 16px;
        padding:24px 20px;
    }

    .cr-form-grid {
        grid-template-columns:1fr;
        gap:0;
    }
}

/* =========================================================
   Formulários Site 2026
   ========================================================= */

.cr-formulario-site {
    max-width: 920px;
    margin: 0 auto;
}

.cr-form-card {
    background: #ffffff;
    border: 1px solid #d8e3ef;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 12px 34px rgba(20, 51, 94, 0.10);
}

.cr-form-card h2 {
    margin: 0 0 8px;
    color: #14335e;
    font-size: 30px;
}

.cr-form-intro {
    margin: 0 0 28px;
    color: #4a5a72;
}

.cr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.cr-form-campo {
    margin-bottom: 22px;
}

.cr-form-campo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1a2535;
}

.cr-form-campo input[type="text"],
.cr-form-campo input[type="email"],
.cr-form-campo textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #c9d8e8;
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 16px;
    background: #ffffff;
}

.cr-form-campo textarea {
    min-height: 130px;
    resize: vertical;
}

.cr-form-opcoes {
    background: #f3f7fc;
    border: 1px solid #d8e3ef;
    border-radius: 14px;
    padding: 18px;
}

.cr-radio {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
    font-weight: 500 !important;
}

.cr-radio input {
    margin-top: 4px;
}

.cr-form-acoes {
    margin-top: 10px;
}

.cr-form-acoes button {
    border: 0;
    border-radius: 999px;
    background: #214e8a;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.cr-form-acoes button:hover {
    background: #14335e;
}

.cr-form-alerta {
    max-width: 920px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 700;
}

.cr-form-alerta.sucesso {
    background: #e8f7ef;
    color: #17633a;
    border: 1px solid #bde8cf;
}

.cr-form-alerta.erro {
    background: #fdecec;
    color: #9d1c1c;
    border: 1px solid #f2c2c2;
}

@media (max-width: 760px) {
    .cr-form-card {
        padding: 22px;
        border-radius: 14px;
    }

    .cr-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cr-form-card h2 {
        font-size: 25px;
    }
}
/* Formulário Agendar Consulta 2026 - ajuste forte */
.cr-formulario-consulta {
    width: 100%;
    max-width: 720px !important;
    margin: 36px auto !important;
    background: #ffffff;
    padding: 28px !important;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(20,51,94,.12);
    border: 1px solid #d8e3ef;
}

.cr-formulario-consulta h2 {
    margin-top: 0;
    font-size: 28px;
    color: #14335e;
}

.cr-formulario-consulta p {
    margin: 0 0 16px;
}

.cr-formulario-consulta label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a2535;
}

.cr-formulario-consulta input[type="text"],
.cr-formulario-consulta input[type="email"],
.cr-formulario-consulta textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid #c9d8e8;
    border-radius: 8px;
    background: #fff;
}

.cr-formulario-consulta textarea {
    min-height: 100px;
}

.cr-formulario-consulta input[type="radio"] {
    margin-right: 6px;
}

.cr-formulario-consulta button {
    background: #214e8a;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    cursor: pointer;
}

.cr-formulario-consulta button:hover {
    background: #14335e;
}