/* [project]/src/app/informes/informes.css [app-client] (css) */
.inf {
  --brand: #007c8a;
  --brand-dark: #005f6b;
  --brand-light: #e8f5f7;
  --text-900: #0a1628;
  --text-500: #546478;
  --text-300: #8a9bac;
  --surface: #fff;
  --surface-2: #f2f4f6;
  --nav-bg: #0a1628;
  --border: #0a162817;
  --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(.inf) {
  background: var(--surface);
}

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

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

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

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

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

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

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

.inf-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;
}

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

.inf-masthead__date {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff4d;
  font-size: 11px;
  font-weight: 600;
}

.inf-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.inf-section-label {
  align-items: center;
  gap: 12px;
  padding: 32px 0 20px;
  display: flex;
}

.inf-section-label__accent {
  background: var(--brand);
  flex: none;
  width: 40px;
  height: 2px;
}

.inf-section-label__text {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
}

.inf-section-label__line {
  background: var(--border);
  flex: 1;
  height: 1px;
}

.inf-empty {
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  padding: 64px 24px;
  display: flex;
}

.inf-empty__icon {
  color: var(--brand);
  opacity: .6;
  margin-bottom: 20px;
}

.inf-empty__title {
  font-family: var(--f-serif);
  color: var(--text-900);
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.inf-empty__text {
  color: var(--text-500);
  max-width: 480px;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
}

.inf-empty__cta {
  color: var(--brand);
  transition: color var(--t);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.inf-empty__cta:hover {
  color: var(--brand-dark);
}

.inf-cta {
  background: var(--nav-bg);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 40px;
}

.inf-cta__title {
  font-family: var(--f-serif);
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.inf-cta__desc {
  color: #ffffff80;
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.7;
}

.inf-cta__btn {
  background: var(--brand);
  color: #fff;
  transition: background var(--t);
  border-radius: 6px;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.inf-cta__btn:hover {
  background: var(--brand-dark);
}

@media (max-width: 768px) {
  .inf-masthead__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .inf-cta {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .inf-page {
    padding: 0 12px 48px;
  }

  .inf-empty {
    padding: 40px 16px;
  }
}

/*# sourceMappingURL=src_app_informes_informes_d97ae9e4.css.map*/