/* ============================================================
   Blog Collaborative — identidade visual
   Paleta, tipografia e componentes alinhados ao site
   institucional (appcollaborative.com)
   ============================================================ */

@import url("https://fonts.googleapis.com/css?family=Poppins:500,600,700|Roboto:400,500&display=swap");

:root {
    --bc-purple: #9816f4;
    --bc-pink: #e74793;
    --bc-lavender: #c79de5;
    --bc-dark: #221c2e;
    --bc-gray: #6f6779;
    --bc-bg-soft: #f9f6ff;
    --bc-border: #ece4f7;
    --bc-gradient: linear-gradient(90deg, #c79de5 0%, #e74793 100%);
    --bc-shadow: 0 8px 32px rgba(152, 22, 244, 0.10);
    --bc-shadow-hover: 0 16px 40px rgba(152, 22, 244, 0.18);
}

html {
    scroll-behavior: smooth;
}

/* ---- Tipografia base ---- */
body {
    font-family: "Roboto", -apple-system, "Helvetica Neue", Arial, sans-serif;
    color: var(--bc-dark);
    background-color: #fdfcff;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.post-title,
.post-subtitle,
.site-heading h2,
.page-heading h1,
.post-heading h1,
.post-heading .subheading,
.related-posts h3,
.related-post-card h4,
.widget-title {
    font-family: "Poppins", -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
}

a {
    color: var(--bc-purple);
}
a:hover,
a:focus {
    color: var(--bc-pink);
}

/* ---- Cabeçalho das páginas (hero com gradiente da marca) ---- */
.intro-header {
    position: relative;
    background-color: #1a0a2e;
}
.intro-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(152, 22, 244, 0.62) 0%, rgba(231, 71, 147, 0.55) 100%);
    pointer-events: none;
}
.intro-header .container {
    position: relative;
    z-index: 1;
}
.site-heading h2,
.page-heading h1,
.post-heading h1,
.post-heading .subheading,
.post-heading .meta,
.post-heading .meta a {
    color: #fff;
}

/* Selos de assunto exibidos sobre o cabeçalho com gradiente */
.intro-header .tags .tag {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: 500;
}
.intro-header .tags .tag:hover,
.intro-header .tags .tag:focus {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    color: #fff;
}

/* ---- Navegação ---- */
.navbar-custom .navbar-brand {
    font-weight: 700;
    letter-spacing: 0.2px;
}
.navbar-custom.is-fixed {
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--bc-border);
    box-shadow: 0 2px 16px rgba(152, 22, 244, 0.08);
}
.navbar-custom.is-fixed .navbar-brand,
.navbar-custom.is-fixed .nav li a {
    color: var(--bc-dark);
}
.navbar-custom.is-fixed .navbar-brand:hover,
.navbar-custom.is-fixed .navbar-brand:focus,
.navbar-custom.is-fixed .nav li a:hover,
.navbar-custom.is-fixed .nav li a:focus {
    color: var(--bc-pink);
}

/* ---- Selos de tópicos nas barras laterais e listas ---- */
.sidebar-container .tags a,
.post-container .tags a,
#tag_cloud a {
    display: inline-block;
    background: var(--bc-bg-soft);
    color: var(--bc-purple);
    border: 1px solid var(--bc-border) !important;
    border-radius: 999px;
    padding: 5px 16px;
    margin: 0 6px 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.sidebar-container .tags a:hover,
.sidebar-container .tags a:focus,
.post-container .tags a:hover,
.post-container .tags a:focus,
#tag_cloud a:hover {
    background: var(--bc-gradient);
    color: #fff !important;
    border-color: transparent !important;
}

/* ---- Cards da listagem de posts ---- */
.post-preview {
    background: #fff;
    border: 1px solid var(--bc-border);
    border-radius: 18px;
    padding: 30px 34px;
    margin-bottom: 26px;
    box-shadow: var(--bc-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.post-preview:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-hover);
    border-color: transparent;
}
.post-preview > a {
    color: var(--bc-dark);
}
.post-preview > a > .post-title {
    transition: color 0.15s ease;
}
.post-preview:hover > a > .post-title {
    color: var(--bc-pink);
}
.post-preview > a > .post-subtitle {
    color: var(--bc-gray);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}
