/* =============================================================
   binaryPro Theme — Binary Journals
   Portal Agregador de Revistas Científicas · Angola
   Paleta: #17384A · #0F4C5C · #00A99D · #9EF3EF · #F5F7FA
   Inter + Bootstrap Icons carregados via BinaryProPlugin.inc.php
   ============================================================= */

/* =============================================================
   VARIÁVEIS CSS
   ============================================================= */
:root {
    /* Paleta principal */
    --bp-dark-blue:      #17384A;
    --bp-petrol:         #0F4C5C;
    --bp-turquoise:      #00A99D;
    --bp-turquoise-soft: #9EF3EF;
    --bp-white:          #FFFFFF;
    --bp-gray-light:     #F5F7FA;
    --bp-text:           #1F2933;
    --bp-text-muted:     #4A5568;
    --bp-border:         #E2E8F0;

    /* Sombras */
    --bp-shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
    --bp-shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --bp-shadow-md: 0 4px 16px rgba(23,56,74,0.10);
    --bp-shadow-lg: 0 10px 32px rgba(23,56,74,0.13);
    --bp-shadow-xl: 0 20px 48px rgba(23,56,74,0.16);

    /* Raios */
    --bp-r-sm:  6px;
    --bp-r-md:  12px;
    --bp-r-lg:  20px;
    --bp-r-xl:  28px;
    --bp-r-full: 100px;

    /* Transições */
    --bp-ease: 0.20s ease;
    --bp-ease-md: 0.28s ease;

    /* Override Bootstrap */
    --bs-primary:         #00A99D;
    --bs-primary-rgb:     0, 169, 157;
    --bs-link-color:      #00A99D;
    --bs-link-hover-color:#0F4C5C;
    --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bs-body-color:      #1F2933;
}

/* =============================================================
   RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--bp-text);
    background: var(--bp-white);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bp-dark-blue);
    margin-top: 0;
}

a {
    color: var(--bp-turquoise);
    transition: color var(--bp-ease);
}

a:hover { color: var(--bp-petrol); }

img { max-width: 100%; height: auto; }

/* OJS page wrapper */
.pkp_structure_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.pkp_structure_main,
#pkp_content_main {
    flex: 1;
}

/* Suprimir sidebar padrão em páginas que não a precisam */
.pkp_structure_sidebar { padding-top: 1.5rem; }

/* =============================================================
   BOTÕES GLOBAIS
   ============================================================= */
.bp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: var(--bp-r-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--bp-ease);
    white-space: nowrap;
    line-height: 1;
}

.bp-btn-primary {
    background: var(--bp-turquoise);
    color: var(--bp-white);
}
.bp-btn-primary:hover {
    background: var(--bp-petrol);
    color: var(--bp-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,169,157,0.35);
}

.bp-btn-dark {
    background: var(--bp-dark-blue);
    color: var(--bp-white);
}
.bp-btn-dark:hover {
    background: var(--bp-petrol);
    color: var(--bp-white);
    transform: translateY(-1px);
}

.bp-btn-outline {
    background: transparent;
    color: var(--bp-dark-blue);
    border: 1.5px solid var(--bp-border);
}
.bp-btn-outline:hover {
    border-color: var(--bp-turquoise);
    color: var(--bp-turquoise);
    background: rgba(0,169,157,0.05);
}

.bp-btn-ghost-light {
    background: rgba(255,255,255,0.12);
    color: var(--bp-white);
    border: 1.5px solid rgba(255,255,255,0.28);
}
.bp-btn-ghost-light:hover {
    background: rgba(255,255,255,0.20);
    color: var(--bp-white);
    border-color: rgba(255,255,255,0.50);
}

/* =============================================================
   NAVBAR
   ============================================================= */
.bp-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bp-border);
    transition: box-shadow var(--bp-ease-md);
}

.bp-navbar.scrolled {
    box-shadow: var(--bp-shadow-md);
}

.bp-navbar-inner {
    display: flex;
    align-items: center;
    height: 66px;
    gap: 1.5rem;
}

/* Logo */
.bp-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
}
.bp-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.bp-brand-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    letter-spacing: -0.4px;
    line-height: 1;
}
.bp-brand-name span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--bp-turquoise);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav list */
.bp-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.bp-nav-item { position: relative; }

.bp-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--bp-text);
    text-decoration: none;
    border-radius: var(--bp-r-sm);
    white-space: nowrap;
    transition: color var(--bp-ease), background var(--bp-ease);
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
.bp-nav-link:hover,
.bp-nav-link:focus-visible {
    color: var(--bp-turquoise);
    background: rgba(0,169,157,0.07);
    outline: none;
}
.bp-nav-link .bi-chevron-down {
    font-size: 10px;
    transition: transform var(--bp-ease);
    color: var(--bp-text-muted);
}
.bp-nav-item:hover .bi-chevron-down,
.bp-nav-item:focus-within .bi-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.bp-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    box-shadow: var(--bp-shadow-xl);
    min-width: 230px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--bp-ease), transform var(--bp-ease);
    z-index: 200;
}
.bp-nav-item:hover .bp-dropdown,
.bp-nav-item:focus-within .bp-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Seta do dropdown */
.bp-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom-color: var(--bp-border);
    border-top: none;
}
.bp-dropdown::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--bp-white);
    border-top: none;
}

.bp-dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bp-text);
    text-decoration: none;
    border-radius: var(--bp-r-sm);
    transition: background var(--bp-ease), color var(--bp-ease);
}
.bp-dropdown a:hover {
    background: var(--bp-gray-light);
    color: var(--bp-turquoise);
}
.bp-dropdown a i {
    color: var(--bp-turquoise);
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

/* Divisor no dropdown */
.bp-dropdown-divider {
    height: 1px;
    background: var(--bp-border);
    margin: 5px 0;
}

/* Navbar actions */
.bp-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Ícone de pesquisa */
.bp-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--bp-border);
    background: transparent;
    color: var(--bp-text-muted);
    cursor: pointer;
    transition: all var(--bp-ease);
    text-decoration: none;
    font-size: 15px;
}
.bp-search-btn:hover {
    background: var(--bp-gray-light);
    color: var(--bp-turquoise);
    border-color: var(--bp-turquoise);
}

/* User toggle */
.bp-user-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: var(--bp-r-full);
    border: 1.5px solid var(--bp-border);
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    transition: all var(--bp-ease);
    text-decoration: none;
    line-height: 1;
}
.bp-user-toggle:hover {
    border-color: var(--bp-turquoise);
    color: var(--bp-dark-blue);
}
.bp-user-toggle i.bi-person-circle {
    font-size: 18px;
    color: var(--bp-petrol);
}
.bp-user-toggle .bi-chevron-down {
    font-size: 10px;
    color: var(--bp-text-muted);
}

/* Dropdown de utilizador (Bootstrap) */
.bp-user-dropdown.dropdown-menu {
    border-radius: var(--bp-r-md);
    border: 1px solid var(--bp-border);
    box-shadow: var(--bp-shadow-xl);
    padding: 6px;
    min-width: 200px;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
}
.bp-user-dropdown .dropdown-item {
    border-radius: var(--bp-r-sm);
    padding: 9px 12px;
    font-weight: 500;
    color: var(--bp-text);
    transition: background var(--bp-ease), color var(--bp-ease);
}
.bp-user-dropdown .dropdown-item:hover {
    background: var(--bp-gray-light);
    color: var(--bp-turquoise);
}

/* Botão hambúrguer mobile */
.bp-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--bp-r-sm);
    border: 1.5px solid var(--bp-border);
    background: transparent;
    cursor: pointer;
    color: var(--bp-text);
    font-size: 20px;
    transition: all var(--bp-ease);
}
.bp-mobile-toggle:hover {
    background: var(--bp-gray-light);
    border-color: var(--bp-turquoise);
    color: var(--bp-turquoise);
}

/* =============================================================
   MENU MOBILE
   ============================================================= */
.bp-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bp-white);
    z-index: 9999;
    padding: 0;
    overflow-y: auto;
}
.bp-mobile-menu.open {
    display: flex;
    flex-direction: column;
    animation: bpFadeIn 0.22s ease;
}
@keyframes bpFadeIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

.bp-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--bp-border);
}
.bp-mobile-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--bp-border);
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-text);
    transition: all var(--bp-ease);
}
.bp-mobile-close:hover {
    background: var(--bp-gray-light);
    color: var(--bp-turquoise);
}

