/* ===============================
   GOOGLE FONTS & BOOTSTRAP IMPORTS
================================= */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');


/* ===============================
   ROOT VARIABLES & BASE STYLES
================================= */
:root {
  --bj-navy: #0f2740;
  --bj-navy-2: #173a5c;
  --bj-gold: #b99656;
  --bj-bg: #f5f7fa;
  --bj-card: #ffffff;
  --bj-border: #e6ebf1;
  --bj-text: #1f2937;
  --bj-muted: #667085;
  --bj-soft: #eef3f8;
  --bj-primary: #14395f;
  --bj-primary-dark: #0d2742;
  --bj-accent: #295f91;
  --bj-light: #f5f7fb;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--bj-text);
  background: #fff;
}

h1, h2, h3, h4, .brand-title {
  font-family: 'Merriweather', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--bj-navy-2);
}


/* ===============================
   HEADER & NAVIGATION
================================= */
.topbar {
  background: linear-gradient(135deg, var(--bj-navy) 0%, #102e4d 100%);
  color: #fff;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 100px;
  width: auto;
  max-width: 100%;
  display: block;
}

.brand-title {
  letter-spacing: 0.02em;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}

.brand-subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.1rem;
}

.search-box .form-control {
  border: 0;
  min-height: 48px;
  border-radius: 0.8rem 0 0 0.8rem;
  padding-left: 1.25rem;
}

.search-box .btn {
  border-radius: 0 0.8rem 0.8rem 0;
  min-width: 120px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  min-height: 48px;
  padding-inline: 1.25rem;
  border-width: 1px;
}

.main-nav {
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.12);
}

.main-nav .nav-link,
.main-nav .navbar-brand,
.main-nav .btn-link {
  color: rgba(255,255,255,.95);
  font-weight: 500;
  padding: 1rem 1rem;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: #fff;
}


/* ===============================
   SECTIONS & GENERAL LAYOUT
================================= */
.section-wrap {
  padding: 4.5rem 0;
}

.section-soft {
  background: var(--bj-bg);
}

.section-kicker {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bj-navy-2);
  font-weight: 700;
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  margin-bottom: 0;
  color: #10233b;
}


/* ===============================
   HERO SECTION
================================= */
.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(16,35,59,.18);
  display: flex;
  align-items: end;
}

.hero-content {
  padding: 2rem;
  color: #fff;
  width: 100%;
  max-width: 85%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: rgba(255,255,255,.14);
  color: #fff;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-summary {
  max-width: 52rem;
  font-size: 1.03rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 0;
}


/* ===============================
   META & HEADLINES
================================= */
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  font-size: .93rem;
  color: var(--bj-muted);
}

.meta-line.light {
  color: rgba(255,255,255,.84);
}

.meta-line span + span::before {
  content: "•";
  margin-right: 1rem;
  opacity: .6;
}

.headline-list {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.headline-item {
  padding: 0 0 1.25rem 0;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--bj-border);
  padding: 1.2rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.headline-item + .headline-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bj-border);
}

.headline-item:hover {
  background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 39, 63, 0.08);
}

.headline-item h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin-bottom: .65rem;
  color: var(--bj-primary-dark);
}

.headline-item p {
  color: var(--bj-muted);
  margin-bottom: 0;
}

.headline-item h3 a,
.article-card h3 a,
.humor-card h3 a {
  transition: color .18s ease;
}

.headline-item h3 a:hover,
.article-card h3 a:hover,
.humor-card h3 a:hover {
  color: var(--bj-navy-2);
}

.hero-title a:hover {
  color: #fff;
  opacity: .92;
}


/* ===============================
   ARTICLE & CARD COMPONENTS
================================= */
.article-card,
.news-card,
.info-card,
.humor-card,
.list-panel,
.panel-card {
  background: var(--bj-card);
  border: 1px solid var(--bj-border);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.article-card-body,
.news-card-body,
.info-card-body,
.humor-card-body,
.list-panel-body,
.panel-card-body {
  padding: 1.4rem;
}

.article-tag,
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: #edf3f9;
  color: var(--bj-navy-2);
  margin-bottom: .85rem;
}

.article-card,
.info-card,
.humor-card,
.headline-list,
.hero-card,
.list-panel,
.news-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.article-card:hover,
.info-card:hover,
.humor-card:hover,
.headline-list:hover,
.list-panel:hover,
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(16,35,59,.10);
}

.article-card h3,
.news-card h3,
.info-card h3,
.humor-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin-bottom: .65rem;
  color: var(--bj-primary-dark);
}