.post-preview > .post-meta {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    color: var(--bc-gray);
    font-size: 13px;
}
.post-preview > .post-meta > a {
    color: var(--bc-purple);
}

/* Os cards já têm respiro próprio: oculta os antigos separadores */
.post-preview + hr {
    display: none;
}

/* ---- Paginação ---- */
.pager li > a,
.pager li > span {
    border-radius: 999px;
    border: 1px solid var(--bc-border);
    font-weight: 500;
    color: var(--bc-purple);
}
.pager li > a:hover,
.pager li > a:focus {
    background: var(--bc-gradient);
    border-color: transparent;
    color: #fff;
}

/* ---- Artigos relacionados ---- */
.related-posts {
    margin-top: 50px;
    padding-top: 6px;
}
.related-posts hr {
    border-color: var(--bc-border);
}
.related-posts h3 {
    margin: 30px 0 24px;
    font-size: 22px;
    color: var(--bc-dark);
}
.related-post-card {
    background: #fff;
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: var(--bc-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-hover);
    border-color: transparent;
}
.related-post-image {
    display: block;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 14px;
}
.related-post-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.35;
}
.related-post-card a {
    color: var(--bc-dark);
    text-decoration: none;
}
.related-post-card a:hover h4,
.related-post-card a:focus h4 {
    color: var(--bc-pink);
}
.related-post-card .post-meta {
    color: var(--bc-gray);
    font-size: 12px;
    font-style: normal;
}
.related-posts > p > a {
    font-weight: 500;
    color: var(--bc-purple);
}
.related-posts > p > a:hover {
    color: var(--bc-pink);
}

/* ---- Barra lateral ---- */
.sidebar-container h5 a {
    color: var(--bc-dark);
    font-weight: 600;
}
.sidebar-container h5 a:hover {
    color: var(--bc-pink);
}

/* ============================================================
   HOMEPAGE — hero, destaque, categorias, grid de cards
   ============================================================ */

/* Reset do body padding para não empurrar o hero */
body {
    padding-top: 0;
}

/* ---- Hero da home ---- */
.home-hero {
    background-color: #1a0a2e;
    background-image: linear-gradient(120deg, #1a0a2e 0%, #2d1054 100%);
    padding: 110px 0 60px;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.home-hero-row {
    display: flex;
    align-items: center;
}
.home-hero-intro {
    padding-right: 48px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.home-hero-eyebrow {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bc-lavender);
    margin-bottom: 16px;
}
.home-hero-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
}
.home-hero-lead {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
}
.btn-hero {
    display: inline-block;
    background: var(--bc-gradient);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.btn-hero:hover,
.btn-hero:focus {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-2px);
    text-decoration: none;
}
.home-hero-featured {
    padding-left: 24px;
}

/* ---- Card "Em destaque" no hero ---- */
.featured-card {
    display: block;
    height: 360px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.15) 0%, rgba(26, 10, 46, 0.88) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}
.featured-card-content {
    width: 100%;
}
.featured-badge {
    display: inline-block;
    background: var(--bc-gradient);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.featured-category {
    display: inline-block;
    color: var(--bc-lavender);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-left: 8px;
}
.featured-title {
    margin: 0 0 10px;
}
.featured-title a {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}
.featured-title a:hover {
    color: var(--bc-lavender);
}
.featured-excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.featured-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 16px;
}
.featured-meta-sep {
    margin: 0 6px;
}
.featured-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.featured-read-link:hover,
.featured-read-link:focus {
    color: var(--bc-lavender);
    border-color: var(--bc-lavender);
}

/* ---- Cabeçalho de seção (título + "Ver todos") ---- */
.home-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bc-border);
}
.home-section-title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bc-dark);
    margin: 0;
}
.home-section-link {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--bc-purple);
    white-space: nowrap;
}
.home-section-link:hover {
    color: var(--bc-pink);
}

/* ---- Linha de ícones de categorias ---- */
.home-categories {
    padding: 60px 0 48px;
    background-color: #fff;
}
.category-icons-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: space-between;
}
.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex: 1;
    min-width: 0;
    text-align: center;
    transition: transform 0.18s ease;
}
.category-icon-item:hover {
    transform: translateY(-4px);
    text-decoration: none;
}
.category-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bc-bg-soft);
    border: 2px solid var(--bc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bc-purple);
    margin-bottom: 10px;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.category-icon-item:hover .category-icon-circle {
    background: var(--bc-gradient);
    border-color: transparent;
    color: #fff;
}
.category-icon-label {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--bc-dark);
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}