.bp-mobile-nav {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
}
.bp-mobile-nav > li {
    border-bottom: 1px solid var(--bp-gray-light);
}
.bp-mobile-nav > li > a,
.bp-mobile-nav > li > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--bp-ease);
}
.bp-mobile-nav > li > a:hover,
.bp-mobile-nav > li > button:hover {
    color: var(--bp-turquoise);
}
.bp-mobile-sub {
    list-style: none;
    padding: 0 0 8px 20px;
    margin: 0;
    display: none;
    background: var(--bp-gray-light);
}
.bp-mobile-sub.open { display: block; }
.bp-mobile-sub li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bp-text-muted);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.bp-mobile-sub li a i {
    color: var(--bp-turquoise);
    font-size: 14px;
    width: 16px;
}
.bp-mobile-sub li a:hover { color: var(--bp-turquoise); }

.bp-mobile-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--bp-border);
}
.bp-mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--bp-r-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all var(--bp-ease);
}

/* =============================================================
   HERO
   ============================================================= */
.bp-hero {
    background: linear-gradient(145deg, var(--bp-dark-blue) 0%, var(--bp-petrol) 55%, #0d5a6b 100%);
    color: var(--bp-white);
    padding: 88px 0 110px;
    position: relative;
    overflow: hidden;
}
/* Decoração de fundo */
.bp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 75% 40%, rgba(0,169,157,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(158,243,239,0.07) 0%, transparent 55%);
    pointer-events: none;
}
/* Onda branca no fundo */
.bp-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 64px;
    background: var(--bp-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.bp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.bp-hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.bp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(158,243,239,0.12);
    border: 1px solid rgba(158,243,239,0.28);
    color: var(--bp-turquoise-soft);
    padding: 6px 16px;
    border-radius: var(--bp-r-full);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.bp-hero-diamond {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--bp-white);
    padding: 6px 14px;
    border-radius: var(--bp-r-full);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
}
.bp-hero-diamond i {
    color: var(--bp-turquoise-soft);
    font-size: 13px;
}

.bp-hero h1 {
    font-size: clamp(26px, 5.5vw, 50px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
    color: var(--bp-white);
}
.bp-hero h1 em {
    color: var(--bp-turquoise-soft);
    font-style: normal;
}

.bp-hero-sub {
    font-size: clamp(14px, 2.2vw, 17px);
    color: rgba(255,255,255,0.72);
    margin-bottom: 38px;
    line-height: 1.65;
    font-weight: 400;
}

/* Caixa de pesquisa do hero */
.bp-hero-search {
    background: var(--bp-white);
    border-radius: var(--bp-r-full);
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 22px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.22);
    max-width: 620px;
    margin: 0 auto 30px;
    gap: 6px;
}
.bp-hero-search i {
    color: #94a3b8;
    font-size: 18px;
    flex-shrink: 0;
}
.bp-hero-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14.5px;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    outline: none;
    padding: 9px 0;
    min-width: 0;
}
.bp-hero-search input::placeholder { color: #94a3b8; }
.bp-hero-search button {
    background: var(--bp-turquoise);
    color: var(--bp-white);
    border: none;
    border-radius: var(--bp-r-full);
    padding: 11px 22px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--bp-ease), transform var(--bp-ease);
    white-space: nowrap;
    flex-shrink: 0;
}
.bp-hero-search button:hover {
    background: var(--bp-petrol);
    transform: scale(1.02);
}

/* Botões hero CTA */
.bp-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bp-hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 22px;
    border-radius: var(--bp-r-full);
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all var(--bp-ease);
    line-height: 1;
}
.bp-cta-main {
    background: var(--bp-turquoise);
    color: var(--bp-white);
}
.bp-cta-main:hover {
    background: #009589;
    color: var(--bp-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,169,157,0.40);
}
.bp-cta-ghost {
    background: rgba(255,255,255,0.10);
    color: var(--bp-white);
    border: 1.5px solid rgba(255,255,255,0.26);
}
.bp-cta-ghost:hover {
    background: rgba(255,255,255,0.18);
    color: var(--bp-white);
    border-color: rgba(255,255,255,0.45);
}

/* =============================================================
   STATS
   ============================================================= */
.bp-stats {
    padding: 48px 0;
    background: var(--bp-white);
}
.bp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.bp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--bp-r-md);
    background: var(--bp-gray-light);
    transition: transform var(--bp-ease), box-shadow var(--bp-ease);
}
.bp-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--bp-shadow-md);
}
.bp-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--bp-r-sm);
    background: linear-gradient(135deg, var(--bp-dark-blue), var(--bp-petrol));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-turquoise-soft);
    font-size: 22px;
    margin-bottom: 14px;
}
.bp-stat-n {
    font-size: 30px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.8px;
}
.bp-stat-l {
    font-size: 12px;
    color: var(--bp-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================================
   SECÇÕES — PARTILHADO
   ============================================================= */
.bp-section { padding: 76px 0; }
.bp-section-alt { background: var(--bp-gray-light); }

.bp-section-hd,
.bp-section-head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}
.bp-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--bp-turquoise);
    margin-bottom: 10px;
}
.bp-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--bp-dark-blue);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}
.bp-sub {
    font-size: 15px;
    color: var(--bp-text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.bp-view-all {
    text-align: center;
    margin-top: 44px;
}

/* =============================================================
   REVISTAS — CARDS
   ============================================================= */
.bp-journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.bp-journal-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--bp-ease-md), box-shadow var(--bp-ease-md), border-color var(--bp-ease-md);
}
.bp-journal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bp-shadow-lg);
    border-color: rgba(0,169,157,0.30);
}

.bp-journal-cover {
    height: 164px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-journal-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.40s ease;
}
.bp-journal-card:hover .bp-journal-cover img {
    transform: scale(1.05);
}
.bp-journal-cover-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    height: 100%;
    width: 100%;
    gap: 6px;
}
.bp-journal-cover-placeholder i { font-size: 42px; }
.bp-journal-cover-placeholder span { font-size: 11px; font-weight: 500; }

.bp-journal-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bp-journal-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bp-turquoise);
    margin-bottom: 6px;
}
.bp-journal-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    line-height: 1.35;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: color var(--bp-ease);
}
.bp-journal-name:hover { color: var(--bp-turquoise); }

.bp-journal-desc {
    font-size: 12.5px;
    color: var(--bp-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bp-journal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--bp-border);
}
.bp-journal-inst {
    font-size: 11px;
    color: var(--bp-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.bp-journal-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--bp-turquoise);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--bp-ease), color var(--bp-ease);
}
.bp-journal-link:hover {
    color: var(--bp-petrol);
    gap: 8px;
}

/* =============================================================
   ÁREAS CIENTÍFICAS
   ============================================================= */
.bp-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.bp-area-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 28px 20px 24px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all var(--bp-ease-md);
}
.bp-area-card:hover {
    border-color: var(--bp-turquoise);
    background: rgba(0,169,157,0.04);
    transform: translateY(-3px);
    box-shadow: var(--bp-shadow-sm);
}
.bp-area-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--bp-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform var(--bp-ease);
}
.bp-area-card:hover .bp-area-icon { transform: scale(1.10); }
.bp-area-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-dark-blue);
    line-height: 1.3;
}
.bp-area-count {
    font-size: 11px;
    color: var(--bp-text-muted);
    font-weight: 400;
}

/* =============================================================
   SOLUÇÕES
   ============================================================= */
.bp-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.bp-solution-card {
    padding: 28px;
    border-radius: var(--bp-r-md);
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    transition: all var(--bp-ease-md);
}
.bp-solution-card:hover {
    border-color: rgba(0,169,157,0.35);
    box-shadow: var(--bp-shadow-md);
    transform: translateY(-3px);
}
.bp-solution-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--bp-r-sm);
    background: linear-gradient(135deg, var(--bp-dark-blue), var(--bp-petrol));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-turquoise-soft);
    font-size: 22px;
    margin-bottom: 16px;
}
.bp-solution-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
}
.bp-solution-desc {
    font-size: 13.5px;
    color: var(--bp-text-muted);
    line-height: 1.65;
}

/* =============================================================
   CTA FINAL
   ============================================================= */
.bp-cta-section {
    background: linear-gradient(145deg, var(--bp-dark-blue) 0%, var(--bp-petrol) 100%);
    padding: 76px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bp-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,169,157,0.14) 0%, transparent 65%);
}
.bp-cta-inner {
    position: relative;
    z-index: 1;
}
.bp-cta-inner h2 {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--bp-white);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}
.bp-cta-inner p {
    font-size: 15.5px;
    color: rgba(255,255,255,0.70);
    max-width: 520px;
    margin: 0 auto 34px;
    line-height: 1.65;
}
.bp-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.bp-cta-btn-main {
    background: var(--bp-turquoise);
    color: var(--bp-white);
    padding: 14px 28px;
    font-size: 14.5px;
}
.bp-cta-btn-main:hover {
    background: #009589;
    color: var(--bp-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,169,157,0.42);
}
.bp-cta-btn-ghost {
    background: rgba(255,255,255,0.10);
    color: var(--bp-white);
    border: 1.5px solid rgba(255,255,255,0.28);
    padding: 14px 28px;
    font-size: 14.5px;
}
.bp-cta-btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    color: var(--bp-white);
    border-color: rgba(255,255,255,0.50);
}

