/* [project]/src/app/entidades/entidades.css [app-client] (css) */
.ent-wrap {
  --brand: #007c8a;
  --brand-dark: #005f6b;
  --brand-light: #e8f5f7;
  --brand-subtle: #007c8a12;
  --text-900: #0a1628;
  --text-700: #2d4057;
  --text-500: #546478;
  --text-300: #8a9bac;
  --surface: #fff;
  --nav-bg: #0a1628;
  --border: #0a162817;
  --border-md: #0a162826;
  --f-serif: var(--font-playfair), "Playfair Display", Georgia, serif;
  --f-sans: var(--font-ibm-plex), "IBM Plex Sans", system-ui, sans-serif;
  --f-body: var(--font-lora), "Lora", Georgia, serif;
  --f-display: var(--font-dm-sans), "DM Sans", system-ui, sans-serif;
  --max-w: 1400px;
  --nav-h: 64px;
  --t: .2s ease;
  background: var(--surface);
  width: 100%;
}

body:has(.ent-wrap) {
  background: var(--surface);
}

body:has(.ent-wrap) .site-content {
  background: var(--surface);
}

.ent-masthead {
  background: var(--nav-bg);
  overflow: hidden;
}

.ent-masthead__inner {
  max-width: var(--max-w);
  align-items: flex-end;
  gap: 32px;
  margin: 0 auto;
  padding: 36px 24px 0;
  display: flex;
}

.ent-masthead__kicker {
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}

.ent-masthead__kicker-dot {
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.ent-masthead__kicker-text {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}

.ent-masthead__title {
  font-family: var(--f-display);
  letter-spacing: -.04em;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .88;
}

.ent-masthead__bar {
  max-width: var(--max-w);
  border-top: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 0;
  padding: 14px 24px;
  display: flex;
}

.ent-masthead__tagline {
  font-size: 12px;
  font-style: italic;
  font-family: var(--f-body);
  color: #ffffff59;
}

.ent-masthead__stats {
  gap: 24px;
  display: flex;
}

.ent-masthead__stats span {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff4d;
  font-size: 11px;
  font-weight: 600;
}

.ent-masthead__stats strong {
  color: #ffffff8c;
  font-weight: 700;
}

.ent-content {
  background: #fff;
  padding: 40px 0 80px;
}

.ent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ent-search-wrap {
  max-width: 520px;
  margin-bottom: 28px;
  position: relative;
}

.ent-search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-300);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.ent-search-input {
  border: 1.5px solid var(--border);
  background: var(--white);
  width: 100%;
  font-family: var(--font-body);
  color: var(--text-900);
  border-radius: 12px;
  outline: none;
  padding: 14px 40px 14px 46px;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 3px #0000000a;
}

.ent-search-input::placeholder {
  color: var(--text-300);
}

.ent-search-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px #007c8a1f, 0 1px 3px #0000000a;
}