.article-card p,
.news-card p,
.info-card p,
.humor-card p {
  color: var(--bj-muted);
  margin-bottom: 0;
}

.news-thumb,
.info-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: #dbe4ee;
}

.news-card-body h3,
.panel-card-body h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--bj-primary-dark);
  margin-bottom: 0.8rem;
}


/* ===============================
   ARTICLE CARD (DETAILED)
================================= */
.article-card {
  border-radius: 24px;
  border: 1px solid #e6ebf1;
  box-shadow: 0 18px 40px rgba(16,35,59,.07);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(16,35,59,.11);
  border-color: #dce5ef;
}

.article-card .news-thumb {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card-body {
  padding: 1.5rem;
}

.article-card .article-tag {
  display: inline-flex;
  align-items: center;
  padding: .38rem .8rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--bj-navy-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: .95rem;
}

.article-card h3 {
  font-size: 1.22rem;
  line-height: 1.38;
  margin-bottom: .8rem;
}

.article-card h3 a {
  color: #10233b;
  transition: color .18s ease;
}

.article-card h3 a:hover {
  color: var(--bj-navy-2);
}

.article-card p {
  color: var(--bj-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.article-card .meta-line {
  font-size: .9rem;
  color: #7b8794;
  border-top: 1px solid #eef2f6;
  padding-top: .9rem;
}


/* ===============================
   CONTENT PAGE STYLES
================================= */
.content-shell {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0, #ffffff 220px);
}

.breadcrumbs-wrap {
  margin-bottom: 1.5rem;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: .92rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #98a2b3;
}

.content-hero {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(16,35,59,.07);
  overflow: hidden;
  margin-bottom: 2rem;
}

.content-hero-inner {
  padding: 2rem 2rem 1.5rem;
}

.content-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--bj-navy-2);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.content-origin {
  background: #eef6f3;
  color: #1a7f64;
}

.content-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
  color: #10233b;
  margin-bottom: 1rem;
}

.content-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475467;
  margin-bottom: 1.2rem;
  max-width: 58rem;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  color: #667085;
  font-size: .95rem;
  border-top: 1px solid #eef2f6;
  padding-top: 1rem;
}

.content-meta span + span::before {
  content: "•";
  margin-right: 1rem;
  opacity: .55;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
}

.share-label {
  font-size: .9rem;
  color: #667085;
  font-weight: 600;
  margin-right: .25rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fb;
  border: 1px solid #e6ebf1;
  color: #173a5c;
  transition: all .18s ease;
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-2px);
  background: #173a5c;
  color: #fff;
  border-color: #173a5c;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}

.article-cover {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  background: #dbe4ee;
  border-bottom: 1px solid #eef2f6;
}

.article-body {
  padding: 2rem;
}

.article-lead {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #344054;
  margin-bottom: 1.75rem;
}

.article-summary-box {
  background: #f8fbff;
  border: 1px solid #e5edf6;
  border-left: 4px solid var(--bj-gold);
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  margin-bottom: 1.75rem;
}

.article-summary-box h2 {
  font-size: 1rem;
  margin: 0 0 .6rem;
  color: #10233b;
}

.article-summary-box p,
.article-summary-box div {
  margin-bottom: 0;
  color: #475467;
  line-height: 1.75;
}

.article-text {
  font-size: 1.06rem;
  line-height: 1.85;
  color: #1f2937;
}

.article-text img,
.article-text iframe,
.article-text table {
  max-width: 100%;
  height: auto;
}

.article-text p {
  margin-bottom: 1.25rem;
}

.article-text h2,
.article-text h3,
.article-text h4 {
  color: #10233b;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-text blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--bj-gold);
  background: #fafbfd;
  color: #344054;
  border-radius: 12px;
}

.article-author-box,
.citation-box,
.notice-box,
.sidebar-card,
.related-card {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
}

.article-author-box,
.citation-box,
.notice-box {
  padding: 1.35rem 1.4rem;
  margin-top: 1.5rem;
}

.article-author-box h2,
.citation-box h2,
.notice-box h2,
.sidebar-card h3,
.related-section h2 {
  font-size: 1.1rem;
  margin-bottom: .85rem;
  color: #10233b;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.25rem;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--bj-navy-2);
  font-size: .78rem;
  font-weight: 700;
}

.author-qualification {
  margin-top: .35rem;
  color: #475467;
  line-height: 1.7;
}

.author-qualification p {
  margin: 0 0 .75rem;
}