/* =============================================================
   FOOTER
   ============================================================= */
.bp-footer {
    background: var(--bp-dark-blue);
    color: rgba(255,255,255,0.72);
    padding: 64px 0 0;
}
.bp-footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
    gap: 44px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

/* Coluna de marca */
.bp-footer-brand-link {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    margin-bottom: 14px;
}
.bp-footer-brand-link img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
.bp-footer-brand-nm {
    font-size: 18px;
    font-weight: 800;
    color: var(--bp-white);
    letter-spacing: -0.3px;
}
.bp-footer-desc {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 270px;
    margin-bottom: 22px;
}

/* Redes sociais */
.bp-footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.bp-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    text-decoration: none;
    transition: all var(--bp-ease);
}
.bp-footer-social a:hover {
    background: var(--bp-turquoise);
    color: var(--bp-white);
    transform: translateY(-2px);
}

.bp-footer-diamond-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}
.bp-footer-diamond-badge i {
    color: var(--bp-turquoise-soft);
    font-size: 13px;
}

/* Colunas de links */
.bp-footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--bp-turquoise-soft);
    margin-bottom: 18px;
}
.bp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bp-footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.bp-footer-links a:hover { color: var(--bp-turquoise-soft); }

/* Contacto */
.bp-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bp-footer-ci {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.bp-footer-ci i {
    color: var(--bp-turquoise);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Selo de homologação INFOSI */
.bp-footer-seal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px 10px;
    padding: 6px 0;
    margin-top: 4px;
    text-align: left;
    opacity: 0.7;
}
.bp-footer-seal > i {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    flex-shrink: 0;
}
.bp-footer-seal-label {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
}
.bp-footer-infosi-wrap {
    display: inline-flex;
    background: #ffffff;
    border-radius: 4px;
    padding: 3px 7px;
    line-height: 0;
    flex-shrink: 0;
}
.bp-footer-infosi-logo {
    height: 14px;
    width: auto;
    display: block;
}

/* Rodapé inferior */
.bp-footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.bp-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    margin: 0;
}
.bp-footer-credits {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255,255,255,0.32);
    margin: 0;
    flex-wrap: wrap;
}
.bp-footer-credits a {
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.bp-footer-credits a:hover { color: rgba(255,255,255,0.80); }

/* =============================================================
   COMPATIBILIDADE OJS — override estilos default
   ============================================================= */

/* Remover constraints do tema default nestes wrappers estruturais */
.pkp_structure_content,
.pkp_structure_main {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    overflow: visible !important;
}

/* Remover as linhas verticais laterais geradas pelo tema padrão */
.pkp_structure_main::before,
.pkp_structure_main::after {
    display: none !important;
    content: none !important;
}

/* Suprimir cabeçalho e rodapé default do OJS */
.pkp_site_name_wrapper,
.pkp_navigation_primary_row,
.pkp_site_name,
#pkp_nav_user + div.pkp_structure_head { display: none !important; }

/* Breadcrumbs */
.pkp_navigation_breadcrumbs {
    padding: 12px 0;
    font-size: 13px;
    color: var(--bp-text-muted);
}

/* Páginas internas */
.page { padding: 36px 0 72px; }

/* Alertas */
.pkp_notification {
    border-radius: var(--bp-r-sm);
    font-size: 14px;
}

/* Formulários OJS */
.pkp_form input[type="text"],
.pkp_form input[type="email"],
.pkp_form input[type="password"],
.pkp_form select,
.pkp_form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-sm);
    padding: 10px 14px;
    color: var(--bp-text);
    transition: border-color var(--bp-ease);
    width: 100%;
}
.pkp_form input:focus,
.pkp_form select:focus,
.pkp_form textarea:focus {
    outline: none;
    border-color: var(--bp-turquoise);
    box-shadow: 0 0 0 3px rgba(0,169,157,0.12);
}

/* Botões OJS */
.pkp_button_primary,
button[type="submit"].button {
    background: var(--bp-turquoise) !important;
    color: var(--bp-white) !important;
    border: none !important;
    border-radius: var(--bp-r-full) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    transition: background var(--bp-ease) !important;
}
.pkp_button_primary:hover { background: var(--bp-petrol) !important; }

/* Tabelas de artigos */
.obj_article_summary {
    border-radius: var(--bp-r-sm);
    border: 1px solid var(--bp-border);
    padding: 20px;
    margin-bottom: 16px;
    transition: box-shadow var(--bp-ease);
    background: var(--bp-white);
}
.obj_article_summary:hover {
    box-shadow: var(--bp-shadow-sm);
}

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (max-width: 1100px) {
    .bp-solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .bp-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
    /* Esconder nav e botões desktop */
    .bp-nav,
    .bp-nav-actions .bp-btn,
    .bp-nav-actions .bp-user-toggle,
    .bp-nav-actions .bp-search-btn { display: none !important; }

    .bp-mobile-toggle { display: flex; }

    .bp-hero { padding: 60px 0 90px; }
    .bp-hero::after { height: 44px; }

    .bp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .bp-journals-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .bp-areas-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .bp-solutions-grid { grid-template-columns: 1fr; }

    .bp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .bp-footer-bottom { flex-direction: column; align-items: flex-start; }

    .bp-section { padding: 52px 0; }
}

@media (max-width: 520px) {
    .bp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-journals-grid { grid-template-columns: 1fr; }
    .bp-areas-grid { grid-template-columns: 1fr; }

    .bp-hero-search {
        flex-direction: column;
        border-radius: var(--bp-r-lg);
        padding: 14px;
        gap: 10px;
    }
    .bp-hero-search input {
        width: 100%;
        padding: 8px 10px;
    }
    .bp-hero-search button {
        width: 100%;
        justify-content: center;
        border-radius: var(--bp-r-sm);
    }

    .bp-hero-cta { gap: 8px; }
    .bp-hero-cta a { padding: 11px 18px; font-size: 13px; }
}

/* =============================================================
   PÁGINAS INTERNAS — GERAL
   ============================================================= */

/* Breadcrumbs */
.pkp_navigation_breadcrumbs {
    padding: 14px 0;
    font-size: 12.5px;
    color: var(--bp-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.pkp_navigation_breadcrumbs a {
    color: var(--bp-text-muted);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.pkp_navigation_breadcrumbs a:hover { color: var(--bp-turquoise); }

/* Padding geral para páginas internas que não são homepage */
.page {
    padding: 40px 0 80px;
    max-width: 860px;
    margin: 0 auto;
}
.page h1 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

/* =============================================================
   FORMULÁRIOS OJS — .cmp_form (login, registo, pesquisa)
   ============================================================= */

.cmp_form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px;
}
.cmp_form legend {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--bp-turquoise);
    margin-bottom: 16px;
    padding: 0;
}
.cmp_form .fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cmp_form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cmp_form .label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-text);
    display: block;
}
.cmp_form .required {
    color: var(--bp-turquoise);
    margin-left: 2px;
}
.cmp_form input[type="text"],
.cmp_form input[type="email"],
.cmp_form input[type="password"],
.cmp_form select,
.cmp_form textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    background: var(--bp-white);
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-sm);
    transition: border-color var(--bp-ease), box-shadow var(--bp-ease);
    outline: none;
    line-height: 1.5;
}
.cmp_form input:focus,
.cmp_form select:focus,
.cmp_form textarea:focus {
    border-color: var(--bp-turquoise);
    box-shadow: 0 0 0 3px rgba(0,169,157,0.12);
}
.cmp_form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--bp-turquoise);
    cursor: pointer;
    margin-right: 8px;
    flex-shrink: 0;
}
.cmp_form .checkbox label,
.cmp_form .optin label {
    flex-direction: row;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--bp-text-muted);
    line-height: 1.5;
}
.cmp_form .buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.cmp_form button.submit,
.cmp_form .submit button {
    background: var(--bp-turquoise);
    color: var(--bp-white);
    border: none;
    border-radius: var(--bp-r-full);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background var(--bp-ease), transform var(--bp-ease);
    line-height: 1;
}
.cmp_form button.submit:hover { background: var(--bp-petrol); transform: translateY(-1px); }
.cmp_form a.register,
.cmp_form a.login {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--bp-text-muted);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.cmp_form a.register:hover,
.cmp_form a.login:hover { color: var(--bp-turquoise); }
.cmp_form .pkp_form_error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    border-radius: var(--bp-r-sm);
    padding: 12px 16px;
    font-size: 13.5px;
    margin-bottom: 16px;
}
.cmp_form a[href*="lostPassword"] {
    font-size: 12px;
    color: var(--bp-text-muted);
    text-decoration: none;
    margin-top: 4px;
    display: inline-block;
    transition: color var(--bp-ease);
}
.cmp_form a[href*="lostPassword"]:hover { color: var(--bp-turquoise); }