/* ---- Grid de cards de artigos ---- */
.home-posts {
    padding: 48px 0 64px;
    background-color: var(--bc-bg-soft);
    scroll-margin-top: 90px;
}

/* ---- Página de categoria ---- */
.category-intro-header .site-heading h1 {
    font-size: 42px;
}
.category-grid-container {
    padding: 48px 15px 64px;
}
.category-grid-row {
    margin-left: -12px;
    margin-right: -12px;
}
.category-grid-col {
    padding: 12px;
}
.category-section-header {
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bc-border);
}
.category-section-header:first-child {
    margin-top: 0;
}
.category-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bc-purple);
    margin: 0;
}

/* ============================================================
   Página "Ver todas as categorias"
   ============================================================ */
.cat-page-hero {
    background: #0e0618;
    padding: 80px 0 56px;
    text-align: center;
}
.cat-page-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bc-pink);
    margin-bottom: 14px;
}
.cat-page-title {
    font-family: "Poppins", sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.1;
}
.cat-page-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.cat-page-body {
    background: #0e0618;
    padding: 40px 0 80px;
}
.cat-covers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-cover {
    position: relative;
    display: block;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #1a0a2e;
    background-size: cover;
    background-position: center;
    text-decoration: none !important;
    filter: grayscale(60%);
    transition: filter 0.35s ease, transform 0.35s ease;
}
.cat-cover:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
    text-decoration: none !important;
}
.cat-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,3,20,0.95) 0%, rgba(10,3,20,0.5) 50%, rgba(10,3,20,0.15) 100%);
    transition: background 0.35s ease;
}
.cat-cover:hover .cat-cover-overlay {
    background: linear-gradient(to top, rgba(10,3,20,0.92) 0%, rgba(10,3,20,0.45) 50%, rgba(10,3,20,0.10) 100%);
}
.cat-cover-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 22px;
}
.cat-cover-top {
    display: flex;
    justify-content: flex-end;
}
.cat-cover-count {
    background: var(--bc-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}
.cat-cover-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cat-cover-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}
.cat-cover-icon .fas {
    font-size: 16px;
    color: #fff;
}
.cat-cover-name {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.cat-cover-posts {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.cat-cover:hover .cat-cover-posts {
    max-height: 120px;
    opacity: 1;
}
.cat-cover-posts li {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-cover-posts li:last-child { border-bottom: none; }
.cat-cover-posts li::before {
    content: '— ';
    color: var(--bc-pink);
    font-size: 10px;
}
.cat-cover-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--bc-pink);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    margin-top: 4px;
}
.cat-cover:hover .cat-cover-cta {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 991px) {
    .cat-covers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cat-covers-grid { grid-template-columns: 1fr; }
    .cat-cover { height: 260px; }
}

.post-grid-row {
    margin-left: -12px;
    margin-right: -12px;
}
.post-grid-col {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}
.post-grid-card {
    background: #fff;
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--bc-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
}
.post-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bc-shadow-hover);
    border-color: transparent;
}
.post-grid-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--bc-dark);
}
.post-grid-card-link:hover {
    text-decoration: none;
    color: var(--bc-dark);
}
.post-grid-image {
    display: block;
    height: 180px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.post-grid-card:hover .post-grid-image {
    filter: grayscale(0%);
}
.post-grid-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-grid-category {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--bc-pink);
    margin-bottom: 10px;
}
.post-grid-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--bc-dark);
    margin: 0 0 10px;
    flex: 1;
    transition: color 0.15s ease;
}
.post-grid-card:hover .post-grid-title {
    color: var(--bc-pink);
}
.post-grid-excerpt {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--bc-gray);
    margin-bottom: 14px;
}
.post-grid-meta {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: var(--bc-gray);
    margin: 0;
    margin-top: auto;
}
.home-pager {
    margin-top: 8px;
    text-align: center;
}
.home-pager li {
    display: inline-block;
}

