/* Cidade News — recriação visual da home (PHP) */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --primary: 214 88% 34%;
  --primary-foreground: 0 0% 100%;
  --brand: 214 88% 34%;
  --brand-dark: 217 90% 24%;
  --urgent: 0 78% 48%;
  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --accent: 240 4.8% 95.9%;
  --accent-foreground: 240 5.9% 10%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --ring: 214 88% 34%;
  --radius: .35rem;
  --reading-scale: 1;
}

.dark {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --primary: 214 90% 56%;
  --primary-foreground: 240 10% 3.9%;
  --brand: 214 90% 60%;
  --brand-dark: 214 90% 44%;
  --urgent: 0 78% 58%;
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --accent: 240 3.7% 15.9%;
  --accent-foreground: 0 0% 98%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 240 4.9% 83.9%;
}

*, *::before, *::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: hsl(var(--border)); }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: calc(1rem * var(--reading-scale));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

::selection { background: hsl(var(--brand) / .2); }

.font-display { font-family: 'Barlow Condensed', sans-serif; }
.font-serif-body { font-family: 'Source Serif 4', Georgia, serif; }

/* Layout */
.min-h-screen { min-height: 100vh; }
.flex-col { display: flex; flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.container { max-width: 1300px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Colors */
.text-brand { color: hsl(var(--brand)); }
.text-brand-dark { color: hsl(var(--brand-dark)); }
.text-urgent { color: hsl(var(--urgent)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-white { color: #fff; }
.bg-brand { background-color: hsl(var(--brand)); }
.bg-brand-dark { background-color: hsl(var(--brand-dark)); }
.bg-urgent { background-color: hsl(var(--urgent)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-card { background-color: hsl(var(--card)); }
.border-border { border-color: hsl(var(--border)); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background) / .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}
.header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  user-select: none;
  flex-shrink: 0;
}
.logo .c-cidade {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: hsl(var(--brand));
  line-height: 1;
}
.logo .c-news {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
  line-height: 1;
}
.header-tagline {
  display: none;
  font-size: .75rem;
  color: hsl(var(--muted-foreground));
  max-width: 190px;
  line-height: 1.25;
  font-style: italic;
}
.header-divider {
  display: none;
  height: 2rem;
  width: 1px;
  background: hsl(var(--border));
  margin: 0 .25rem;
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .375rem;
}
.btn-live {
  display: none;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 600;
  color: hsl(var(--urgent));
  padding: .25rem .5rem;
  border-radius: .25rem;
  transition: background .15s;
}
.btn-live:hover { background: hsl(var(--urgent) / .1); }
.btn-radio {
  display: none;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  padding: .25rem .5rem;
  border-radius: .25rem;
  transition: background .15s;
}
.btn-radio:hover { background: hsl(var(--secondary)); }
.icon-btn {
  padding: .5rem;
  border-radius: .25rem;
  color: hsl(var(--foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.icon-btn:hover { background: hsl(var(--secondary)); }
.menu-toggle { display: inline-flex; color: hsl(var(--foreground)); }
@media (min-width: 640px) {
  .header-tagline, .header-divider { display: block; }
}
@media (min-width: 768px) {
  .btn-live, .btn-radio { display: inline-flex; }
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Search bar */
.search-bar {
  display: none;
  padding-bottom: .75rem;
  margin-top: -.25rem;
}
.search-bar.open { display: block; }
.search-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid hsl(var(--border));
  border-radius: .375rem;
  padding: .5rem .75rem;
  background: hsl(var(--card));
}
.search-inner input {
  flex: 1;
  background: transparent;
  outline: none;
  border: none;
  font-size: .875rem;
}
.search-inner .search-submit {
  font-size: .75rem;
  font-weight: 600;
  color: hsl(var(--brand));
}

/* Nav desktop */
.main-nav {
  display: none;
  align-items: center;
  gap: .25rem;
  height: 2.75rem;
  overflow-x: auto;
  margin-top: -1px;
}
.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  padding: .375rem .75rem;
  border-radius: .25rem;
  color: hsl(var(--foreground) / .8);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: hsl(var(--secondary)); }
.main-nav a.active {
  font-weight: 600;
  color: hsl(var(--brand));
}
.main-nav a.active:hover { background: hsl(var(--brand) / .1); }
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

/* Mobile drawer */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.5);
}
.drawer-overlay.open { display: block; }
.drawer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20rem;
  max-width: 85%;
  background: hsl(var(--background));
  padding: 1.25rem;
  overflow-y: auto;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem;
}
.drawer-grid a {
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem;
  border-radius: .25rem;
}
.drawer-grid a:hover { background: hsl(var(--secondary)); }
.drawer-extra {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  display: grid;
  gap: .25rem;
}
.drawer-extra a {
  font-size: .875rem;
  font-weight: 600;
  padding: .5rem;
  border-radius: .25rem;
}
.drawer-extra a:hover { background: hsl(var(--secondary)); }

/* Ticker */
.ticker {
  background: hsl(var(--brand-dark));
  color: #fff;
  overflow: hidden;
}
.ticker-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.ticker-label {
  flex-shrink: 0;
  background: hsl(var(--urgent));
  padding: 0 .75rem;
  display: flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.ticker-track-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  padding: .5rem 0;
  font-size: .875rem;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.ticker-track span { opacity: .9; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.pulse-live {
  animation: pulse-live 1.4s ease-in-out infinite;
}
.dot-live {
  height: .5rem;
  width: .5rem;
  border-radius: 9999px;
  background: hsl(var(--urgent));
  display: inline-block;
}
.dot-live.white { background: #fff; }
.dot-live.red { background: #f87171; }

/* Ad placeholder */
.ad-slot {
  width: 100%;
  border-radius: .375rem;
  border: 1px dashed hsl(var(--border));
  background: hsl(var(--secondary) / .6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ad-slot.top { height: 6rem; }
.ad-slot.mid { height: 5.5rem; }
.ad-slot.side { height: 16rem; }
@media (min-width: 768px) {
  .ad-slot.top { height: 7rem; }
  .ad-slot.mid { height: 7rem; }
}
.ad-slot .ad-label {
  font-size: 10px;
  letter-spacing: .15em;
  color: hsl(var(--muted-foreground));
}
.ad-slot .ad-text {
  font-size: .875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground) / .8);
}

/* Hero */
.hero {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .hero { grid-template-columns: 2fr 1fr; }
}
.hero-lead {
  position: relative;
  border-radius: .5rem;
  overflow: hidden;
  display: block;
  group: true;
}
.hero-lead img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .7s;
}
@media (min-width: 768px) {
  .hero-lead img { aspect-ratio: 16 / 9; }
}
.hero-lead:hover img { transform: scale(1.05); }
.hero-lead .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2), transparent);
}
.hero-lead .content {
  position: absolute;
  bottom: 0;
  padding: 1.5rem;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-lead .content { padding: 2rem; }
}
.badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .25rem .5rem;
  border-radius: .25rem;
}
.badge.urgent { background: hsl(var(--urgent)); color: #fff; }
.badge.brand { background: hsl(var(--brand)); color: #fff; }
.hero-lead h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.05;
  margin-top: .75rem;
  max-width: 48rem;
}
@media (min-width: 768px) {
  .hero-lead h1 { font-size: 3rem; }
}
.hero-lead .sub {
  margin-top: .75rem;
  color: rgba(255,255,255,.85);
  max-width: 36rem;
  display: none;
}
@media (min-width: 768px) {
  .hero-lead .sub { display: block; }
}
.meta-row {
  margin-top: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}
.meta-row.dark {
  color: hsl(var(--muted-foreground));
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-side-card {
  position: relative;
  border-radius: .5rem;
  overflow: hidden;
  flex: 1;
  min-height: 180px;
  display: block;
}
.hero-side-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.hero-side-card:hover img { transform: scale(1.05); }
.hero-side-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}
.hero-side-card .content {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  color: #fff;
}
.hero-side-card .cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #bfdbfe;
}
.hero-side-card .cat.urgent { color: #fca5a5; }
.hero-side-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: .25rem;
}

/* Section title */
.section-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.section-head .bar {
  height: 1.5rem;
  width: .375rem;
  border-radius: 9999px;
  background: hsl(var(--brand));
  flex-shrink: 0;
}
.section-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-head .more {
  margin-left: auto;
  font-size: .875rem;
  font-weight: 600;
  color: hsl(var(--brand));
}
.section-head .more:hover { text-decoration: underline; }

/* Article card */
.article-card { display: block; }
.article-card .thumb {
  overflow: hidden;
  border-radius: .375rem;
  margin-bottom: .75rem;
  background: hsl(var(--secondary));
}
.article-card .thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .5s;
}
.article-card.lg .thumb img { aspect-ratio: 16 / 9; }
.article-card:hover .thumb img { transform: scale(1.05); }
.article-card .cat-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: hsl(var(--brand));
}
.article-card .cat-label.urgent { color: hsl(var(--urgent)); }
.article-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-top: .25rem;
  color: hsl(var(--foreground));
  font-size: 1.125rem;
  transition: color .15s;
}
.article-card.lg h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .article-card.lg h3 { font-size: 1.875rem; }
}
.article-card:hover h3 { color: hsl(var(--brand)); }
.article-card .meta {
  margin-top: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: hsl(var(--muted-foreground));
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Main grid */
.home-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .home-grid {
    grid-template-columns: 1fr 320px;
  }
}
.home-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}
.home-aside {
  position: relative;
}
@media (min-width: 1024px) {
  .home-aside-sticky {
    position: sticky;
    top: 8rem;
  }
}