/* =============================================================
   LOGIN — layout split
   ============================================================= */

.bp-auth-wrap {
    min-height: calc(100vh - 66px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Painel esquerdo — branding */
.bp-auth-left {
    background: linear-gradient(155deg, var(--bp-dark-blue) 0%, var(--bp-petrol) 60%, #0d5a6b 100%);
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: start;
    overflow: hidden;
}
.bp-auth-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 70% 40%, rgba(0,169,157,0.16) 0%, transparent 65%);
}
.bp-auth-left-inner { position: relative; z-index: 1; }

.bp-auth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 56px;
}
.bp-auth-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
}
.bp-auth-logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--bp-white);
    letter-spacing: -0.3px;
}

.bp-auth-tagline {
    margin-bottom: 40px;
}
.bp-auth-tagline h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--bp-white);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}
.bp-auth-tagline p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.bp-auth-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bp-auth-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
}
.bp-auth-stat i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-turquoise-soft);
    font-size: 15px;
    flex-shrink: 0;
}
.bp-auth-stat strong { color: var(--bp-white); font-weight: 700; }
.bp-auth-stat span   { color: rgba(255,255,255,0.60); font-size: 12px; }
.bp-auth-stat div    { display: flex; flex-direction: column; gap: 1px; }

/* Painel direito — formulário */
.bp-auth-right {
    background: var(--bp-white);
    padding: 60px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-auth-form-wrap {
    width: 100%;
    max-width: 400px;
}
.bp-auth-form-wrap h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.bp-auth-form-wrap .bp-auth-subtitle {
    font-size: 14px;
    color: var(--bp-text-muted);
    margin-bottom: 32px;
    line-height: 1.5;
}
.bp-auth-form-wrap .bp-auth-subtitle a {
    color: var(--bp-turquoise);
    font-weight: 600;
    text-decoration: none;
}
.bp-auth-form-wrap .bp-auth-subtitle a:hover { color: var(--bp-petrol); }

/* Separador "ou" */
.bp-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--bp-text-muted);
    font-size: 12px;
}
.bp-auth-divider::before,
.bp-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bp-border);
}

/* =============================================================
   SEARCH — motor de descoberta
   ============================================================= */

.bp-search-hero {
    background: var(--bp-gray-light);
    border-bottom: 1px solid var(--bp-border);
    padding: 44px 0 36px;
}
.bp-search-hero h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.bp-search-bar {
    display: flex;
    align-items: center;
    background: var(--bp-white);
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-full);
    padding: 6px 6px 6px 20px;
    box-shadow: var(--bp-shadow-sm);
    max-width: 680px;
    gap: 8px;
    transition: border-color var(--bp-ease), box-shadow var(--bp-ease);
}
.bp-search-bar:focus-within {
    border-color: var(--bp-turquoise);
    box-shadow: 0 0 0 3px rgba(0,169,157,0.10);
}
.bp-search-bar i { color: #94a3b8; font-size: 17px; flex-shrink: 0; }
.bp-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    outline: none;
    padding: 8px 0;
    min-width: 0;
}
.bp-search-bar input::placeholder { color: #94a3b8; }
.bp-search-bar button {
    background: var(--bp-turquoise);
    color: var(--bp-white);
    border: none;
    border-radius: var(--bp-r-full);
    padding: 11px 22px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--bp-ease);
    white-space: nowrap;
    flex-shrink: 0;
}
.bp-search-bar button:hover { background: var(--bp-petrol); }

/* Filtros */
.bp-search-filters {
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bp-search-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.bp-search-filter-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bp-text-muted);
}
.bp-search-filter-group input,
.bp-search-filter-group select {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    padding: 8px 12px;
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-sm);
    background: var(--bp-white);
    color: var(--bp-text);
    outline: none;
    transition: border-color var(--bp-ease);
}
.bp-search-filter-group input:focus,
.bp-search-filter-group select:focus {
    border-color: var(--bp-turquoise);
}
.bp-date-range {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bp-date-range span {
    font-size: 12px;
    color: var(--bp-text-muted);
}

/* Corpo da pesquisa */
.bp-search-body {
    padding: 40px 0 72px;
}
.bp-search-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}
.bp-search-count {
    font-size: 14px;
    color: var(--bp-text-muted);
}
.bp-search-count strong {
    color: var(--bp-dark-blue);
    font-weight: 700;
}

/* Resultados */
.bp-search-results {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bp-result-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 24px;
    transition: box-shadow var(--bp-ease), border-color var(--bp-ease);
}
.bp-result-card:hover {
    box-shadow: var(--bp-shadow-md);
    border-color: rgba(0,169,157,0.25);
}
.bp-result-journal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--bp-turquoise);
    margin-bottom: 8px;
    text-decoration: none;
}
.bp-result-journal:hover { color: var(--bp-petrol); }
.bp-result-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    line-height: 1.35;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: color var(--bp-ease);
}
.bp-result-title:hover { color: var(--bp-turquoise); }
.bp-result-authors {
    font-size: 13px;
    color: var(--bp-text-muted);
    margin-bottom: 10px;
}
.bp-result-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.bp-result-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--bp-text-muted);
}
.bp-result-tag i { font-size: 12px; color: var(--bp-turquoise); }

/* Sem resultados */
.bp-no-results {
    text-align: center;
    padding: 64px 20px;
    color: var(--bp-text-muted);
}
.bp-no-results i {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
    color: #cbd5e1;
}
.bp-no-results h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
}
.bp-no-results p {
    font-size: 14px;
    max-width: 360px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Paginação */
.cmp_pagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--bp-border);
    font-size: 13.5px;
    color: var(--bp-text-muted);
}
.cmp_pagination a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--bp-r-full);
    border: 1.5px solid var(--bp-border);
    color: var(--bp-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all var(--bp-ease);
}
.cmp_pagination a:hover {
    border-color: var(--bp-turquoise);
    color: var(--bp-turquoise);
}

/* =============================================================
   ABOUT — página institucional
   ============================================================= */

.page_about {
    padding: 48px 0 80px;
}
.page_about .container {
    max-width: 800px;
}
.page_about h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 24px;
    letter-spacing: -0.4px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bp-gray-light);
}
.page_about h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin: 32px 0 12px;
}
.page_about h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-petrol);
    margin: 24px 0 8px;
}
.page_about p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--bp-text-muted);
    margin-bottom: 16px;
}
.page_about a {
    color: var(--bp-turquoise);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.page_about ul, .page_about ol {
    padding-left: 22px;
    margin-bottom: 16px;
}
.page_about li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--bp-text-muted);
    margin-bottom: 6px;
}

/* =============================================================
   RESPONSIVO — PÁGINAS INTERNAS
   ============================================================= */
@media (max-width: 768px) {
    .bp-auth-wrap { grid-template-columns: 1fr; }
    .bp-auth-left { display: none; }
    .bp-auth-right { padding: 40px 24px; }
    .bp-auth-form-wrap { max-width: 100%; }

    .bp-search-hero { padding: 28px 0 20px; }
    .bp-search-filters { flex-direction: column; align-items: stretch; }
    .bp-date-range { flex-direction: column; align-items: stretch; }

    .page { padding: 28px 0 56px; }
}
@media (max-width: 480px) {
    .bp-auth-right { padding: 32px 20px; }
    .cmp_form .buttons { flex-direction: column; }
    .cmp_form .buttons > * { width: 100%; text-align: center; justify-content: center; }
}

/* =============================================================
   AUTH — ajustes adicionais
   ============================================================= */

.bp-auth-logo span { /* sem classe extra no template */
    font-size: 18px;
    font-weight: 800;
    color: var(--bp-white);
    letter-spacing: -0.3px;
}
.bp-auth-form-header {
    margin-bottom: 28px;
}
.bp-auth-form-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.bp-auth-form-header p {
    font-size: 13px;
    color: var(--bp-text-muted);
}
.bp-auth-notice {
    background: rgba(0,169,157,0.08);
    border: 1px solid rgba(0,169,157,0.3);
    color: var(--bp-petrol);
    border-radius: var(--bp-r-sm);
    padding: 12px 16px;
    font-size: 13.5px;
    margin-bottom: 16px;
    line-height: 1.5;
}
.bp-auth-forgot {
    font-size: 12px;
    color: var(--bp-text-muted);
    text-decoration: none;
    margin-top: 4px;
    display: inline-block;
    transition: color var(--bp-ease);
}
.bp-auth-forgot:hover { color: var(--bp-turquoise); }