.ent-search-clear {
  color: var(--text-300);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 4px;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.ent-search-clear:hover {
  color: var(--text-700);
}

.ent-filters {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  display: flex;
}

.ent-filter-pill {
  white-space: nowrap;
  border: 1.5px solid var(--border-md);
  background: var(--surface);
  color: var(--text-500);
  cursor: pointer;
  transition: all var(--t);
  border-radius: 20px;
  flex-shrink: 0;
  align-items: center;
  padding: 5px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.ent-filter-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.ent-filter-pill:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.ent-filter-pill--active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.ent-filter-pill--active:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.ent-results-count {
  font-family: var(--font-body);
  color: var(--text-500);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  padding-bottom: 20px;
  font-size: 14px;
}

.ent-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.ent-card {
  background: var(--white);
  border: 1px solid var(--border);
  color: inherit;
  border-radius: 16px;
  flex-direction: column;
  padding: 28px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s cubic-bezier(.4, 0, .2, 1), border-color .25s;
  display: flex;
  position: relative;
}

.ent-card:before {
  content: "";
  background: var(--brand);
  opacity: 0;
  border-radius: 0 0 3px 3px;
  height: 3px;
  transition: opacity .25s;
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
}

.ent-card:hover {
  border-color: #0000;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px #0a16281a, 0 4px 8px #0a16280a;
}

.ent-card:hover:before {
  opacity: 1;
}

.ent-card:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.ent-card:active {
  transform: translateY(-1px)scale(.99);
}

.ent-card-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.ent-card-logo {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000000f;
}

.ent-card-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.ent-card-logo-placeholder {
  font-family: var(--font-display);
  color: var(--brand);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.ent-card-tag {
  font-family: var(--font-body);
  background: var(--brand-light);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  border-radius: 980px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.ent-card-name {
  font-family: var(--font-display);
  color: var(--text-900);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  transition: color .2s;
  display: -webkit-box;
  overflow: hidden;
}

.ent-card:hover .ent-card-name {
  color: var(--brand);
}

.ent-card-desc {
  font-family: var(--font-body);
  color: var(--text-500);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
}

.ent-card-sections {
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
}

.ent-card-section-tag {
  font-family: var(--font-body);
  color: var(--brand);
  background: var(--brand-light);
  letter-spacing: .3px;
  border-radius: 980px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.ent-card-section-tag--link {
  cursor: pointer;
}

.ent-card-section-tag--link:hover {
  background: var(--brand);
  color: #fff;
}

.ent-empty {
  text-align: center;
  font-family: var(--font-body);
  color: var(--text-500);
  padding: 64px 24px;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .ent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ent-hero {
    padding: 72px 0 36px;
  }

  .ent-hero-title {
    font-size: 34px;
  }

  .ent-hero-subtitle {
    font-size: 16px;
  }

  .ent-hero-stats {
    gap: 24px;
  }

  .ent-hero-stat strong {
    font-size: 24px;
  }

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

  .ent-card {
    border-radius: 14px;
    padding: 20px;
  }

  .ent-filters {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .ent-filters::-webkit-scrollbar {
    display: none;
  }

  .ent-search-wrap {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ent-hero {
    padding: 64px 0 32px;
  }

  .ent-hero-title {
    font-size: 28px;
  }

  .ent-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ent-card-name {
    font-size: 16px;
  }

  .ent-content {
    padding: 24px 0 48px;
  }

  .ent-container {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ent-card, .ent-filter-pill, .ent-search-input, .ent-card-section-tag {
    transition: none;
  }

  .ent-card:hover {
    transform: none;
  }
}

/* [project]/src/app/entidades/[slug]/entidad-page.css [app-client] (css) */
.ef-breadcrumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 40px);
  font-size: 13px;
}

.ef-breadcrumbs ol {
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.ef-breadcrumbs li {
  align-items: center;
  display: flex;
}

.ef-breadcrumbs li:not(:last-child):after {
  content: "›";
  color: #0a162826;
  margin: 0 8px;
  font-size: 14px;
}

.ef-breadcrumbs a {
  color: var(--ef-iagua);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.ef-breadcrumbs a:hover {
  color: var(--ef-deep);
  text-decoration: underline;
}

.ef-breadcrumbs span {
  color: #546478;
  font-weight: 400;
}

:root {
  --ef-deep: #0a1628;
  --ef-navy: #04293a;
  --ef-iagua: #007c8a;
  --ef-accent: #00c4d8;
  --ef-gold: #d4a537;
  --ef-g50: #fff;
  --ef-g100: #f2f4f6;
  --ef-g200: #0a162817;
  --ef-g400: #8a9bac;
  --ef-g600: #546478;
  --ef-g800: #0a1628;
  --ef-e: cubic-bezier(.4, 0, .2, 1);
}

.ef-header {
  background: linear-gradient(135deg, var(--ef-deep) 0%, var(--ef-navy) 100%);
  padding: 20px 0;
}

.ef-header-inner {
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 24px);
  display: flex;
}

.ef-header-left {
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  display: flex;
}

.ef-header-logo {
  background: #fff;
  border-radius: 14px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 20px #00000040;
}

.ef-header-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.ef-header-logo-ph {
  font-family: var(--font-display);
  color: var(--ef-iagua);
  font-size: 28px;
  font-weight: 700;
}

.ef-header-info {
  flex: 1;
  min-width: 0;
}

.ef-header-type {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ef-accent);
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
}

.ef-header-name {
  font-family: var(--font-display);
  color: #fff;
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}

.ef-header-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  display: flex;
}

.ef-header-back, .ef-header-web {
  color: #ffffff80;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.ef-header-back:hover, .ef-header-web:hover {
  color: #fff;
}

.ef-header-sponsor {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.ef-header-sponsor-img {
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  display: block;
}

.ef-pills {
  border-bottom: 1px solid var(--ef-g200);
  z-index: 50;
  background: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 8px #0000000a;
}

.ef-pills-inner {
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
}

.ef-pill {
  color: var(--ef-g600);
  border: 1px solid var(--ef-g200);
  transition: all .2s var(--ef-e);
  background: #fff;
  border-radius: 980px;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.ef-pill:hover {
  border-color: var(--ef-iagua);
  color: var(--ef-iagua);
  background: #007c8a0a;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px #007c8a14;
}

.ef-pill-icon {
  font-size: 15px;
}

.ef-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 40px) 80px;
}

.ef-sh {
  border-bottom: 2px solid var(--ef-g800);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  display: flex;
}

.ef-sh h2 {
  font-family: var(--font-display);
  color: var(--ef-g800);
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.ef-sh a {
  color: var(--ef-iagua);
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.ef-sh a:hover {
  color: var(--ef-deep);
}

.ef-section {
  margin-bottom: 40px;
}

.ef-hero-wrap {
  background: #f1f3f5;
}

.ef-hero {
  min-height: 520px;
  color: inherit;
  cursor: pointer;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  display: grid;
}

.ef-hero-img-wrap {
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.ef-hero-img {
  width: 100%;
  height: auto;
  transition: box-shadow .6s var(--ef-e);
  border-radius: 12px;
  box-shadow: 0 10px 40px #0003, 0 4px 12px #0000001a;
}

.ef-hero:hover .ef-hero-img {
  box-shadow: 0 16px 56px #00000047, 0 6px 16px #00000026;
}

.ef-hero-img-ph {
  background: linear-gradient(135deg, var(--ef-g200), #ddd);
  border-radius: 12px;
  width: 100%;
  height: 400px;
}

.ef-hero-body {
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px 56px 40px;
  display: flex;
  position: relative;
}

.ef-hero-badge {
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ef-iagua);
  margin-bottom: 24px;
  padding-left: 40px;
  font-size: 10px;
  font-weight: 700;
  position: relative;
}

.ef-hero-badge:before {
  content: "";
  background: var(--ef-iagua);
  width: 28px;
  height: 1.5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.ef-hero-title {
  font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
  color: var(--ef-g800);
  letter-spacing: -.02em;
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.18;
}

.ef-hero-highlight {
  color: #007c8a;
  font-style: italic;
}

.ef-hero-excerpt {
  color: var(--ef-g400);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.ef-hero-meta {
  color: var(--ef-g400);
  font-size: 12px;
}

.ef-hero-source {
  color: var(--ef-iagua);
  font-weight: 600;
}

.ef-hero-date {
  font-weight: 600;
}

.ef-blogs-full {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 28px clamp(16px, 4vw, 40px) 0;
}

.ef-blog-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.ef-blog-card {
  border: 1px solid var(--ef-g200);
  transition: all .3s var(--ef-e);
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.ef-blog-card:hover {
  border-color: #007c8a1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px #0000000f;
}

.ef-blog-card-img {
  aspect-ratio: 1;
  background: var(--ef-g100);
  position: relative;
  overflow: hidden;
}

.ef-blog-card-img img {
  object-fit: fill;
  transition: transform .5s var(--ef-e);
}

.ef-blog-card:hover .ef-blog-card-img img {
  transform: scale(1.03);
}

.ef-blog-card-img-ph {
  background: linear-gradient(135deg, var(--ef-g100), var(--ef-g200));
  width: 100%;
  height: 100%;
}

.ef-blog-card-body {
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 20px;
  display: flex;
}

.ef-blog-card-date {
  color: #007c8a;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
}

.ef-blog-card-title {
  font-family: var(--font-display);
  color: var(--ef-g800);
  flex: 1;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.ef-blog-card-excerpt {
  color: var(--ef-g400);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.ef-tabs-bar {
  background: #0a1628;
  border-radius: 10px 10px 0 0;
  gap: 0;
  margin-bottom: 24px;
  display: flex;
  overflow: hidden;
}

.ef-tab {
  letter-spacing: .02em;
  color: #ffffff8c;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
  display: inline-flex;
  position: relative;
}

.ef-tab:after {
  content: "";
  background: #00c4d8;
  border-radius: 3px 3px 0 0;
  width: 60%;
  height: 3px;
  transition: transform .25s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%)scaleX(0);
}

.ef-tab:hover {
  color: #ffffffd9;
  background: #ffffff0d;
}

.ef-tab--active {
  color: #fff;
  background: #ffffff14;
}

.ef-tab--active:after {
  transform: translateX(-50%)scaleX(1);
}

.ef-tab-count {
  color: #ffffff80;
  background: #ffffff1f;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  transition: all .25s;
}

.ef-tab--active .ef-tab-count {
  color: #00c4d8;
  background: #00b4d840;
}

.ef-content-area {
  grid-template-columns: 1fr 340px;
  gap: 36px;
  display: grid;
}

.ef-news-list {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

a.ef-news-card {
  color: inherit;
  text-decoration: none;
}

.ef-news-card {
  border: 1px solid var(--ef-g200);
  cursor: pointer;
  transition: all .3s var(--ef-e);
  background: #fff;
  border-radius: 12px;
  grid-template-columns: 180px 1fr;
  gap: 0;
  display: grid;
  overflow: hidden;
}

.ef-news-card:hover {
  border-color: #007c8a1f;
  box-shadow: 0 4px 16px #0000000a;
}

.ef-news-card-img {
  aspect-ratio: 4 / 3;
  background: var(--ef-g100);
  position: relative;
  overflow: hidden;
}

.ef-news-card-img img {
  object-fit: fill;
  transition: transform .5s var(--ef-e);
}

.ef-news-card:hover .ef-news-card-img img {
  transform: scale(1.03);
}

.ef-news-card-img-ph {
  background: linear-gradient(135deg, var(--ef-g100), var(--ef-g200));
  width: 100%;
  height: 100%;
}

.ef-news-card-body {
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  display: flex;
}

.ef-news-card-date {
  color: var(--ef-iagua);
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
}

.ef-news-card-title {
  font-family: var(--font-display);
  color: var(--ef-g800);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
}

.ef-news-card:hover .ef-news-card-title {
  color: var(--ef-iagua);
}

.ef-news-card-cargo {
  color: var(--ef-g400);
  margin-bottom: 4px;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
}

.ef-news-card-excerpt {
  color: var(--ef-g400);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.ef-load-more {
  width: 100%;
  color: var(--ef-iagua);
  border: 1px solid var(--ef-g200);
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  margin-top: 16px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: block;
}

.ef-load-more:hover {
  border-color: var(--ef-iagua);
  background: #007c8a0a;
}

.ef-sidebar {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.ef-sb-block {
  border: 1px solid var(--ef-g200);
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  overflow: hidden;
}

.ef-sb-title {
  font-family: var(--font-display);
  color: var(--ef-g800);
  border-bottom: 2px solid var(--ef-iagua);
  margin: 0 0 14px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.ef-sb-trending {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.ef-sb-trending-item {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.ef-sb-trending-num {
  font-family: var(--font-display);
  color: var(--ef-g200);
  flex-shrink: 0;
  min-width: 28px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.ef-sb-trending-text {
  color: var(--ef-g800);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.ef-sb-trending-text span {
  color: var(--ef-g400);
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
  display: block;
}

.ef-sb-sponsor {
  justify-content: center;
  display: flex;
}

.ef-sb-sponsor-slot {
  border-radius: 8px;
  width: 300px;
  max-width: 100%;
  overflow: hidden;
}

.ef-sb-sponsor-img {
  width: 100%;
  height: auto;
  display: block;
}

.ef-sb-events {
  flex-direction: column;
  display: flex;
}

.ef-sb-event {
  border-bottom: 1px solid var(--ef-g100);
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  display: flex;
}

.ef-sb-event:last-child {
  border: none;
  padding-bottom: 0;
}

.ef-sb-event-date {
  background: var(--ef-deep);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  flex-shrink: 0;
  min-width: 48px;
  padding: 6px 10px;
}

.ef-sb-event-day {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.ef-sb-event-mon {
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .7;
  font-size: 9px;
}

.ef-sb-event-info {
  color: var(--ef-g800);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.ef-article-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 40px) 0;
}

.ef-article-hero-img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  max-height: 480px;
  display: block;
  box-shadow: 0 8px 30px #0000001f;
}

.ef-article {
  padding-bottom: 40px;
}

.ef-article-date {
  color: var(--ef-iagua);
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.ef-article-title {
  font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
  color: var(--ef-g800);
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.ef-article-body {
  color: #2d4057;
  letter-spacing: -.01em;
  font-feature-settings: "kern" 1, "liga" 1;
  font-family: Inter, SF Pro Text, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.ef-article-body p {
  margin: 0 0 20px;
}

.ef-article-body a {
  color: var(--ef-iagua);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.ef-article-body a:hover {
  color: var(--ef-deep);
}

.ef-article-body img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}

.ef-article-body h2 {
  font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
  color: var(--ef-g800);
  margin: 36px 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.ef-article-body strong {
  color: var(--ef-g800);
  font-weight: 600;
}

.ef-article-body blockquote {
  border-left: 3px solid var(--ef-iagua);
  color: #546478;
  background: #f2f4f6;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  padding: 16px 24px;
  font-style: italic;
}

@media (max-width: 1024px) {
  .ef-content-area {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .ef-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .ef-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ef-hero-img-wrap {
    padding: 24px 20px;
  }

  .ef-hero-img {
    max-height: 300px;
  }

  .ef-hero-body {
    padding: 0 24px 32px;
  }

  .ef-content-area {
    grid-template-columns: 1fr;
  }

  .ef-sidebar {
    order: -1;
  }

  .ef-sb-sponsor-slot {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .ef-header {
    padding: 28px 0 20px;
  }

  .ef-header-logo {
    border-radius: 10px;
    width: 56px;
    height: 56px;
  }

  .ef-header-name {
    font-size: 20px;
  }

  .ef-blog-grid {
    grid-template-columns: 1fr;
  }

  .ef-news-card {
    grid-template-columns: 100px 1fr;
  }

  .ef-news-card-img {
    min-height: 90px;
  }

  .ef-article-title {
    font-size: 22px;
  }

  .ef-article-hero-img {
    border-radius: 0;
    max-height: 280px;
  }

  .ef-pills-inner {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .ef-pills-inner::-webkit-scrollbar {
    display: none;
  }

  .ef-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/*# sourceMappingURL=src_app_entidades_a2db2313._.css.map*/