/* ---- Dropdown: sem mudança de fundo ao abrir ---- */
.navbar-custom .nav .dropdown.open > a,
.navbar-custom .nav .dropdown.open > a:hover,
.navbar-custom .nav .dropdown.open > a:focus {
    background-color: transparent !important;
    outline: none;
}
.navbar-custom.is-fixed .nav .dropdown.open > a,
.navbar-custom.is-fixed .nav .dropdown.open > a:hover,
.navbar-custom.is-fixed .nav .dropdown.open > a:focus {
    background-color: transparent !important;
    color: var(--bc-dark);
}

/* ---- Dropdown de categorias na navbar ---- */
.navbar-custom .dropdown-menu {
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    box-shadow: var(--bc-shadow);
    padding: 8px 0;
    margin-top: 4px;
    background-color: #fff;
}
.navbar-custom .dropdown-menu > li > a {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--bc-dark) !important;
    padding: 10px 20px;
    transition: background 0.12s ease, color 0.12s ease;
}
.navbar-custom .dropdown-menu > li > a:hover,
.navbar-custom .dropdown-menu > li > a:focus {
    background-color: var(--bc-bg-soft);
    color: var(--bc-pink) !important;
}
.navbar-custom .dropdown-menu > .divider {
    margin: 6px 0;
    background-color: var(--bc-border);
}

/* ---- Item em destaque no dropdown ---- */
.nav-dropdown-destaque > a {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    padding: 10px 20px !important;
    background: linear-gradient(135deg, #fdf6ff 0%, #fff0f8 100%) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--bc-dark) !important;
    border-left: 3px solid var(--bc-pink) !important;
    line-height: 1.3 !important;
}
.nav-dropdown-destaque > a:hover {
    background: linear-gradient(135deg, #f3e8ff 0%, #ffe4f4 100%) !important;
    color: var(--bc-purple) !important;
}
.nav-destaque-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    background: var(--bc-gradient);
    padding: 2px 7px;
    border-radius: 20px;
    width: fit-content;
}

/* ---- CTA Sobre nós ---- */
.about-cta-section {
    width: 100%;
    position: relative;
    margin-top: 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1054 60%, #3d1070 100%);
    border-radius: 0;
    padding: 72px 40px;
    text-align: center;
    overflow: hidden;
}
.about-cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,71,147,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(152,22,244,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.about-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}
.about-cta-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bc-pink);
    margin-bottom: 16px;
}
.about-cta-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.25;
}
.about-cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 32px;
    line-height: 1.6;
}
.about-cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #c79de5 0%, #e74793 100%);
    color: #fff !important;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 24px rgba(231,71,147,0.35);
}
.about-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    text-decoration: none !important;
    color: #fff !important;
}

/* ---- Campo de busca na navbar ---- */
.nav-search-item {
    padding: 15px 8px;
}
.navbar-search-form {
    display: flex;
    align-items: center;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
    transition: background 0.18s ease;
}
.navbar-custom.is-fixed .navbar-search-form {
    background: var(--bc-bg-soft);
    border: 1px solid var(--bc-border);
}
.navbar-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    padding: 7px 14px 7px 16px;
    width: 160px;
    transition: width 0.25s ease;
}
.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.navbar-custom.is-fixed .navbar-search-input {
    color: var(--bc-dark);
}
.navbar-custom.is-fixed .navbar-search-input::placeholder {
    color: var(--bc-gray);
}
.navbar-search-input:focus {
    width: 200px;
}
.navbar-search-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 7px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: color 0.15s ease;
}
.navbar-search-btn:hover {
    color: #fff;
}
.navbar-custom.is-fixed .navbar-search-btn {
    color: var(--bc-gray);
}
.navbar-custom.is-fixed .navbar-search-btn:hover {
    color: var(--bc-purple);
}

/* ---- Botão Login na navbar ---- */
.navbar-custom .nav li.nav-login {
    padding: 15px 4px;
}
.navbar-custom .nav li.nav-login a.btn-nav-login {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 999px;
    height: 34px !important;
    padding: 0 18px !important;
    line-height: 1 !important;
    font-family: "Roboto", sans-serif;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease !important;
    white-space: nowrap;
}
.navbar-custom .nav li.nav-login a.btn-nav-login:hover,
.navbar-custom .nav li.nav-login a.btn-nav-login:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #fff !important;
    color: #fff !important;
}
.navbar-custom.is-fixed .nav li.nav-login a.btn-nav-login {
    color: var(--bc-purple) !important;
    border-color: var(--bc-border) !important;
}
.navbar-custom.is-fixed .nav li.nav-login a.btn-nav-login:hover {
    background: var(--bc-bg-soft) !important;
    border-color: var(--bc-purple) !important;
}