/* =============================================================
   SEARCH — layout sidebar (sobrepõe regras anteriores)
   ============================================================= */

.bp-search-hero-sub {
    font-size: 15px;
    color: var(--bp-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.bp-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    outline: none;
    padding: 8px 0;
    min-width: 0;
}
.bp-search-input::placeholder { color: #94a3b8; }
.bp-search-submit {
    background: var(--bp-turquoise);
    color: var(--bp-white);
    border: none;
    border-radius: var(--bp-r-full);
    padding: 11px 22px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--bp-ease);
    white-space: nowrap;
    flex-shrink: 0;
}
.bp-search-submit:hover { background: var(--bp-petrol); }

/* Corpo — grid com sidebar */
.bp-search-body {
    padding: 40px 0 72px;
    display: grid;
    grid-template-columns: 256px 1fr;
    gap: 36px;
    align-items: start;
}

/* Sidebar de filtros */
.bp-search-filters {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 20px;
    position: sticky;
    top: 82px;
    display: block; /* sobrepõe flex anterior */
}
.bp-search-filters-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bp-border);
    margin-bottom: 16px;
}
.bp-search-filter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bp-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}
.bp-search-filter-group {
    margin-bottom: 18px;
    display: block; /* sobrepõe flex anterior */
}
.bp-search-filter-group input,
.bp-search-filter-group select {
    width: 100%;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    padding: 8px 12px;
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-sm);
    background: var(--bp-white);
    color: var(--bp-text);
    outline: none;
    transition: border-color var(--bp-ease);
    box-sizing: border-box;
}
.bp-search-filter-group input:focus,
.bp-search-filter-group select:focus { border-color: var(--bp-turquoise); }
.bp-date-range,
.bp-year-range {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bp-date-range small,
.bp-year-range small {
    font-size: 11px;
    font-weight: 600;
    color: var(--bp-text-muted);
    display: block;
    margin-bottom: 4px;
}
.bp-year-field { display: flex; flex-direction: column; }
.bp-year-range select {
    width: 100%;
}
.bp-search-filter-btn {
    width: 100%;
    background: var(--bp-turquoise);
    color: var(--bp-white);
    border: none;
    border-radius: var(--bp-r-full);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background var(--bp-ease);
    margin-top: 4px;
}
.bp-search-filter-btn:hover { background: var(--bp-petrol); }

.bp-search-advanced {
    margin-bottom: 18px;
    border-top: 1px solid var(--bp-border);
    padding-top: 14px;
}
.bp-search-advanced-summary {
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bp-petrol);
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.bp-search-advanced-summary::-webkit-details-marker { display: none; }
.bp-search-advanced-body {
    margin-top: 14px;
}
.bp-search-advanced[open] .bp-search-advanced-summary {
    color: var(--bp-turquoise);
}

/* Coluna de resultados */
.bp-search-results { min-width: 0; }
.bp-search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bp-border);
}
.bp-result-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bp-result-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.bp-result-date {
    font-size: 11px;
    color: var(--bp-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.bp-result-abstract {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--bp-text-muted);
    margin-bottom: 12px;
    margin-top: 6px;
}
.bp-result-actions { margin-top: 14px; }
.bp-result-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-turquoise);
    text-decoration: none;
    transition: color var(--bp-ease), gap var(--bp-ease);
}
.bp-result-link:hover { color: var(--bp-petrol); gap: 9px; }

/* Estado vazio (sem query) */
.bp-search-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--bp-text-muted);
}
.bp-search-empty-state i {
    font-size: 52px;
    display: block;
    margin-bottom: 16px;
    color: #cbd5e1;
}
.bp-search-empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
}
.bp-search-empty-state p {
    font-size: 14px;
    max-width: 360px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Responsivo — sidebar colapsa */
@media (max-width: 900px) {
    .bp-search-body {
        grid-template-columns: 1fr;
    }
    .bp-search-filters {
        position: static;
    }
}

/* =============================================================
   PÁGINAS INTERNAS — HERO COMUM
   ============================================================= */

.bp-inner-hero {
    background: linear-gradient(135deg, var(--bp-dark-blue) 0%, var(--bp-petrol) 100%);
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
}
.bp-inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 60% at 80% 50%, rgba(0,169,157,0.18) 0%, transparent 70%);
}
.bp-inner-hero .container { position: relative; z-index: 1; }
.bp-inner-hero .bp-label { color: var(--bp-turquoise-soft); }
.bp-inner-hero h1 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--bp-white);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 14px;
}
.bp-inner-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    max-width: 580px;
}

/* =============================================================
   SOBRE NÓS
   ============================================================= */

.bp-about-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
}
.bp-about-text p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--bp-text-muted);
    margin-bottom: 16px;
    text-align: justify;
    hyphens: auto;
}
.bp-about-diferencial {
    max-width: 820px;
    margin: 0 auto;
}
.bp-about-img {
    border-radius: var(--bp-r-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow-lg);
}
.bp-about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.bp-stats-bar {
    background: var(--bp-dark-blue);
    padding: 48px 0;
}
.bp-stats-bar .bp-stats-grid {
    grid-template-columns: repeat(5, 1fr);
}
.bp-stats-bar .bp-stat strong { color: var(--bp-turquoise-soft); }
.bp-stats-bar .bp-stat span { color: rgba(255,255,255,0.65); }

/* =============================================================
   EQUIPA
   ============================================================= */

.bp-team-founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.bp-team-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 24px;
    transition: box-shadow var(--bp-ease);
    text-align: center;
}
.bp-team-card:hover { box-shadow: var(--bp-shadow-md); }
.bp-team-card.bp-team-founder {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
}
.bp-team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto 10px;
    background: var(--bp-gray-light);
}
.bp-team-card.bp-team-founder .bp-team-photo { margin: 0; }
.bp-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bp-team-photo-default {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #cbd5e1;
}
.bp-team-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin: 0 0 2px;
    line-height: 1.3;
}
.bp-team-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin: 0 0 4px;
    line-height: 1.4;
}
.bp-team-role {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--bp-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.4;
    margin: 0 0 4px;
}
.bp-team-role-sec {
    font-size: 11.5px;
    color: var(--bp-text-muted);
    line-height: 1.4;
    margin: 0 0 4px;
}
.bp-team-bio {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--bp-text-muted);
    margin-top: 8px;
}
.bp-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.bp-team-editorial {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bp-editorial-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
}
.bp-editorial-item i {
    font-size: 20px;
    color: var(--bp-turquoise);
    flex-shrink: 0;
}
.bp-editorial-item strong {
    display: block;
    font-size: 14px;
    color: var(--bp-dark-blue);
}
.bp-editorial-item span {
    font-size: 12.5px;
    color: var(--bp-text-muted);
}

/* =============================================================
   MISSÃO — BANNER FOTOGRÁFICO
   ============================================================= */
.bp-missao-photo-banner {
    position: relative;
    width: 100%;
    max-height: 380px;
    overflow: hidden;
    line-height: 0;
}
.bp-missao-photo-banner img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.bp-missao-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(23,56,74,0.75) 40%, rgba(23,56,74,0.2));
    display: flex;
    align-items: flex-end;
    padding: 36px 48px;
}
.bp-missao-photo-overlay blockquote {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    font-style: italic;
    max-width: 540px;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .bp-missao-photo-banner img { height: 220px; }
    .bp-missao-photo-overlay { padding: 20px 24px; }
}

/* =============================================================
   MISSÃO, VISÃO E VALORES
   ============================================================= */

.bp-mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 16px;
}
.bp-mvv-card {
    border-radius: var(--bp-r-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.bp-mvv-missao {
    background: linear-gradient(135deg, var(--bp-dark-blue) 0%, var(--bp-petrol) 100%);
    color: var(--bp-white);
}
.bp-mvv-visao {
    background: linear-gradient(135deg, var(--bp-petrol) 0%, #0d5a6b 100%);
    color: var(--bp-white);
}
.bp-mvv-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--bp-r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bp-turquoise-soft);
    margin-bottom: 20px;
}
.bp-mvv-card h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--bp-white);
}
.bp-mvv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
}
.bp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bp-value-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 28px;
    transition: box-shadow var(--bp-ease), border-color var(--bp-ease);
}
.bp-value-card:hover {
    box-shadow: var(--bp-shadow-md);
    border-color: rgba(0,169,157,0.3);
}
.bp-value-num {
    font-size: 32px;
    font-weight: 900;
    color: rgba(0,169,157,0.20);
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}
.bp-value-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
}
.bp-value-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--bp-text-muted);
}