/* Sidebar latest */
.latest-box {
  border-radius: .5rem;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}
.latest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: hsl(var(--brand));
  color: #fff;
  padding: .625rem 1rem;
}
.latest-head h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
.latest-head .clock {
  font-size: .75rem;
  opacity: .9;
  font-variant-numeric: tabular-nums;
}
.latest-list { padding: 0 1rem; }
.latest-item {
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid hsl(var(--border));
}
.latest-item:last-child { border-bottom: 0; }
.latest-item .meta {
  font-size: 11px;
  font-weight: 600;
  color: hsl(var(--brand));
}
.latest-item p {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color .15s;
}
.latest-item:hover p { color: hsl(var(--brand)); }

/* Cidade TV */
.tv-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .tv-grid { grid-template-columns: 1fr 1fr; }
}
.tv-main {
  position: relative;
  border-radius: .5rem;
  overflow: hidden;
  display: block;
}
.tv-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.tv-main .shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.tv-main:hover .shade { background: rgba(0,0,0,.2); }
.play-btn {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.9);
  color: hsl(var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-live-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  background: hsl(var(--urgent));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: .25rem;
}
.tv-main .title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
}
.tv-main .title-bar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.tv-list {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .tv-list { grid-template-columns: repeat(3, 1fr); }
}
.tv-item {
  display: flex;
  gap: .75rem;
  align-items: center;
}
.tv-item .thumb-wrap {
  position: relative;
  flex-shrink: 0;
}
.tv-item img {
  width: 7rem;
  height: 5rem;
  object-fit: cover;
  border-radius: .25rem;
}
.tv-item .duration {
  position: absolute;
  bottom: .25rem;
  right: .25rem;
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: 10px;
  padding: 0 .25rem;
  border-radius: .15rem;
}
.tv-item .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.tv-item p {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color .15s;
}
.tv-item:hover p { color: hsl(var(--brand)); }