.author-qualification p:last-child {
  margin-bottom: 0;
}

.author-qualification strong {
  color: #10233b;
}

.sidebar-stack {
  display: grid;
  gap: 1.25rem;
}

.sidebar-card {
  overflow: hidden;
}

.sidebar-card-header {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.sidebar-card-body {
  padding: 1rem 1.15rem 1.15rem;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li + li {
  border-top: 1px solid #eef2f6;
}

.sidebar-list a {
  display: block;
  padding: .95rem 0;
  color: #10233b;
  font-weight: 600;
  line-height: 1.5;
}

.sidebar-list small {
  display: block;
  margin-top: .35rem;
  font-size: .8rem;
  color: #667085;
  font-weight: 500;
}

.publish-card {
  background: linear-gradient(145deg, var(--bj-navy), #173a5c);
  color: #fff;
  border: none;
}

.publish-card .sidebar-card-header {
  border-bottom-color: rgba(255,255,255,.08);
}

.publish-card h3,
.publish-card p {
  color: #fff;
}

.publish-card p {
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.ad-slot {
  padding: .75rem 0 0;
  text-align: center;
}

.related-section {
  margin-top: 2rem;
}

.related-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.related-card {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16,35,59,.10);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #dbe4ee;
}

.related-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.related-card-body h3 {
  font-size: 1.08rem;
  line-height: 1.42;
  margin-bottom: .55rem;
  color: #10233b;
}

.related-card-body p {
  color: #667085;
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}


/* ===============================
   NEWS EDITORIAL SECTION
================================= */
.news-editorial-wrap {
  background: #fff;
}

.news-editorial-main {
  background: #fff;
  padding-right: 1.25rem;
  max-width: 100%;
}

.news-editorial-kicker {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #1a7f64;
  margin-bottom: .75rem;
}

.news-editorial-title {
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
  line-height: 1.18;
  margin-bottom: .85rem;
  color: #10233b;
  max-width: 92%;
  font-weight: 700;
}

.news-editorial-title a {
  color: #10233b;
  text-decoration: none;
}

.news-editorial-title a:hover {
  color: var(--bj-navy-2);
}

.news-editorial-subtitle {
  font-size: 1rem;
  line-height: 1.62;
  color: #475467;
  margin-bottom: .95rem;
  max-width: 88%;
}

.news-editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  font-size: .95rem;
  color: #667085;
  margin-bottom: 1.35rem;
}

.news-editorial-meta span + span::before {
  content: "•";
  margin-right: 1rem;
  opacity: .6;
}

.news-editorial-subheads {
  border-top: 1px solid #e9eef5;
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.4rem;
}

.news-editorial-subhead-item {
  min-height: 100%;
}

.news-editorial-subhead-item a {
  display: block;
  color: #10233b;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.55;
}

.news-editorial-subhead-item a:hover {
  color: var(--bj-navy-2);
}

.news-editorial-subhead-item strong {
  color: #1a7f64;
}

.news-side-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16,35,59,.10);
}

.news-side-card-image-link {
  display: block;
}

.news-side-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #dbe4ee;
}

.news-side-card-body {
  padding: .9rem 1rem 1rem;
}

.news-side-card-title {
  font-size: 1.02rem;
  line-height: 1.4;
  margin: 0;
  color: #10233b;
}

.news-side-card-title a {
  color: #10233b;
  text-decoration: none;
}

.news-side-card-title a:hover {
  color: var(--bj-navy-2);
}

.news-side-list {
  margin-top: 1rem;
  border-top: 1px solid #e9eef5;
  padding-top: 1rem;
}

.news-side-list-item + .news-side-list-item {
  margin-top: .95rem;
  padding-top: .95rem;
  border-top: 1px solid #eef2f6;
}

.news-side-list-item a {
  display: block;
  color: #10233b;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.45;
  font-size: .95rem;
}

.news-side-list-item a:hover {
  color: var(--bj-navy-2);
}

.news-side-list-item strong {
  color: #1a7f64;
}


/* ===============================
   LIST PANELS
================================= */
.list-panel {
  border-radius: 24px;
  border: 1px solid #e6ebf1;
  box-shadow: 0 18px 40px rgba(16,35,59,.07);
}

.list-panel-header {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--bj-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.list-panel-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #10233b;
}

.simple-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-link-list li + li {
  border-top: 1px solid var(--bj-border);
}

.simple-link-list a {
  display: block;
  padding: 1rem 0;
  font-weight: 600;
  color: #10233b;
  transition: .18s ease;
}