/* =============================================================
   HISTÓRIA — TIMELINE
   ============================================================= */

.bp-historia-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
    margin-bottom: 16px;
}
.bp-historia-intro p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--bp-text-muted);
    margin-bottom: 16px;
}
.bp-historia-img {
    border-radius: var(--bp-r-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow-lg);
}
.bp-historia-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: top;
    display: block;
}
.bp-timeline {
    position: relative;
    padding-left: 40px;
}
.bp-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--bp-turquoise), var(--bp-dark-blue));
}
.bp-timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: start;
}
.bp-timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bp-turquoise);
    border: 2px solid var(--bp-white);
    box-shadow: 0 0 0 2px var(--bp-turquoise);
}
.bp-timeline-dot-accent {
    background: var(--bp-dark-blue);
    box-shadow: 0 0 0 2px var(--bp-dark-blue);
    width: 16px;
    height: 16px;
    left: -36px;
    top: 2px;
}
.bp-timeline-year span {
    font-size: 12px;
    font-weight: 700;
    color: var(--bp-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.bp-timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
}
.bp-timeline-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bp-text-muted);
}

/* =============================================================
   FAQ
   ============================================================= */

.bp-faq-wrap { max-width: 780px; margin: 0 auto; }
.bp-faq-section { margin-bottom: 48px; }
.bp-faq-cat {
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bp-gray-light);
}
.bp-faq-cat i { color: var(--bp-turquoise); }
.bp-faq-group { display: flex; flex-direction: column; gap: 8px; }
.bp-faq-item {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    overflow: hidden;
    transition: border-color var(--bp-ease);
}
.bp-faq-item.open { border-color: var(--bp-turquoise); }
.bp-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--bp-dark-blue);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--bp-ease);
}
.bp-faq-q:hover { color: var(--bp-turquoise); }
.bp-faq-q .bi-chevron-down {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    font-size: 13px;
    color: var(--bp-text-muted);
}
.bp-faq-item.open .bp-faq-q .bi-chevron-down { transform: rotate(180deg); }
.bp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.bp-faq-a p {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--bp-text-muted);
    margin: 0;
}
.bp-faq-a ul {
    padding: 0 20px 18px 36px;
    margin: 0;
}
.bp-faq-a li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bp-text-muted);
    margin-bottom: 4px;
}
.bp-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-turquoise);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.bp-faq-link:hover { color: var(--bp-petrol); }
.bp-faq-cta {
    text-align: center;
    padding: 48px 24px;
    background: var(--bp-gray-light);
    border-radius: var(--bp-r-lg);
    margin-top: 48px;
}
.bp-faq-cta i {
    font-size: 44px;
    color: var(--bp-turquoise);
    display: block;
    margin-bottom: 14px;
}
.bp-faq-cta h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
}
.bp-faq-cta p {
    font-size: 14px;
    color: var(--bp-text-muted);
    margin-bottom: 20px;
}

/* =============================================================
   SOLUÇÕES — planos e cards
   ============================================================= */

.bp-sol-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bp-turquoise);
    background: rgba(0,169,157,0.10);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.bp-sol-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bp-sol-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--bp-text-muted);
}
.bp-sol-features li i { color: var(--bp-turquoise); font-size: 14px; flex-shrink: 0; }
.bp-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    padding-top: 20px;
}
.bp-plan-card {
    background: var(--bp-white);
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-lg);
    padding: 32px 28px;
    position: relative;
    transition: box-shadow var(--bp-ease);
}
.bp-plan-card:hover { box-shadow: var(--bp-shadow-md); }
.bp-plan-card.bp-plan-featured {
    border-color: var(--bp-turquoise);
    box-shadow: 0 0 0 3px rgba(0,169,157,0.12);
}
.bp-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bp-turquoise);
    color: var(--bp-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.bp-plan-header { margin-bottom: 20px; }
.bp-plan-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 4px;
}
.bp-plan-header p {
    font-size: 13px;
    color: var(--bp-text-muted);
}
.bp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bp-plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--bp-text);
}
.bp-plan-features li i { color: var(--bp-turquoise); font-size: 15px; }
.bp-plan-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* =============================================================
   CONTACTOS
   ============================================================= */

.bp-contact-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
}
.bp-contact-info { display: flex; flex-direction: column; gap: 16px; }
.bp-contact-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.bp-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,169,157,0.10);
    border-radius: var(--bp-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bp-turquoise);
    flex-shrink: 0;
}
.bp-contact-card h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--bp-text-muted);
    margin-bottom: 4px;
}
.bp-contact-card a,
.bp-contact-card p,
.bp-contact-card address {
    font-size: 14px;
    color: var(--bp-text);
    font-style: normal;
    text-decoration: none;
    line-height: 1.5;
}
.bp-contact-card a:hover { color: var(--bp-turquoise); }
.bp-contact-social h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--bp-text-muted);
}
.bp-contact-form-wrap {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-lg);
    padding: 36px;
}
.bp-contact-form-wrap h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--bp-dark-blue);
    margin-bottom: 4px;
}
.bp-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.bp-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* =============================================================
   FOOTER — crédito binary.ao
   ============================================================= */

.bp-footer-dev-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--bp-ease);
}
.bp-footer-dev-link:hover { opacity: 1; }
.bp-footer-dev-link img {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(0.55);
    transition: filter var(--bp-ease);
    vertical-align: middle;
}
.bp-footer-dev-link:hover img { filter: brightness(0) invert(0.85); }
.bp-footer-ci a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.bp-footer-ci a:hover { color: var(--bp-turquoise-soft); }

/* =============================================================
   FORMULÁRIO PUBLICAR REVISTA
   ============================================================= */
.bp-form-narrow {
    max-width: 780px;
    margin: 0 auto;
}
.bp-criar-revista-iframe-wrap {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-lg);
    padding: 8px;
    overflow: hidden;
}
.bp-criar-revista-iframe-wrap iframe {
    display: block;
    width: 100%;
    border: none;
}
.bp-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--bp-r-md);
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.5;
}
.bp-form-alert i { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.bp-form-alert p { margin: 4px 0 0; color: inherit; }
.bp-form-alert strong { display: block; margin-bottom: 2px; }
.bp-form-alert-success {
    background: #edf7f4;
    border: 1px solid #6abf9e;
    color: #1a5c42;
}
.bp-form-alert-success i { color: #28a06a; }
.bp-form-alert-error {
    background: #fff5f5;
    border: 1px solid #f5a0a0;
    color: #8c2020;
}
.bp-form-alert-error i { color: #d63939; }
.bp-form-alert-error a { color: inherit; font-weight: 600; }

/* =============================================================
   RESPONSIVO — PÁGINAS DE CONTEÚDO
   ============================================================= */

@media (max-width: 1024px) {
    .bp-about-split,
    .bp-historia-split { grid-template-columns: 1fr; }
    .bp-about-img,
    .bp-historia-img { max-width: 480px; margin: 0 auto; }
    .bp-team-grid { grid-template-columns: repeat(3, 1fr); }
    .bp-mvv-grid,
    .bp-values-grid { grid-template-columns: 1fr 1fr; }
    .bp-plans-grid { grid-template-columns: 1fr 1fr; }
    .bp-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .bp-inner-hero { padding: 44px 0 36px; }
    .bp-team-founders,
    .bp-team-grid { grid-template-columns: 1fr 1fr; }
    .bp-team-card.bp-team-founder { flex-direction: column; text-align: center; }
    .bp-team-card.bp-team-founder .bp-team-photo { margin: 0 auto; }
    .bp-mvv-grid { grid-template-columns: 1fr; }
    .bp-values-grid { grid-template-columns: 1fr; }
    .bp-plans-grid { grid-template-columns: 1fr; }
    .bp-timeline { padding-left: 28px; }
    .bp-timeline-item { grid-template-columns: 80px 1fr; gap: 12px; }
    .bp-cf-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .bp-team-founders,
    .bp-team-grid { grid-template-columns: 1fr; }
    .bp-stats-bar .bp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   STATS BAR — sobre.tpl items
   ============================================================= */
.bp-stats-bar-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 48px;
}
.bp-stats-bar-item {
    text-align: center;
}
.bp-stats-bar-item strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--bp-turquoise-soft);
    line-height: 1.1;
    margin-bottom: 3px;
}
.bp-stats-bar-item span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* =============================================================
   ABOUT — logo wrap
   ============================================================= */
.bp-about-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: var(--bp-gray-light);
    border-radius: var(--bp-r-lg);
    border: 1px solid var(--bp-border);
}
.bp-about-portal-logo {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
}