/* Radio block */
.radio-block {
  border-radius: .5rem;
  background: hsl(var(--brand-dark));
  color: #fff;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .radio-block { padding: 2rem; }
}
.radio-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .radio-grid { grid-template-columns: 2fr 1fr; }
}
.radio-live {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fca5a5;
  font-size: .75rem;
  font-weight: 700;
}
.radio-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  margin-top: .5rem;
}
.radio-block .host {
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}
.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  background: #fff;
  color: hsl(var(--brand-dark));
  font-weight: 600;
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  transition: background .15s;
}
.btn-listen:hover { background: rgba(255,255,255,.9); }
.radio-schedule {
  background: rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: 1rem;
}
.radio-schedule h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.radio-schedule li {
  display: flex;
  gap: .75rem;
  font-size: .875rem;
  margin-bottom: .5rem;
}
.radio-schedule li:last-child { margin-bottom: 0; }
.radio-schedule .time {
  font-weight: 700;
  width: 2.5rem;
  color: #fecaca;
}
.radio-schedule .name { color: rgba(255,255,255,.85); }

/* Newsletter */
.newsletter {
  border-radius: .5rem;
  border: 1px solid hsl(var(--border));
  padding: 2rem;
  text-align: center;
  background: hsl(var(--secondary) / .4);
}
.newsletter .icon { color: hsl(var(--brand)); margin: 0 auto; }
.newsletter h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: .75rem;
}
.newsletter p {
  color: hsl(var(--muted-foreground));
  margin-top: .25rem;
}
.newsletter form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .newsletter form { flex-direction: row; }
}
.newsletter input {
  flex: 1;
  border: 1px solid hsl(var(--border));
  border-radius: .375rem;
  padding: .625rem 1rem;
  background: hsl(var(--background));
  outline: none;
}
.newsletter input:focus {
  box-shadow: 0 0 0 2px hsl(var(--brand));
}
.newsletter button {
  background: hsl(var(--brand));
  color: #fff;
  font-weight: 600;
  padding: .625rem 1.25rem;
  border-radius: .375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  transition: background .15s;
}
.newsletter button:hover { background: hsl(var(--brand-dark)); }
.newsletter .success {
  margin-top: 1.25rem;
  color: hsl(var(--brand));
  font-weight: 600;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: hsl(var(--brand-dark));
  color: #fff;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .logo .c-cidade { color: #fff; font-size: 1.5rem; }
.footer-brand .logo .c-news { color: rgba(255,255,255,.7); font-size: 1.5rem; }
.footer-brand p {
  margin-top: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  max-width: 20rem;
  font-style: italic;
}
.socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.socials a {
  padding: .5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  transition: background .15s;
}
.socials a:hover { background: rgba(255,255,255,.2); }
.footer-col h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.footer-col li { margin-bottom: .5rem; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Utils */
.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;
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-6 { margin-top: 1.5rem; }
.h-8 { height: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* SVG icons */
.icon { width: 1.125rem; height: 1.125rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: .75rem; height: .75rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }
.icon-fill { fill: currentColor; stroke: none; }