.simple-link-list a:hover {
  color: #173a5c;
  padding-left: .35rem;
}

.simple-link-list small {
  display: block;
  margin-top: .25rem;
  color: var(--bj-muted);
  font-weight: 500;
  color: #7b8794;
  font-size: .78rem;
}


/* ===============================
   CTA & BUTTONS
================================= */
.cta-box {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 35%),
    linear-gradient(145deg, #0f2740, #173a5c);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(15, 39, 64, .22);
  border: 1px solid rgba(255,255,255,.06);
}

.cta-box .section-kicker {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.cta-box h3 {
  color: #fff;
  line-height: 1.18;
  margin-bottom: .8rem;
}

.cta-box p {
  color: rgba(255,255,255,.78);
  max-width: 90%;
  margin-bottom: 1.4rem;
}

.cta-box .model-card {
  display: block;
  height: 100%;
  padding: 1rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .22s ease;
  color: #fff;
  backdrop-filter: blur(4px);
}

.cta-box .model-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.30);
  color: #fff;
}

.model-badge {
  display: inline-block;
  font-size: .70rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  margin-bottom: .65rem;
}

.cta-box .model-card strong {
  display: block;
  font-size: .98rem;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}

.btn-gold {
  background: linear-gradient(180deg, #c8a868, #ae8741);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  transition: all .2s ease;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #d5b373, #b68e46);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-primary.rounded-pill,
.btn-outline-light.rounded-pill {
  font-weight: 600;
  transition: all .2s ease;
}

.btn-outline-primary.rounded-pill:hover,
.btn-outline-light.rounded-pill:hover {
  transform: translateY(-1px);
}


/* ===============================
   QUICK CARDS (FIQUE POR DENTRO)
================================= */
.quick-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16,35,59,.08);
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(16,35,59,.12);
}

.quick-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.quick-card-image-wrap {
  position: relative;
  overflow: hidden;
  background: #dbe4ee;
  flex-shrink: 0;
}

.quick-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.quick-card-body {
  background: linear-gradient(145deg, #0f2740, #173a5c);
  color: #fff;
  padding: 1.25rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.quick-card-body h3 {
  font-size: 1.16rem;
  line-height: 1.35;
  margin-bottom: .75rem;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quick-card-body p {
  color: rgba(255,255,255,.82);
  font-size: .94rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quick-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  margin-top: auto;
}

.quick-card-meta span + span::before {
  content: "•";
  margin-right: 1rem;
  opacity: .55;
}


/* ===============================
   HUMOR/QUOTE CARDS (PÉROLAS)
================================= */
.humor-quote-card,
.humor-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
  overflow: hidden;
}

.humor-quote-card:hover,
.humor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(16,35,59,.10);
  border-color: #dbe4ee;
}

.humor-quote-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.2rem;
  color: inherit;
  text-decoration: none;
}

.humor-quote-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #f4f7fb;
  color: var(--bj-navy-2);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .9rem;
}