.bp-about-collage-wrap {
    border-radius: var(--bp-r-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow-lg);
}
.bp-about-collage-img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================================
   HISTÓRIA — founders block + timeline v2
   ============================================================= */
.bp-historia-intro-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 0;
}
.bp-historia-founders {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.bp-hf-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bp-white);
    box-shadow: var(--bp-shadow-md);
}
.bp-hf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.bp-hf-sep {
    width: 2px;
    height: 20px;
    background: var(--bp-border);
    margin: 0 auto;
}
.bp-historia-lead .bp-label { margin-bottom: 8px; }
.bp-historia-lead .bp-title { margin-bottom: 16px; }
.bp-historia-lead p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--bp-text-muted);
    margin-bottom: 14px;
    text-align: justify;
    hyphens: auto;
}

/* Linha do tempo (imagem) */
.bp-historia-datas-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.bp-historia-timeline-img {
    text-align: center;
}
.bp-historia-timeline-img img {
    width: 100%;
    height: auto;
    border-radius: var(--bp-r-lg);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.bp-historia-datas p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--bp-text-muted);
    font-weight: 300;
    margin-bottom: 16px;
}
.bp-historia-datas p strong { font-weight: 600; }
.bp-historia-footnote {
    font-size: 12.5px;
    color: var(--bp-text-muted);
    opacity: 0.75;
}

/* Timeline v2 — two-column symmetric */
.bp-timeline-v2 {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.bp-timeline-v2::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, var(--bp-turquoise), rgba(23,56,74,0.25));
    pointer-events: none;
}
.bp-tlv2-item {
    display: grid;
    grid-template-columns: 1fr 28px 1fr;
    gap: 0 20px;
    margin-bottom: 32px;
    align-items: center;
}
.bp-tlv2-left { text-align: right; }
.bp-tlv2-year {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bp-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}
.bp-tlv2-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bp-turquoise);
    border: 2px solid var(--bp-white);
    box-shadow: 0 0 0 2px var(--bp-turquoise);
    justify-self: center;
    align-self: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.bp-tlv2-dot-accent {
    background: var(--bp-dark-blue);
    box-shadow: 0 0 0 2px var(--bp-dark-blue);
    width: 18px;
    height: 18px;
}
.bp-tlv2-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 18px 22px;
    transition: box-shadow var(--bp-ease), border-color var(--bp-ease);
}
.bp-tlv2-card:hover {
    box-shadow: var(--bp-shadow-md);
    border-color: rgba(0,169,157,0.28);
}
.bp-tlv2-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin-bottom: 6px;
}
.bp-tlv2-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--bp-text-muted);
    margin: 0;
}

/* =============================================================
   MARQUEE — revistas em destaque (scroll JS)
   ============================================================= */
.bp-marquee-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 52px;
}
.bp-marquee {
    overflow-x: scroll;
    overflow-y: hidden;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0 8px;
}
.bp-marquee::-webkit-scrollbar { display: none; }
.bp-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.bp-marquee-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bp-white);
    border: 1.5px solid var(--bp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bp-dark-blue);
    font-size: 18px;
    flex-shrink: 0;
    transition: all var(--bp-ease);
    box-shadow: var(--bp-shadow-sm);
    z-index: 2;
}
.bp-marquee-btn:hover {
    background: var(--bp-dark-blue);
    color: var(--bp-white);
    border-color: var(--bp-dark-blue);
    box-shadow: var(--bp-shadow-md);
}

/* Journal card — marquee item */
.bp-jcard {
    display: flex;
    flex-direction: column;
    width: 172px;
    flex-shrink: 0;
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--bp-ease-md);
    box-shadow: var(--bp-shadow-xs);
}
.bp-jcard:hover {
    border-color: rgba(0,169,157,0.35);
    box-shadow: var(--bp-shadow-md);
    transform: translateY(-3px);
}
.bp-jcard-cover {
    width: 100%;
    height: 196px;
    overflow: hidden;
    background: var(--bp-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-jcard-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.bp-jcard-placeholder {
    font-size: 36px;
    color: #cbd5e1;
}
.bp-jcard-body { padding: 10px 12px 14px; }
.bp-jcard-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bp-turquoise);
    margin-bottom: 4px;
}
.bp-jcard-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--bp-dark-blue);
    line-height: 1.4;
    margin: 0;
}

/* View all */
.bp-view-all {
    text-align: center;
    margin-top: 28px;
}

/* =============================================================
   CATÁLOGO DE REVISTAS
   ============================================================= */
.bp-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}
.bp-catalog-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-lg);
    overflow: hidden;
    transition: all var(--bp-ease-md);
}
.bp-catalog-card:hover {
    border-color: rgba(0,169,157,0.30);
    box-shadow: var(--bp-shadow-md);
    transform: translateY(-3px);
}
.bp-catalog-cover-link { display: block; }
.bp-catalog-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bp-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-catalog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform var(--bp-ease-md);
}
.bp-catalog-card:hover .bp-catalog-cover img { transform: scale(1.04); }
.bp-catalog-placeholder {
    font-size: 64px;
    color: #cbd5e1;
}
.bp-catalog-body { padding: 16px 18px 20px; }
.bp-catalog-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin: 4px 0 8px;
    line-height: 1.35;
}
.bp-catalog-name a {
    text-decoration: none;
    color: inherit;
    transition: color var(--bp-ease);
}
.bp-catalog-name a:hover { color: var(--bp-turquoise); }
.bp-catalog-desc {
    font-size: 12.5px;
    color: var(--bp-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.bp-result-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--bp-turquoise);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.bp-result-link:hover { color: var(--bp-petrol); }
.bp-no-results {
    text-align: center;
    padding: 80px 24px;
    color: var(--bp-text-muted);
}
.bp-no-results i {
    font-size: 56px;
    color: #cbd5e1;
    display: block;
    margin-bottom: 16px;
}
.bp-no-results h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin-bottom: 8px;
}
.bp-no-results p { font-size: 14px; }

/* =============================================================
   CONTACTOS — formulário campos
   ============================================================= */
.bp-cf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}
.bp-cf-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-dark-blue);
}
.bp-cf-field label .required { color: var(--bp-turquoise); }
.bp-contact-form input,
.bp-contact-form select,
.bp-contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    background: var(--bp-white);
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-sm);
    transition: border-color var(--bp-ease), box-shadow var(--bp-ease);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.bp-contact-form input:focus,
.bp-contact-form select:focus,
.bp-contact-form textarea:focus {
    border-color: var(--bp-turquoise);
    box-shadow: 0 0 0 3px rgba(0,169,157,0.12);
}
.bp-contact-form input::placeholder,
.bp-contact-form textarea::placeholder {
    color: #a0aec0;
    font-size: 13.5px;
}
.bp-contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}
.bp-contact-form select option[value=""][disabled] { color: #a0aec0; }
.bp-contact-form textarea { resize: vertical; min-height: 120px; }
.bp-contact-form .buttons { margin-top: 4px; }
.bp-contact-form .submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--bp-turquoise);
    color: var(--bp-white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: var(--bp-r-full);
    cursor: pointer;
    transition: all var(--bp-ease);
}
.bp-contact-form .submit:hover {
    background: var(--bp-petrol);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,169,157,0.30);
}
.bp-cf-row { gap: 14px; margin-bottom: 0; }
.bp-cf-row .bp-cf-field { margin-bottom: 0; }

/* =============================================================
   CONTACTOS — redes sociais (fundo claro)
   ============================================================= */
.bp-contact-social-links {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.bp-contact-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,169,157,0.10);
    border: 1px solid rgba(0,169,157,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-turquoise);
    font-size: 16px;
    text-decoration: none;
    transition: all var(--bp-ease);
}
.bp-contact-social-links a:hover {
    background: var(--bp-turquoise);
    color: var(--bp-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,169,157,0.30);
}

/* =============================================================
   CTA SECTION — override para textos sem .bp-cta-inner
   ============================================================= */
.bp-cta-section h2 { color: var(--bp-white); }
.bp-cta-section p  { color: rgba(255,255,255,0.72); }

/* =============================================================
   SOLUÇÕES — espaçamento descrição / planos
   ============================================================= */
.bp-solution-card > p { margin-bottom: 0; }
.bp-sol-features      { margin-top: 18px; }
.bp-plan-header p     { margin-bottom: 0; }
.bp-plan-features     { margin-top: 18px; border-top: 1px solid var(--bp-border); padding-top: 18px; }

