/* ========================================
   ASPENE-SE — Modern Website Stylesheet
   Design: Editorial/Institutional
   Palette: Navy, Gold, White
   ======================================== */

:root {
  --navy: #003A6E;
  --navy-dark: #001F3F;
  --navy-mid: #005A9C;
  --gold: #F5A800;
  --gold-light: #FFD166;
  --gold-dark: #C87F00;
  --white: #FFFFFF;
  --off-white: #F8F7F2;
  --gray-50: #F9FAFB;
  --gray-100: #F0F2F5;
  --gray-200: #E2E6EA;
  --gray-400: #9BA3AF;
  --gray-600: #596475;
  --gray-800: #2D3748;
  --text: #1A2233;
  --text-muted: #596475;
  --border: #DDE3EE;
  --shadow: 0 2px 12px rgba(0,58,110,0.10);
  --shadow-md: 0 8px 32px rgba(0,58,110,0.12);
  --shadow-lg: 0 20px 60px rgba(0,58,110,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-date {
  font-size: 12px;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.topbar-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}

.pix-btn {
  background: rgba(245,168,0,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,168,0,0.3);
}
.pix-btn:hover { background: var(--gold); color: var(--navy-dark); }

.remessa-btn {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.remessa-btn:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.login-btn {
  background: var(--gold);
  color: var(--navy-dark);
  border: 1px solid var(--gold);
}
.login-btn:hover { background: var(--gold-dark); }

/* ========================================
   HEADER
   ======================================== */
/* Header base — sobrescrito por header.css nas páginas internas */
.header {
  background: var(--white);
  box-shadow: 0 2px 0 var(--border), var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon { flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-aspene {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-se {
  display: inline;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Make ASPENE and SE on same line */
.logo-text .logo-aspene::after { content: '-'; }

.logo-sub {
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 3px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 220px;
}

/* ── Banner real no header ── */
.header-banner-img {
  height: 52px;
  width: auto;
  max-width: 340px;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .header-banner-img {
    height: 38px;
    max-width: 200px;
  }
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-link.active {
  color: var(--navy);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,31,63,0.97) 0%,
    rgba(0,58,110,0.88) 50%,
    rgba(0,90,156,0.75) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(245,168,0,0.8) 40px,
      rgba(245,168,0,0.8) 41px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 44px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,168,0,0.12);
  border: 1px solid rgba(245,168,0,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.5s infinite;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,168,0,0.35);
}

.btn-primary.small {
  font-size: 13px;
  padding: 8px 16px;
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

.btn-text {
  color: var(--navy-mid);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.btn-text:hover { color: var(--gold-dark); }

/* ========================================
   QUICK ACCESS
   ======================================== */
.quick-access {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ── Discreet topbar buttons ── */
.discreet-btn {
  background: transparent !important;
  color: rgba(255,255,255,0.3) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  font-size: 10px !important;
  letter-spacing: 0.04em;
  padding: 3px 9px !important;
  gap: 4px !important;
}
.discreet-btn:hover {
  color: rgba(255,255,255,0.6) !important;
  border-color: rgba(255,255,255,0.2) !important;
}

/* ========================================
   BANNERS STRIP — Eventos + Jornal
   ======================================== */
.banners-strip {
  background: var(--gray-50);
  padding: 28px 0 0;
}

.banners-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 12px;
}

.banner-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s;
}

.banner-card:hover .banner-img { transform: scale(1.04); }

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,15,40,0.92) 0%, rgba(0,15,40,0.5) 60%, transparent 100%);
  padding: 32px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.banner-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.banner-overlay strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  display: block;
}

.banner-overlay span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  display: block;
}

/* Editorial card (sem imagem de fundo) */
.banner-editorial {
  background: var(--navy-dark);
  aspect-ratio: 3/4;
}

.banner-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(245,168,0,0.1) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
}

.banner-editorial-inner {
  position: relative;
  z-index: 1;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner-editorial-inner .banner-tag { margin-bottom: 2px; }

.banner-editorial-inner strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  display: block;
}

.banner-editorial-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-top: 4px;
}

.banner-editorial-inner ul li {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}

.banner-editorial-inner ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.banner-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(245,168,0,0.2);
}

/* Quick grid 2-column */
.quick-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
  cursor: pointer;
}

.quick-card:last-child { border-right: none; }
.quick-card:hover { background: rgba(255,255,255,0.06); }

.quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jornal-icon { background: rgba(245,168,0,0.2); color: var(--gold); }
.eventos-icon { background: rgba(100,180,255,0.15); color: #64B4FF; }
.pix-icon { background: rgba(72,200,120,0.15); color: #48C878; }
.remessa-icon { background: rgba(200,130,255,0.15); color: #C882FF; }

.quick-text { flex: 1; }
.quick-text strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; line-height: 1.2; }
.quick-text span { color: rgba(255,255,255,0.5); font-size: 12px; }
.quick-arrow { color: rgba(255,255,255,0.3); font-size: 18px; flex-shrink: 0; }

/* ========================================
   MAIN LAYOUT
   ======================================== */
.main-layout {
  padding: 60px 0;
  background: var(--gray-50);
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ========================================
   SECTION BLOCKS
   ======================================== */
.section-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-header.center {
  flex-direction: column;
  text-align: center;
  gap: 8px;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-bar {
  display: block;
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.jornal-bar { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }
.events-bar { background: linear-gradient(180deg, #48C878, #2DA05A); }
.gallery-bar { background: linear-gradient(180deg, #C882FF, #8B5CF6); }

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.see-all:hover { color: var(--gold-dark); }

/* ========================================
   NEWS
   ======================================== */
.news-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.news-featured-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.news-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.news-img-placeholder.featured {
  min-height: 200px;
}

.news-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

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

.news-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
  background: rgba(0,90,156,0.08);
  padding: 3px 10px;
  border-radius: 4px;
}

.news-cat.small {
  font-size: 10px;
  padding: 2px 8px;
}

.news-date {
  font-size: 12px;
  color: var(--gray-400);
}

.news-date.small { font-size: 11px; }

.news-title-featured {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card-img .news-img-placeholder {
  min-height: unset;
  height: 100%;
}

.news-card-body {
  padding: 14px;
}

.news-card-body h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 8px 0 6px;
}

/* ========================================
   JORNAL
   ======================================== */
.jornal-section { border-left: 4px solid var(--gold); }

.jornal-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

.jornal-cover-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.jornal-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 240px;
}

.jornal-placeholder svg { opacity: 0.6; }
.jornal-placeholder span { color: rgba(255,255,255,0.6); font-size: 12px; }

.jornal-info {
  padding: 8px 0;
}

.jornal-edition {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(245,168,0,0.1);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.jornal-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.jornal-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.jornal-list h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.edition-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.edition-list li:last-child { border-bottom: none; }

.edition-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.edition-list li > div {
  flex: 1;
}

.edition-list strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}

.edition-list span {
  font-size: 11px;
  color: var(--text-muted);
}

.edition-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-mid);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.2s;
}

.edition-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ========================================
   EVENTS
   ======================================== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.event-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.event-date-box {
  width: 56px;
  height: 64px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-date-box.upcoming { background: var(--gold); }

.event-day {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.event-date-box.upcoming .event-day { color: var(--navy-dark); }

.event-month {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}

.event-date-box.upcoming .event-month { color: rgba(0,31,63,0.7); }

.event-body {
  flex: 1;
}

.event-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.event-body p {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.event-body p svg { flex-shrink: 0; }

.event-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.event-tag.aga { background: rgba(0,90,156,0.1); color: var(--navy-mid); }
.event-tag.social { background: rgba(72,200,120,0.12); color: #2DA05A; }
.event-tag.palestra { background: rgba(200,130,255,0.12); color: #8B5CF6; }

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 130px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.contact-card { border-top: 4px solid var(--navy); }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.contact-item:last-child { border-bottom: none; }
.contact-item strong { color: var(--navy); font-weight: 600; }
.contact-item span { color: var(--navy-mid); font-family: monospace; font-size: 13px; }

.plantao-card { border-top: 4px solid var(--gold); }

.plantao-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plantao-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plantao-day {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  background: rgba(245,168,0,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.plantao-info strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}

.plantao-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.useful-links li {
  border-bottom: 1px solid var(--border);
}

.useful-links li:last-child { border-bottom: none; }

.useful-links a {
  display: block;
  padding: 9px 0;
  font-size: 13px;
  color: var(--navy-mid);
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}

.useful-links a:hover {
  color: var(--gold-dark);
  padding-left: 6px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.social-btn.facebook { background: #1877F2; color: white; }
.social-btn.facebook:hover { background: #1565D8; }
.social-btn.whatsapp { background: #25D366; color: white; }
.social-btn.whatsapp:hover { background: #1DA851; }
.social-btn.youtube { background: #FF0000; color: white; }
.social-btn.youtube:hover { background: #CC0000; }

/* ========================================
   GALLERY STRIP
   ======================================== */
.gallery-strip {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gi-1 .gallery-placeholder { background: linear-gradient(135deg, #003A6E, #005A9C); }
.gi-2 .gallery-placeholder { background: linear-gradient(135deg, #1F4068, #1B262C); }
.gi-3 .gallery-placeholder { background: linear-gradient(135deg, #0F2027, #203A43); }
.gi-4 .gallery-placeholder { background: linear-gradient(135deg, #134E5E, #71B280); }
.gi-5 .gallery-placeholder { background: linear-gradient(135deg, #C67B3C, #8B2FC9); }

.gallery-placeholder span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  text-align: center;
  padding: 8px;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 20px 12px 10px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay span {
  font-size: 12px;
  color: white;
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--navy-dark); }

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-aspene {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.footer-slogan {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-col address {
  font-style: normal;
}

.footer-col address p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col address strong { color: rgba(255,255,255,0.8); }

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .banners-grid {
    grid-template-columns: 1fr 1fr;
  }
  .banner-card { aspect-ratio: 4/3; }
  .banner-editorial { aspect-ratio: 4/3; }
  .quick-grid, .quick-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .quick-card:nth-child(2) { border-right: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .topbar-date { display: none; }
  .topbar-links { gap: 4px; }
  .discreet-btn { display: none; }

  .header-inner { gap: 16px; }
  .logo-sub { display: none; }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .hamburger { display: flex; }

  .hero-content { padding: 36px 24px 32px; }

  .banners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .banner-card { aspect-ratio: 3/4; }
  .banner-editorial { aspect-ratio: 3/4; }

  .quick-grid, .quick-grid-2 {
    grid-template-columns: 1fr 1fr !important;
    gap: 0;
  }

  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .jornal-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gi-5 { display: none; }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-actions { flex-direction: column; }
  .section-block { padding: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  .topbar, .header, .hero, .quick-access, .gallery-strip, .sidebar, .footer { display: none; }
  .main-layout { padding: 0; background: white; }
  .main-grid { grid-template-columns: 1fr; }
  .section-block { box-shadow: none; border: 1px solid #ccc; }
}