.humor-quote-card h3,
.humor-card h3 {
  font-size: 1.16rem;
  line-height: 1.38;
  color: #10233b;
  margin-bottom: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.humor-quote-card p {
  color: var(--bj-muted);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.humor-quote-footer {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid #eef2f6;
}


/* ===============================
   MODEL GRID & LINKS
================================= */
.model-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.model-link {
  display: block;
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 0.95rem;
  padding: 1rem 1.1rem;
  font-weight: 600;
  color: var(--bj-primary-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 39, 63, 0.08);
}


/* ===============================
   FOOTER
================================= */
.footer {
  background: #0f1722;
  color: rgba(255,255,255,.82);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li + li {
  margin-top: .55rem;
}

.footer a {
  color: rgba(255,255,255,.78);
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: .92rem;
}


/* ===============================
   RESPONSIVE MEDIA QUERIES
================================= */
@media (max-width: 1199.98px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
  }
}

@media (max-width: 991.98px) {
  .site-logo img {
    max-width: 260px;
  }

  .hero-card {
    min-height: 380px;
    min-height: 420px;
  }

  .hero-content {
    max-width: 100%;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-title {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .content-hero-inner,
  .article-body,
  .hero-content,
  .article-card-body,
  .news-card-body,
  .info-card-body,
  .humor-card-body,
  .list-panel-body,
  .list-panel-header,
  .headline-item,
  .cta-box {
    padding: 1.15rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .news-editorial-main {
    padding-right: 0;
  }

  .news-editorial-title {
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    max-width: 100%;
  }

  .news-editorial-subtitle {
    max-width: 100%;
  }

  .news-editorial-subheads {
    grid-template-columns: 1fr;
  }

  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-box .btn,
  .search-box .form-control {
    border-radius: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .brand-title {
    font-size: 1.65rem;
  }

  .section-wrap {
    padding: 3rem 0;
  }

  .content-shell {
    padding: 2rem 0 3rem;
  }

  .content-subtitle,
  .article-text,
  .article-lead {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .news-editorial-title {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .news-editorial-subtitle {
    font-size: .96rem;
  }

  .news-side-card-title {
    font-size: 1rem;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ESTILOS ESPECÍFICOS DE PÁGINAS (CONSOLIDAÇÃO)
   ========================================== */

/* --- Categoria --- */
.category-shell {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0, #ffffff 240px);
}

.category-hero {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(16,35,59,.07);
  overflow: hidden;
  margin-bottom: 2rem;
}

.category-hero-inner {
  padding: 2rem;
}

.category-kicker {
  display: inline-flex;
  align-items: center;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--bj-navy-2);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.category-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
  color: #10233b;
  margin-bottom: .9rem;
}

.category-subtitle {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475467;
  max-width: 60rem;
  margin-bottom: 0;
}

.results-counter {
  margin-top: .85rem;
  color: #667085;
  font-size: .92rem;
}

.category-featured {
  margin-bottom: 2rem;
}

.featured-hero {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16,35,59,.07);
  height: 100%;
}

.featured-hero-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  display: block;
  background: #dbe4ee;
}

.featured-hero-body {
  padding: 1.5rem;
}

.featured-hero-title {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.2;
  color: #10233b;
  margin-bottom: .75rem;
}

.featured-hero-summary {
  color: #475467;
  line-height: 1.75;
  margin-bottom: .85rem;
}

.featured-grid {
  display: grid;
  gap: 1rem;
}

.featured-mini {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.featured-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16,35,59,.10);
}

.featured-mini-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #dbe4ee;
}

.featured-mini-body {
  padding: 1rem 1rem 1.05rem;
}

.featured-mini-title {
  font-size: 1.02rem;
  line-height: 1.4;
  color: #10233b;
  margin: 0;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.list-card, .models-panel, .humor-panel {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
}

.list-card-body, .models-panel-body, .humor-panel-body {
  padding: 1.35rem;
}

.section-divider-title {
  font-size: 1.2rem;
  color: #10233b;
  margin-bottom: 1rem;
}

.list-item + .list-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eef2f6;
}

.list-item {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 1.15rem;
  align-items: start;
}

.list-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  background: #dbe4ee;
}

.list-tag {
  display: inline-flex;
  align-items: center;
  padding: .34rem .75rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--bj-navy-2);
  font-size: .74rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.list-title {
  font-size: 1.3rem;
  line-height: 1.35;
  color: #10233b;
  margin-bottom: .55rem;
}

.list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  font-size: .9rem;
  color: #667085;
  margin-bottom: .75rem;
}

.list-meta span + span::before {
  content: "•";
  margin-right: 1rem;
  opacity: .55;
}

.list-summary {
  color: #475467;
  line-height: 1.75;
  margin-bottom: .85rem;
}

.read-more {
  color: var(--bj-navy-2);
  font-weight: 600;
}

.empty-box {
  padding: 2rem;
  text-align: center;
  color: #667085;
}

.pagination-wrap {
  margin-top: 1.5rem;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
}

.pagination .page-link {
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  color: #173a5c;
  padding: .55rem .9rem;
}

.pagination .active .page-link {
  background: #173a5c;
  border-color: #173a5c;
  color: #fff;
}

.topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1rem;
}

.topic-list li {
  break-inside: avoid;
  margin-bottom: .6rem;
}

.topic-list a {
  color: #173a5c;
  font-weight: 600;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.model-card {
  display: block;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid #eef2f6;
  background: #fafcff;
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}

.model-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,35,59,.08);
}

.model-card strong {
  display: block;
  color: #10233b;
  line-height: 1.5;
}

.model-card small {
  display: block;
  color: #667085;
  margin-top: .45rem;
  font-weight: 600;
}

.humor-grid {
  display: grid;
  gap: 1rem;
}

.humor-card {
  display: block;
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #eef2f6;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}

.humor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,35,59,.08);
}

.humor-card h3 {
  font-size: 1.05rem;
  color: #10233b;
  line-height: 1.45;
  margin-bottom: .65rem;
}

