@charset "UTF-8";
:root {
  --primary:#196af7;
  --primary-dark:#0f4fc2;
  --primary-tint:#eaf1ff;
  --ink:#0f1b2d;
  --ink-soft:#5b6572;
  --bg:#FFF;
  --card:#ffffff;
  --border:#e4e8f0;
  --radius:0px;
  --shadow:0 1px 2px rgba(15,27,45,.04), 0 8px 24px rgba(15,27,45,.06);
  --shadow-hover:0 4px 10px rgba(15,27,45,.06), 0 20px 40px rgba(15,27,45,.12);
}

* {
  box-sizing: border-box;
}

.breadcrumb {
  padding: 0 !important;
  background-color: transparent !important;
}

.breadcrumb > li + li:before {
  color: rgba(51, 51, 51, 0.68);
  font-weight: bold !important;
  content: "˃";
  padding: 0 7px 0 5px;
}

.breadcrumb h5 {
  display: inline;
}
.breadcrumb h5 strong {
  font-weight: 700;
}

#status {
  padding-top: 30px;
}

#container {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
  min-height: 270px;
  margin: 0;
  padding: 0; /* Remove o padding */
  background-color: var(--bg);
}
#container.load {
  grid-template-columns: repeat(1, 1fr);
}

#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#loader img {
  display: flex;
}

.imgToOpen {
  cursor: pointer;
}

#containerPagination {
  flex-flow: column;
}

#containerPagination .pagText {
  font-size: 14px;
}

#containerPagination, #containerPagination nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.controlNav, .page {
  cursor: pointer;
}

.header-inner {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 50px;
}
.header-inner strong {
  font-weight: 700;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
  max-width: 50%;
}
.brand h1 {
  margin: 0;
  padding: 0;
  font-size: 2.25rem !important;
  font-weight: 400;
}
.brand p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: normal;
  color: var(--ink-soft);
  white-space: normal;
}

.search-col {
  flex: 1;
  max-width: 640px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-wrap {
  position: relative;
  width: 100%;
}

.search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}

.search-wrap input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f2f2f2;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-wrap input::-moz-placeholder {
  color: #a4acb8;
}

.search-wrap input::placeholder {
  color: #a4acb8;
}

.search-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-tint);
}

.result-count {
  align-self: flex-end;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-right: 6px;
}

.result-count b {
  color: var(--ink);
  font-weight: 600;
}

.box {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.45s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.box-body {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}

.box-body .box-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.85) saturate(1.15);
  transform: scale(1.15); /* evita a borda nítida do fundo aparecer por causa do blur */
  z-index: 0;
}

.box-body .box-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.box:hover .box-body .box-img {
  transform: scale(1.06);
}

.box-body .box-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(6, 14, 28, 0.82), rgba(6, 14, 28, 0));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.box:hover .overlay {
  opacity: 1;
}

.overlay .caption {
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--primary);
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
}

.empty i {
  color: #c7cedb;
  margin-bottom: 12px;
  font-size: 34px;
}

.empty p {
  margin: 4px 0;
  font-size: 14.5px;
}

.empty b {
  color: var(--ink);
}

.footer {
  max-width: 1290px;
  margin: 0 auto;
  /* padding:36px 24px 64px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

#loadMoreBtn {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: var(--primary);
  border: none;
  padding: 13px 30px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.15s ease, transform 0.1s ease;
}

#loadMoreBtn:hover {
  background: var(--primary-dark);
}

#loadMoreBtn:active {
  transform: scale(0.97);
}

#loadMoreBtn:disabled {
  background: #c9d3e0;
  cursor: default;
}

#loadMoreBtn .spinner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: none;
}

#loadMoreBtn.loading .spinner {
  display: inline-block;
}

#loadMoreBtn.loading .label {
  display: none;
}

.news-list {
  margin: 0;
  padding: 0 0 15px 0;
  list-style: none;
}
.news-list li {
  padding: 5px 0 5px 16px;
  position: relative;
}
.news-list li:first-child {
  padding-top: 0;
  padding-left: 0;
  margin-bottom: 10px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.news-list li:not(:first-child):before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-soft);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.footer-note {
  font-size: 13px;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    flex-flow: column;
    align-items: flex-start;
  }
  .header-inner .brand {
    max-width: 100%;
  }
  .search-col {
    max-width: 100%;
    width: 100%;
    margin-left: unset;
  }
  .result-count {
    display: none;
  }
  /* #container{ grid-template-columns:repeat(auto-fill, minmax(150px,1fr)); gap:14px; } */
}
@media (max-width: 991px) {
  .header-inner {
    margin-bottom: 30px;
  }
  .box {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
  .box .box-body .box-img {
    transform: scale(1.06);
  }
  .box .overlay {
    opacity: 1;
  }
}/*# sourceMappingURL=styles.css.map */