:root {
  --blue: #2470e2;
  --cyan: #62c8d6;
  --dark: #06143a;
  --bg: #f5f9ff;
  --surface: #ffffff;
  --text: #1d2733;
  --muted: #657383;
  --line: #d9e7f7;
  --pink: #eb5b89;
  --soft-cyan: #e8f8fb;
  --shadow: 0 18px 48px rgba(6, 20, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.material-symbols-rounded {
  font-size: 1.25rem;
  line-height: 1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(36, 112, 226, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: var(--soft-cyan);
  color: var(--blue);
}

.site-nav .nav-login {
  margin-left: 8px;
  background: var(--blue);
  color: var(--surface);
}

.site-nav .nav-login:hover {
  background: var(--dark);
  color: var(--surface);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--dark);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 64px) 48px;
  background:
    linear-gradient(120deg, rgba(245, 249, 255, 0.98) 0%, rgba(232, 248, 251, 0.94) 54%, rgba(255, 255, 255, 0.96) 100%),
    url("/img/abrangencia-guarapuava.jpeg") right center / min(780px, 58vw) no-repeat;
}

.hero-content,
.section-heading,
.coverage-copy,
.contact-section > div {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
}

.hero-text,
.section-heading p,
.coverage-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--blue);
  color: var(--surface);
  box-shadow: 0 14px 32px rgba(36, 112, 226, 0.24);
}

.button.secondary {
  background: var(--surface);
  color: var(--dark);
  border-color: var(--line);
}

.button:hover,
.document-link:hover {
  transform: translateY(-1px);
}

.hero-panel {
  width: min(100%, 410px);
  justify-self: end;
  padding: 30px;
  border: 1px solid rgba(36, 112, 226, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 210px;
  margin: 0 auto 24px;
}

.hero-panel strong {
  display: block;
  color: var(--blue);
  font-family: "Anton", Impact, sans-serif;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
}

.hero-panel span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.info-band a {
  display: grid;
  gap: 5px;
  padding: 26px clamp(18px, 4vw, 46px);
  background: var(--surface);
}

.info-band .material-symbols-rounded {
  color: var(--cyan);
  font-size: 2rem;
}

.info-band strong {
  color: var(--dark);
  font-size: 1.05rem;
}

.info-band small {
  color: var(--muted);
  font-size: 0.92rem;
}

.page-section {
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 64px);
}

.section-heading {
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card,
.document-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(6, 20, 58, 0.07);
}

.news-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 22px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.news-type {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--soft-cyan);
  color: var(--blue);
}

.news-card h3,
.document-item h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.news-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.documents-section {
  background: var(--surface);
}

.document-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--surface);
}

.document-list {
  display: grid;
  gap: 12px;
}

.document-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
}

.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.document-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.document-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--surface);
  font-weight: 800;
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.city-list span {
  padding: 9px 12px;
  border: 1px solid rgba(36, 112, 226, 0.22);
  border-radius: 999px;
  background: var(--surface);
  color: var(--dark);
  font-weight: 800;
}

.coverage-map {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coverage-map img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: contain;
  background: #f7f7f7;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 64px) clamp(42px, 6vw, 76px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 8px;
  background: var(--dark);
  color: var(--surface);
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: var(--surface);
}

.contact-section p {
  opacity: 0.78;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.contact-details .material-symbols-rounded {
  color: var(--cyan);
}

.contact-section .button.secondary {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-login {
    margin-left: 0;
  }

  .hero,
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(120deg, rgba(245, 249, 255, 0.98), rgba(232, 248, 251, 0.96)),
      url("/img/abrangencia-guarapuava.jpeg") center bottom / 760px no-repeat;
  }

  .hero-panel {
    justify-self: start;
  }

  .card-grid,
  .info-band {
    grid-template-columns: 1fr;
  }

  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.2rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 3rem;
  }

  .button,
  .document-link {
    width: 100%;
  }

  .hero-panel {
    padding: 22px;
  }

  .document-item {
    grid-template-columns: 1fr;
  }
}