.humor-card .humor-text {
  color: #475467;
  line-height: 1.75;
  font-size: .95rem;
}

.humor-card .humor-text p:last-child {
  margin-bottom: 0;
}

/* --- Busca --- */
.search-shell {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0, #ffffff 240px);
}

.search-hero {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(16,35,59,.07);
  overflow: hidden;
  margin-bottom: 2rem;
}

.search-hero-inner {
  padding: 2rem;
}

.search-kicker {
  display: inline-flex;
  align-items: center;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--bj-navy-2);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.search-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
  color: #10233b;
  margin-bottom: .9rem;
}

.search-subtitle {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475467;
  max-width: 60rem;
  margin-bottom: 0;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.search-panel {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
}

.search-panel-body {
  padding: 1.35rem;
}

.search-panel-title {
  font-size: 1.25rem;
  color: #10233b;
  margin-bottom: 1rem;
}

.search-panel-intro {
  color: #667085;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.embedded-search-box {
  margin-bottom: 1.5rem;
}

.embedded-search-box .form-control {
  border-radius: 999px 0 0 999px;
  padding: .8rem 1rem;
  border-color: #d0d5dd;
}

.embedded-search-box .btn {
  border-radius: 0 999px 999px 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background: #173a5c;
  border-color: #173a5c;
}

.gcse-wrap {
  min-height: 260px;
}

.gcse-wrap table, .gcse-wrap td {
  border: 0;
}

/* --- Contato (Fale Conosco) --- */
.page-shell {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0, #ffffff 220px);
}

.contact-hero {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(16,35,59,.07);
  overflow: hidden;
  margin-bottom: 2rem;
}

.contact-hero-inner {
  padding: 2rem;
}

.section-kicker-local {
  display: inline-flex;
  align-items: center;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--bj-navy-2);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
  color: #10233b;
  margin-bottom: .9rem;
}

.contact-subtitle {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475467;
  max-width: 60rem;
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.contact-card, .info-card {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16,35,59,.06);
}

.contact-card-body, .info-card-body {
  padding: 1.5rem;
}

.contact-card h2, .info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #10233b;
}

.lead-copy {
  color: #475467;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.alert-modern {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  font-weight: 500;
  line-height: 1.65;
}

.alert-modern.success {
  background: #ecfdf3;
  color: #157347;
  border-color: #abefc6;
}

.alert-modern.error {
  background: #fef3f2;
  color: #b42318;
  border-color: #fecdca;
}

.alert-modern.warning {
  background: #fffaeb;
  color: #b54708;
  border-color: #fedf89;
}

.alert-modern.info {
  background: #eff8ff;
  color: #175cd3;
  border-color: #b2ddff;
}

.form-label {
  font-weight: 600;
  color: #344054;
  margin-bottom: .45rem;
}

.form-control, .form-select {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid #d0d5dd;
  box-shadow: none;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.form-control:focus, .form-select:focus {
  border-color: #98a2b3;
  box-shadow: 0 0 0 .18rem rgba(15,39,64,.08);
}

.btn-primary-modern {
  background: linear-gradient(180deg, #173a5c, #0f2740);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: .9rem 1.5rem;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 12px 24px rgba(16,35,59,.14);
}

.btn-primary-modern:hover {
  color: #fff;
  transform: translateY(-1px);
}

.helper-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #475467;
  line-height: 1.8;
}

.helper-list li + li {
  margin-top: .4rem;
}

.contact-mini {
  display: grid;
  gap: .9rem;
}

.contact-mini-item {
  padding: .95rem 1rem;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  background: #fafcff;
}

.contact-mini-item strong {
  display: block;
  color: #10233b;
  margin-bottom: .25rem;
}

.honeypot-wrap {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.captcha-help {
  font-size: .9rem;
  color: #667085;
  margin-top: .6rem;
}

@media (max-width: 991.98px) {
  .category-layout, .search-layout, .contact-layout {
    grid-template-columns: 1fr;
  }
  .category-hero-inner, .list-card-body, .models-panel-body, .humor-panel-body, .featured-hero-body,
  .search-hero-inner, .search-panel-body,
  .contact-hero-inner, .contact-card-body, .info-card-body {
    padding: 1.25rem;
  }
  .list-item {
    grid-template-columns: 1fr;
  }
  .topic-list {
    columns: 1;
  }
  .models-grid {
    grid-template-columns: 1fr;
  }
  .contact-title {
    font-size: clamp(1.7rem, 6vw, 2.3rem);
  }
}

