﻿:root {
  --blue: #0267A8;
  --blue-dark: #004B7A;
  --teal: #0CC4B2;
  --bg: #f7f9fc;
  --card: #ffffff;
  --text: #1f2a35;
  --muted: #51606f;
  --border: #e4e9f0;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: var(--header-height);
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

a:hover {
  color: var(--blue-dark);
  text-decoration-color: var(--blue-dark);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 700;
}

.brand__logo {
  height: 42px;
  width: auto;
}

.brand-text {
  display: block;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  font-size: 0.85rem;
  margin-bottom: 2px;
  color: var(--text);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-weight: 600;
  color: var(--text);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: all 0.15s ease-out;
}

.nav a:hover {
  color: var(--blue);
  background: rgba(2, 103, 168, 0.08);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle__bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-dark);
  display: block;
}

.layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-template-areas: "sidebar content";
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.sidebar {
  grid-area: sidebar;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.sidebar .card {
  transition: all 0.15s ease-out;
}

.sidebar .card:hover {
  background: #fbfdff;
  box-shadow: 0 14px 30px rgba(2, 103, 168, 0.12);
  transform: translateY(-1px);
}

.card__title {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: var(--blue-dark);
}

.list,
.recent-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.list a,
.recent-list a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.list a:hover,
.recent-list a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.search-form__group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
}

.search-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 0.85rem;
  font-size: 0.95rem;
  background: #fff;
  height: 46px;
}

.search-form button {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  height: 46px;
  width: 100%;
  min-width: 0;
}

.finder-form,
.signup-form {
  display: grid;
  gap: 0.65rem;
}

.finder-form label,
.signup-form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.finder-form select,
.finder-form input,
.signup-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  font-family: inherit;
  line-height: 1.4;
}

.finder-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  font-family: inherit;
  line-height: 1.4;
  min-height: 90px;
  color: var(--text);
  resize: vertical;
}

.finder-form textarea::placeholder {
  color: var(--muted);
}

.finder-form select:focus,
.finder-form input:focus,
.finder-form textarea:focus,
.signup-form input:focus,
.search-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2, 103, 168, 0.12);
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: #c0392b;
}

.is-invalid {
  border-color: #c0392b;
}