/* =============================================================
   REGISTO — checkboxes: layout linha, fonte menor
   ============================================================= */

/* Todas as labels que contêm um checkbox — row layout */
.bp-auth-right .cmp_form .optin label,
.bp-auth-right .cmp_form .contexts label,
.bp-auth-right .cmp_form .checkbox label,
.bp-auth-right .cmp_form fieldset.reviewer label,
.bp-auth-right .cmp_form fieldset.consent label,
.bp-auth-right .cmp_form label:has(> input[type="checkbox"]) {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 9px !important;
    font-size: 12px !important;
    font-weight: 400;
    color: var(--bp-text-muted);
    line-height: 1.55;
    cursor: pointer;
}

/* Checkbox em si: tamanho fixo, alinhado ao topo do texto */
.bp-auth-right .cmp_form input[type="checkbox"] {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    margin: 2px 0 0 0 !important;
    flex-shrink: 0;
    accent-color: var(--bp-turquoise);
    cursor: pointer;
}

/* Fieldsets de consentimento e revisor */
.bp-auth-right fieldset.reviewer,
.bp-auth-right fieldset.consent {
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 14px 16px;
    margin-bottom: 14px;
    background: var(--bp-gray-light);
}
.bp-auth-right fieldset.reviewer legend,
.bp-auth-right fieldset.consent legend {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    padding: 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Fieldset de contextos (revistas para revisor) */
.bp-auth-right .contexts,
.bp-auth-right #reviewerOptinGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

/* Interesses do revisor */
.bp-auth-right #reviewerInterests { margin-top: 12px; }
.bp-auth-right #reviewerInterests .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--bp-dark-blue);
}

/* =============================================================
   EQUIPA — email
   ============================================================= */
.bp-team-email {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: var(--bp-text-muted);
    text-decoration: none;
    margin-top: 5px;
    transition: color var(--bp-ease);
    word-break: break-all;
}
.bp-team-email:hover { color: var(--bp-turquoise); }
.bp-team-email i { font-size: 11px; flex-shrink: 0; }

/* Tighter founder card */
.bp-team-card.bp-team-founder { gap: 20px; }
.bp-team-card.bp-team-founder .bp-team-info h3 { font-size: 15px; }

/* =============================================================
   RESPONSIVO — novas componentes
   ============================================================= */
@media (max-width: 900px) {
    .bp-historia-intro-block { grid-template-columns: 1fr; gap: 32px; }
    .bp-historia-founders { flex-direction: row; gap: 12px; }
    .bp-hf-sep { width: 20px; height: 2px; align-self: center; }
    .bp-historia-datas-grid { grid-template-columns: 1fr; gap: 24px; }
    .bp-historia-timeline-img { max-width: 240px; margin: 0 auto; }
    .bp-timeline-v2::before { left: 14px; transform: none; }
    .bp-tlv2-item { grid-template-columns: 14px 1fr; }
    .bp-tlv2-left { display: none; }
    .bp-tlv2-dot { justify-self: start; }
}
@media (max-width: 640px) {
    .bp-catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-stats-bar-grid { gap: 12px 28px; }
    .bp-stats-bar-item strong { font-size: 22px; }
    .bp-marquee-wrap { padding: 0 16px; }
    .bp-marquee-btn { width: 36px; height: 36px; font-size: 15px; }
}

/* =============================================================
   REGISTER — formulário (override OJS defaults)
   ============================================================= */
.bp-auth-right .fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}
.bp-auth-right .fields .label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-dark-blue);
    display: block;
    margin-bottom: 4px;
}
.bp-auth-right .fields input[type="text"],
.bp-auth-right .fields input[type="email"],
.bp-auth-right .fields input[type="password"],
.bp-auth-right .fields input[type="tel"],
.bp-auth-right .fields select,
.bp-auth-right .fields textarea {
    width: 100%;
    padding: 9px 12px;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    color: var(--bp-text);
    background: var(--bp-white);
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-r-sm);
    transition: border-color var(--bp-ease), box-shadow var(--bp-ease);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
}
.bp-auth-right .fields input:focus,
.bp-auth-right .fields select:focus,
.bp-auth-right .fields textarea:focus {
    border-color: var(--bp-turquoise);
    box-shadow: 0 0 0 3px rgba(0,169,157,0.12);
}
.bp-auth-right .fields input::placeholder,
.bp-auth-right .fields textarea::placeholder {
    color: #a0aec0;
    font-size: 13px;
}
.bp-auth-right .buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.bp-auth-right .buttons .submit {
    padding: 11px 28px;
    background: var(--bp-turquoise);
    color: var(--bp-white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: var(--bp-r-full);
    cursor: pointer;
    transition: all var(--bp-ease);
}
.bp-auth-right .buttons .submit:hover {
    background: var(--bp-petrol);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,169,157,0.30);
}
.bp-auth-right .buttons .login,
.bp-auth-right .buttons a {
    font-size: 13.5px;
    color: var(--bp-text-muted);
    text-decoration: none;
    transition: color var(--bp-ease);
}
.bp-auth-right .buttons .login:hover,
.bp-auth-right .buttons a:hover { color: var(--bp-turquoise); }
.bp-auth-right .required { color: var(--bp-turquoise); }
.bp-auth-right .form-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--bp-dark-blue);
    margin: 20px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bp-border);
}

/* Hide PKP default footer wrapper — binaryPro has its own footer */
.pkp_structure_footer_wrapper { display: none !important; }

/* Hide OJS default sidebar blocks — binaryPro has its own layout */
.pkp_structure_sidebar { display: none !important; }

/* =============================================================
   HISTÓRIA — zigzag timeline
   ============================================================= */
.bp-tl {
    position: relative;
    max-width: 820px;
    margin: 48px auto 0;
    padding-bottom: 8px;
}
.bp-tl::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--bp-turquoise), var(--bp-petrol));
    transform: translateX(-50%);
}
.bp-tl-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}
.bp-tl-side {
    flex: 1;
    padding: 0 28px;
    min-height: 1px;
}
.bp-tl-center {
    flex: 0 0 80px;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.bp-tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bp-turquoise);
    border: 3px solid var(--bp-white);
    box-shadow: 0 0 0 2px var(--bp-turquoise);
    flex-shrink: 0;
}
.bp-tl-year {
    font-size: 12px;
    background: var(--bp-white);
    padding: 2px 6px;
    border-radius: 4px;
    position: relative;
    z-index: 3;
    font-weight: 800;
    color: var(--bp-turquoise);
    letter-spacing: 0.5px;
    margin-top: 7px;
    white-space: nowrap;
    display: block;
    text-align: center;
}
.bp-tl-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-r-md);
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.bp-tl-card p {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--bp-text-muted);
    margin: 0;
    font-weight: 300;
    text-align: justify;
    hyphens: auto;
}
.bp-tl-card strong { font-weight: 600; color: var(--bp-text); }
@media (max-width: 680px) {
    .bp-tl::before { left: 20px; }
    .bp-tl-item { flex-direction: column; padding-left: 48px; }
    .bp-tl-side { padding: 0; }
    .bp-tl-side--left:empty, .bp-tl-side--right:empty { display: none; }
    .bp-tl-center {
        position: absolute;
        left: 20px;
        flex-direction: column;
        align-items: center;
    }
    .bp-tl-dot { transform: translateX(-50%); }
    .bp-tl-year { transform: translateX(-50%); }
}

/* ── Tabs de Directrizes ── */
.bp-dir-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--bp-border);
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.bp-dir-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bp-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s, border-color 0.2s;
    border-radius: 4px 4px 0 0;
}
.bp-dir-tab:hover { color: var(--bp-turquoise); }
.bp-dir-tab.active {
    color: var(--bp-turquoise);
    border-bottom-color: var(--bp-turquoise);
    background: rgba(0,200,190,0.04);
}
.bp-dir-panel { display: none; }
.bp-dir-panel.active { display: block; }

/* ── Aviso "em desenvolvimento" nas tabs de Directrizes ── */
.bp-dir-wip {
    background: rgba(0,200,190,0.07);
    border-left: 3px solid var(--bp-turquoise);
    border-radius: 4px;
    color: var(--bp-text-muted);
    font-size: 13.5px;
    padding: 10px 16px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Justify solucoes ── */
.bp-solution-card p {
    text-align: justify;
    hyphens: auto;
}

/* ── Soluções: ícone, badge e título centrados ── */
.bp-solution-card .bp-solution-icon {
    margin-left: auto;
    margin-right: auto;
}
.bp-solution-card .bp-sol-badge {
    display: block;
    text-align: center;
}
.bp-solution-card h3 {
    text-align: center;
}