/* ---- Botão CTA na navbar (alinhado verticalmente) ---- */
.navbar-custom .nav li.nav-cta {
    padding: 15px 4px 15px 8px;
    margin-right: 20px;
}
.navbar-custom .nav li.nav-cta a.btn-nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--bc-gradient);
    color: #fff !important;
    border-radius: 999px;
    height: 34px !important;
    padding: 0 20px !important;
    line-height: 1 !important;
    font-family: "Roboto", sans-serif;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-decoration: none;
    transition: opacity 0.18s ease;
    white-space: nowrap;
}
.navbar-custom .nav li.nav-cta a.btn-nav-cta:hover,
.navbar-custom .nav li.nav-cta a.btn-nav-cta:focus {
    opacity: 0.88;
    color: #fff !important;
    background: var(--bc-gradient) !important;
}

/* ---- Rodapé ---- */
.site-footer {
    background-color: #1a0a2e;
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}
.footer-main {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-brand:hover {
    color: var(--bc-lavender);
}
.footer-brand-desc {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    font-size: 13px;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 14px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}
.footer-social a:hover {
    background: var(--bc-gradient);
    color: #fff;
}
.footer-links-col {
    padding-top: 10px;
}
.footer-col-title {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s ease;
}
.footer-links li a:hover {
    color: var(--bc-lavender);
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ---- Página de pesquisa interna ---- */
.search-hero {
    background: linear-gradient(120deg, #1a0a2e 0%, #2d1054 100%);
    padding: 100px 0 48px;
    text-align: center;
}
.search-hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
}
.search-page-form {
    display: flex;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.search-page-form input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 22px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: var(--bc-dark);
    background: transparent;
}
.search-page-form button {
    background: var(--bc-gradient);
    border: none;
    color: #fff;
    padding: 0 24px;
    height: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.15s ease;
}
.search-page-form button:hover {
    opacity: 0.88;
}
.search-results-container {
    padding: 40px 0 64px;
}
.search-status {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: var(--bc-gray);
    margin-bottom: 24px;
}
.search-empty {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: var(--bc-gray);
    text-align: center;
    padding: 48px 0;
}
.search-result-card {
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: var(--bc-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.search-result-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bc-shadow-hover);
    border-color: transparent;
}
.search-result-link {
    display: block;
    padding: 24px 28px;
    text-decoration: none;
    color: var(--bc-dark);
}
.search-result-link:hover {
    text-decoration: none;
    color: var(--bc-dark);
}
.search-result-category {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--bc-pink);
    margin-bottom: 8px;
}
.search-result-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    transition: color 0.15s ease;
}
.search-result-card:hover .search-result-title {
    color: var(--bc-pink);
}
.search-result-excerpt {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: var(--bc-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}
.search-result-meta {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: var(--bc-gray);
    margin: 0;
}

/* ---- Ajustes responsivos ---- */
@media (max-width: 992px) {
    .home-hero {
        padding: 90px 0 48px;
    }
    .home-hero-title {
        font-size: 34px;
    }
    .home-hero-intro {
        padding-right: 24px;
    }
    .category-icon-item {
        width: calc(33.33% - 11px);
    }
}

@media (max-width: 767px) {
    /* Navbar mobile mais largo para caber textos longos */
    .navbar-default .navbar-collapse {
        width: 220px !important;
        min-width: 220px !important;
    }
    .navbar-custom .dropdown-menu {
        min-width: 200px;
        white-space: nowrap;
    }
    .home-hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    .home-hero-row {
        flex-direction: column;
        align-items: stretch;
    }
    .home-hero-intro,
    .home-hero-featured {
        width: 100%;
        float: none;
    }
    .home-hero-title {
        font-size: 28px;
    }
    .home-hero-intro {
        padding-right: 0;
        margin-bottom: 32px;
    }
    .home-hero-featured {
        padding-left: 0;
    }
    .featured-card {
        height: auto;
        min-height: 380px;
    }
    .featured-excerpt {
        display: none;
    }
    .category-icon-item {
        width: calc(50% - 8px);
    }
    .footer-brand-col {
        margin-bottom: 32px;
    }
    .footer-links-col {
        margin-bottom: 24px;
    }
}