.small-note {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.resultado-profissionais {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.resultado-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.prof-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.prof-card__title {
  margin: 0 0 0.25rem;
  color: var(--text);
  font-size: 1.05rem;
}

.prof-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.prof-card__cta {
  margin-top: 0.6rem;
}

.resultado-vazio {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  background: linear-gradient(150deg, rgba(2, 103, 168, 0.06), rgba(12, 196, 178, 0.04)), var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.featured__image img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 100%;
  min-height: 240px;
}

.featured__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.featured__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured__title {
  margin: 0;
  font-size: 1.8rem;
  color: var(--blue-dark);
}

.featured__excerpt {
  margin: 0;
  color: var(--text);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--blue-dark);
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-card {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.18s ease-out;
}

.post-card:hover {
  background: #fbfdff;
  box-shadow: 0 14px 30px rgba(2, 103, 168, 0.12);
  transform: translateY(-2px);
}

.post-card__thumb {
  flex: 0 0 32%;
  min-height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #dce6f2;
}

.post-card__image {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}

.post-card:hover .post-card__thumb img {
  transform: scale(1.02);
}
.post-card__body {
  flex: 1;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.post-card__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.post-card__title a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-card__excerpt {
  margin: 0;
  color: var(--text);
}

.articles-intro {
  margin: 0.4rem 0 0.75rem;
  color: var(--muted);
}

.articles-status {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.search-results {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.search-query {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  color: var(--text);
}

.search-query strong {
  font-size: 1.25rem;
  color: #0a5aa5;
}

.search-title {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

.results-card {
  border: 1px solid var(--border);
  background: #fbfdff;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-list li {
  margin-bottom: 0.9rem;
}

.results-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.result-media {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: #eef3f8;
}

.result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-link {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: #0a5aa5;
  transition: color 0.2s ease;
}

.result-link:hover {
  color: #0f8bd6;
}

.result-label {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

@media (max-width: 640px) {
  .results-item {
    grid-template-columns: 1fr;
  }

  .result-media {
    width: 100%;
    height: 180px;
  }
}

.no-results {
  border: 1px solid #f2c7c2;
  background: #fff3f1;
  border-radius: 12px;
  padding: 1.2rem;
}

.no-results__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: var(--text);
}

.no-results__text {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.is-hidden {
  display: none;
}

.search-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #d7e4f3;
  background: #eef6ff;
  box-shadow: 0 10px 22px rgba(2, 103, 168, 0.08);
}

.search-panel--empty {
  border-color: #f2c7c2;
  background: #fff3f1;
}

.search-panel__title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--blue-dark);
}

.search-panel__meta,
.search-panel__count,
.search-panel__hint {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.search-panel__clear {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  transition: all 0.15s ease-out;
}

.search-panel__clear:hover {
  color: var(--blue);
  background: #f1f7ff;
  transform: translateY(-1px);
}

.is-hidden {
  display: none;
}

.articles-list {
  display: grid;
  gap: 0.85rem;
}

.article-card {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--text);
  transition: all 0.18s ease-out;
}

.article-card:hover {
  background: #fbfdff;
  box-shadow: 0 14px 30px rgba(2, 103, 168, 0.12);
  transform: translateY(-2px);
}

.article-card__media {
  flex: 0 0 180px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #dce6f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem;
  background: #e6edf5;
}

.article-card__body {
  flex: 1;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.article-card__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--blue-dark);
  font-weight: 700;
}

.article-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-card__excerpt {
  margin: 0;
  color: var(--text);
}

.search-highlight {
  background: #fff0a8;
  color: inherit;
  padding: 0 0.15em;
  border-radius: 4px;
}

.article-item {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-link {
  display: inline-block;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.article-link:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-meta {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalogs-main {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.catalogs-hero h1 {
  margin: 0 0 0.35rem;
  color: var(--blue-dark);
}

.catalogs-hero p {
  margin: 0;
  color: var(--text);
}

.catalogs-hero__box {
  margin: 0.5rem auto 0;
  padding: 0.75rem 1rem;
  background: #eef6fb;
  border: 1px solid #d6e6f2;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.catalogs-hero__lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin: 0;
  white-space: nowrap;
}

.catalogs-hero__note {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.catalogs-hero__text--mobile {
  display: none;
}

.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 1rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.catalog-card h2 {
  margin: 0 0 0.35rem;
  color: var(--blue-dark);
  text-align: center;
  font-size: 1.15rem;
}

.catalog-card p {
  margin: 0 0 0.75rem;
  color: var(--text);
}

.catalogo-imagem {
  width: 100%;
  height: auto;              /* altura automática, sem cortar */
  max-height: 260px;         /* controla o tamanho dentro do card */
  object-fit: contain;       /* mostra a imagem inteira, sem corte */
  border-radius: 24px;
  display: block;
  margin: 0 auto 24px;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.catalog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 1rem 0;
  display: block;
}

.btn,
.btn-primary,
.search-form button,
.finder-form button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(2, 103, 168, 0.28);
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.finder-form button:disabled {
  opacity: 0.35;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

a.btn-primary,
a.btn-primary:visited {
  color: #fff;
}

.btn:hover,
.btn-primary:hover,
.search-form button:hover,
.finder-form button:hover,
.signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(2, 103, 168, 0.34);
  color: #fff;
}

a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active {
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 14px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(2, 103, 168, 0.12);
  color: var(--blue-dark);
}

.footer {
  margin-top: 2rem;
  background: #f0f4f9;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 1rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
}

.footer__logo {
  width: 54px;
  height: auto;
}

.phone-icon {
  color: var(--blue);
  margin: 0 0.35rem;
}
.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
}

.footer__contacts a {
  color: var(--blue-dark);
  font-weight: 600;
  transition: color 0.15s ease-out;
}

.footer__contacts a:hover {
  color: var(--blue);
}

.footer__copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* Página do post */
.article-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--blue);
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--border);
}

.breadcrumb li:last-child::after {
  content: "";
}

.post {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.post:hover {
  box-shadow: 0 16px 32px rgba(2, 103, 168, 0.12);
  background: #fbfdff;
}

.post__header {
  display: grid;
  gap: 0.9rem;
}

.post__title {
  margin: 0;
  font-size: 1.9rem;
  color: var(--blue-dark);
}

.post__excerpt {
  margin: 0;
  color: var(--text);
}

.post__figure {
  margin: 0;
}

.post__figure img {
  border-radius: var(--radius);
}

.post__figure figcaption {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.post__content {
  display: grid;
  gap: 0.9rem;
}

.post__content h2 {
  margin: 1rem 0 0.35rem;
  color: var(--blue-dark);
}

.post__content h3 {
  margin: 0.75rem 0 0.35rem;
  color: var(--blue);
}

.post__content p {
  margin: 0;
}

.post__content ul,
.post__content ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}

@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 280px 1fr;
  }

  .featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  body {
    padding-top: calc(var(--header-height) + 8px);
  }

  .nav ul {
    gap: 0.75rem;
  }

  .layout {
    grid-template-areas:
      "content"
      "sidebar";
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .post-card {
    flex-direction: column;
  }

  .post-card__thumb {
    flex-basis: auto;
    width: 100%;
    min-height: 190px;
  }

  .article-card {
    flex-direction: column;
  }

  .article-card__media {
    width: 100%;
    height: 180px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 110px;
  }

  body {
    font-size: 17px;
  }

  .topbar {
    background: transparent;
    border-bottom: 0;
  }

  .topbar__inner {
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    height: auto;
    min-height: var(--header-height);
    padding-top: 0.25rem;
    padding-bottom: 0.35rem;
  }

  .brand {
    margin-bottom: 0.1rem;
  }

  .nav-toggle {
    display: inline-flex;
    border-radius: 12px;
    border: 1px solid #dbe6f2;
    background: linear-gradient(135deg, #ffffff, #f2f8ff);
    box-shadow: 0 8px 18px rgba(2, 103, 168, 0.18);
  }

  .nav {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    width: max-content;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
  }

  .nav a {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    box-shadow: 0 6px 16px rgba(2, 103, 168, 0.16);
  }

  .catalogs-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    max-width: 100%;
  }

  .catalogs-hero__text--desktop {
    display: none;
  }

  .catalogs-hero__text--mobile {
    display: inline;
  }

  .catalogs-hero__note {
    white-space: normal;
  }

  .search-form__group {
    flex-direction: column;
  }

  .btn,
  .btn-primary,
  .search-form button,
  .finder-form button,
  .signup-form button {
    padding: 0.9rem 1.1rem;
  }

  .featured__title,
  .post__title {
    font-size: 1.55rem;
  }

  .post-card__thumb {
    min-height: 170px;
  }

  .search-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-card__media {
    height: 160px;
  }
}

.catalogo-lista {
  list-style: none;
  margin: 1.5rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.catalogo-item {
  background: #f5fbff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 75, 120, 0.04);
}

.catalogo-item__titulo {
  font-weight: 600;
  font-size: 0.95rem;
  color: #004b7a;
  margin-bottom: 0.25rem;
}

.catalogo-item__acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.catalogo-item__acoes a {
  color: #007bbf;
  text-decoration: none;
  font-weight: 500;
}

.catalogo-item__acoes a:hover {
  text-decoration: underline;
}

.catalogo-item--vazio {
  font-size: 0.9rem;
  color: #7a8a99;
}

.catalogo-lista.is-hidden {
  display: none;
}

.catalog-toggle {
  width: 100%;
  justify-content: center;
}
