/* ==========================================================================
   COOPERATIVA HABITACIONAL NOVO AMANHÃ — DESIGN SYSTEM MASTER V3
   Tipografia: Outfit (700-900) + Plus Jakarta Sans (400-800)
   Paleta: Verde Esmeralda (#009540), Ouro (#E2DE00), Floresta (#062415)
   Imagens Cinematográficas de Terrenos & Empreendimento Comunitário
   ========================================================================== */

/* --------------------------------------------------------------------------
   ESTRUTURA GERAL & TIPOGRAFIA
   -------------------------------------------------------------------------- */
body.site-page,
body.public-page {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  background-color: #f8faf9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, 
.hero-cinematic-title, 
.project-heading, 
.card-item-title, 
.history-title,
.contact-main-heading {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.035em;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.site-page main {
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 20px 70px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   TOPBAR DE AVISO DINÂMICO
   -------------------------------------------------------------------------- */
.topbar-aviso-dinamico {
  background: linear-gradient(90deg, #007a34 0%, #009540 100%);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-aviso-inner {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.topbar-aviso-tag {
  background: #E2DE00;
  color: #082114;
  font-weight: 850;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}

.topbar-aviso-texto { font-weight: 600; }
.topbar-aviso-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.topbar-aviso-link:hover { color: #E2DE00; }

/* --------------------------------------------------------------------------
   CABEÇALHO INSTITUCIONAL (76PX, 1 LINHA NO DESKTOP)
   -------------------------------------------------------------------------- */
.public-header-modern {
  background: #ffffff;
  border-bottom: 1px solid #e5ece7;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px -2px rgba(0, 50, 20, 0.04);
}

.public-header-container {
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 20px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.public-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.public-brand-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.public-brand:hover .public-brand-logo {
  transform: scale(1.02);
}

.public-nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-grow: 1;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link-item {
  color: #334155;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
  padding: 9px 14px;
  border-radius: 9px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-link-item:hover {
  color: #009540;
  background: #eef8f2;
}

.nav-link-item.active {
  color: #009540;
  background: #e6f5ec;
  font-weight: 750;
}

.nav-cta-wrapper {
  margin-left: 8px;
}

.nav-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #009540 0%, #007a34 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 10px 18px;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(0, 149, 64, 0.28);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 149, 64, 0.38);
  background: linear-gradient(135deg, #00a848 0%, #00873a 100%);
}

.cta-svg-icon {
  width: 17px;
  height: 17px;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #ffffff;
}

.nav-toggle-btn span {
  display: block;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

@media (max-width: 980px) {
  .nav-toggle-btn { display: flex; }
  .public-nav-menu {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 26px;
    gap: 12px;
  }
  .nav-toggle-input:checked ~ .public-nav-menu { display: flex; }
  .nav-links-wrapper { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link-item { padding: 12px 16px; font-size: 1.02rem; }
  .nav-cta-wrapper { margin-left: 0; margin-top: 8px; }
  .nav-cta-button { justify-content: center; padding: 14px 20px; font-size: 1rem; width: 100%; }
}

/* --------------------------------------------------------------------------
   1. HERO CINEMATOGRÁFICO COM FOTO REAL DO TERRENO
   -------------------------------------------------------------------------- */
.portal-hero-cinematic {
  padding: 24px 0 34px;
}

.hero-cinematic-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px -10px rgba(0, 40, 15, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 10s ease;
}

.hero-cinematic-banner:hover .hero-bg-photo {
  transform: scale(1.07);
}

.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 26, 15, 0.88) 0%, rgba(3, 16, 9, 0.82) 50%, rgba(2, 10, 6, 0.92) 100%);
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #d1fae5;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.pulse-emerald {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.hero-cinematic-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #ffffff;
  margin: 0 0 18px;
}

.hero-cinematic-title em {
  font-style: normal;
  color: #E2DE00;
  text-shadow: 0 0 25px rgba(226, 222, 0, 0.35);
}

.hero-cinematic-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.62;
  color: #e2e8f0;
  max-width: 560px;
  margin: 0 0 32px;
}

.hero-cinematic-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn-emerald {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #009540 0%, #007a34 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px 28px;
  border-radius: 13px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 149, 64, 0.45);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-emerald:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 149, 64, 0.6);
  background: linear-gradient(135deg, #00a848 0%, #008a3b 100%);
}

.hero-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 750;
  font-size: 0.98rem;
  padding: 15px 24px;
  border-radius: 13px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* Card Flutuante */
.hero-float-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.float-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.float-tag-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #007a34;
  background: #e8f7ee;
  padding: 5px 12px;
  border-radius: 999px;
}

.float-tag-live svg { width: 14px; height: 14px; }
.float-status-pill {
  font-size: 0.78rem;
  font-weight: 800;
  color: #009540;
}

.float-card-body {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.float-card-body.single {
  flex-direction: column;
  gap: 8px;
}

.float-date-badge {
  background: linear-gradient(135deg, #e8f7ee 0%, #d2f0dc 100%);
  border: 1px solid #bfe4cd;
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  flex-shrink: 0;
}

.day-num {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: #007a34;
  font-family: 'Outfit', sans-serif;
}

.month-txt {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #082114;
  margin-top: 3px;
}

.float-title {
  font-size: 1.2rem;
  font-weight: 850;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.3;
}

.float-time {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.float-time svg { width: 14px; height: 14px; color: #009540; }

.float-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f1f8f4;
  color: #007a34 !important;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid #d4e8db;
  text-decoration: none;
  transition: all 0.15s ease;
}

.float-card-btn:hover {
  background: #009540;
  color: #ffffff !important;
  border-color: #009540;
}

.float-card-btn svg { width: 16px; height: 16px; }

/* Faixa de Estatísticas */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.stat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f7ee;
  color: #007a34;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-icon-wrap svg { width: 22px; height: 22px; }

.stat-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero-cinematic-content { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .hero-stats-bar { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   2. ACESSOS RÁPIDOS
   -------------------------------------------------------------------------- */
.portal-quick-grid-wrap {
  margin: 48px 0 60px;
}

.quick-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.modern-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.modern-card-item:hover {
  transform: translateY(-5px);
  border-color: #009540;
  box-shadow: 0 14px 32px rgba(0, 149, 64, 0.14);
}

.card-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef8f2;
  color: #009540;
  display: grid;
  place-items: center;
}

.card-item-icon svg { width: 22px; height: 22px; }

.card-recadastro-highlight .card-item-icon.icon-recadastro {
  background: #009540;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 149, 64, 0.35);
}

.card-item-badge {
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-item-badge.badge-active {
  background: #e8f7ee;
  color: #007a34;
  border: 1px solid #c2e8ce;
}

.card-item-title {
  font-size: 1.2rem;
  font-weight: 850;
  color: #0f172a;
  margin: 0 0 6px;
}

.card-item-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.48;
  margin: 0;
}

.card-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 800;
  color: #009540;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.card-item-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.modern-card-item:hover .card-item-link svg { transform: translateX(4px); }

@media (max-width: 1060px) {
  .quick-cards-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .quick-cards-container { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   3. SEÇÃO DO PROJETO HABITACIONAL & TERRENOS
   -------------------------------------------------------------------------- */
.portal-housing-project {
  background: #ffffff;
  border: 1px solid #e1ece5;
  border-radius: 26px;
  padding: 42px 40px;
  margin-bottom: 60px;
  box-shadow: 0 6px 24px rgba(0, 40, 15, 0.04);
}

.project-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.project-showcase-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 40, 15, 0.12);
}

.showcase-img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-showcase-photo:hover .showcase-img {
  transform: scale(1.03);
}

.photo-floating-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(6, 36, 21, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.photo-floating-tag svg { width: 16px; height: 16px; color: #E2DE00; }

.section-pre-title {
  display: block;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #007a34;
  margin-bottom: 6px;
}

.project-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 900;
  color: #092115;
  line-height: 1.2;
  margin: 0 0 18px;
}

.project-paragraph {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 24px;
}

.project-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.highlight-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8f7ee;
  color: #007a34;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-icon svg { width: 16px; height: 16px; }

.highlight-point strong {
  display: block;
  font-size: 0.96rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.highlight-point span {
  display: block;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.45;
}

.project-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .project-showcase-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --------------------------------------------------------------------------
   4. AVISOS E COMUNICADOS
   -------------------------------------------------------------------------- */
.portal-section-wrapper {
  margin-bottom: 60px;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-main-title {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 900;
  color: #092115;
  margin: 0;
}

.section-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #007a34;
  text-decoration: none;
  white-space: nowrap;
}

.section-top-link:hover { text-decoration: underline; }
.section-top-link svg { width: 15px; height: 15px; }

.notices-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.notice-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.notice-card-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.notice-card-box.tipo-urgente { border-left: 5px solid #d9534f; }
.notice-card-box.tipo-importante { border-left: 5px solid #E2DE00; }

.notice-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.notice-type-tag {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.type-norm { background: #eef7f1; color: #007a34; }
.type-imp { background: #fdf5d6; color: #735a00; }
.type-urg { background: #fae6e6; color: #a82828; }

.notice-publish-date { font-size: 0.82rem; color: #94a3b8; font-weight: 600; }
.notice-heading { font-size: 1.15rem; font-weight: 850; color: #0f172a; margin: 0; line-height: 1.35; }
.notice-summary { font-size: 0.92rem; color: #64748b; line-height: 1.55; margin: 0; }
.notice-foot { margin-top: auto; padding-top: 10px; }
.notice-read-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 800; color: #007a34; text-decoration: none; }
.notice-read-link:hover { text-decoration: underline; }
.notice-read-link svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   5. SOBRE A COOPERATIVA & OS 3 PILARES
   -------------------------------------------------------------------------- */
.portal-about-container {
  background: #ffffff;
  border: 1px solid #e1ece5;
  border-radius: 26px;
  padding: 42px 40px;
  margin-bottom: 60px;
  box-shadow: 0 6px 24px rgba(0, 40, 15, 0.04);
}

.about-flex-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.about-column-heading {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 900;
  color: #092115;
  margin: 0 0 24px;
}

.pillars-card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.single-pillar-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fbfdfc;
  border: 1px solid #ebf3ee;
  border-radius: 16px;
  padding: 18px 20px;
  transition: all 0.15s ease;
}

.single-pillar-card:hover {
  background: #ffffff;
  border-color: #009540;
  box-shadow: 0 6px 18px rgba(0, 149, 64, 0.08);
}

.pillar-symbol {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #e8f7ee;
  color: #007a34;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pillar-symbol svg { width: 21px; height: 21px; }
.pillar-name { font-size: 1.08rem; font-weight: 850; color: #0f172a; margin: 0 0 4px; }
.pillar-text { font-size: 0.88rem; color: #64748b; line-height: 1.52; margin: 0; }

.about-history-column {
  background: #f7faf8;
  border: 1px solid #e2eee6;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.history-title { font-size: 1.4rem; font-weight: 900; color: #092115; margin: 0; }
.history-body p { font-size: 0.94rem; color: #475569; line-height: 1.65; margin: 0 0 12px; }
.history-body p:last-child { margin-bottom: 0; }

.history-pills-row { display: flex; flex-wrap: wrap; gap: 10px; }
.history-pill {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
}
.pill-title { font-size: 0.68rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; }
.pill-value { font-size: 0.88rem; color: #0f172a; font-weight: 750; }

.history-action-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.history-action-buttons .button { flex: 1 1 auto; justify-content: center; }

@media (max-width: 960px) {
  .about-flex-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* --------------------------------------------------------------------------
   6. BANNER DE TRANSPARÊNCIA
   -------------------------------------------------------------------------- */
.portal-transparency-showcase {
  background: linear-gradient(135deg, #072616 0%, #005c28 100%);
  border-radius: 24px;
  padding: 42px 44px;
  margin-bottom: 60px;
  color: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 60, 25, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.transparency-showcase-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.transparency-showcase-left { max-width: 680px; }
.transparency-gold-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2DE00;
  margin-bottom: 8px;
}
.transparency-gold-tag svg { width: 14px; height: 14px; }
.transparency-showcase-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; line-height: 1.22; margin: 0 0 12px; color: #ffffff; }
.transparency-showcase-desc { font-size: 0.98rem; line-height: 1.62; color: #d1fae5; margin: 0; }

.transparency-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #072616 !important;
  font-weight: 850;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}

.transparency-showcase-btn:hover {
  background: #E2DE00;
  color: #082114 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(226, 222, 0, 0.35);
}
.transparency-showcase-btn svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .portal-transparency-showcase { padding: 28px 16px; border-radius: 18px; }
  .transparency-showcase-right { width: 100%; }
  .transparency-showcase-btn { width: 100%; justify-content: center; white-space: normal; padding: 13px 18px; font-size: 0.92rem; text-align: center; }
}

/* --------------------------------------------------------------------------
   7. TIMELINE DE DESENVOLVIMENTO
   -------------------------------------------------------------------------- */
.steps-progress-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-progress-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.status-completed { border-top: 4px solid #009540; }
.status-current { border-top: 4px solid #007a34; background: #f7fbf8; }
.status-future { border-top: 4px solid #cbd5e1; opacity: 0.88; }

.step-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-completed .step-status-chip { color: #009540; }
.status-current .step-status-chip { color: #007a34; }
.status-future .step-status-chip { color: #64748b; }
.step-status-chip svg { width: 14px; height: 14px; }

.step-name { font-size: 1.1rem; font-weight: 850; color: #0f172a; margin: 4px 0 0; }
.step-description { font-size: 0.88rem; color: #64748b; line-height: 1.5; margin: 0; }

@media (max-width: 1024px) { .steps-progress-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-progress-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   8. CANAIS DE CONTATO & HUB
   -------------------------------------------------------------------------- */
.portal-contact-hub {
  background: #ffffff;
  border: 1px solid #e2ece6;
  border-radius: 24px;
  padding: 38px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 40, 15, 0.03);
}

.contact-hub-header { margin-bottom: 24px; }
.contact-hub-title { font-size: 1.6rem; font-weight: 900; color: #092115; margin: 0 0 4px; }
.contact-hub-lead { font-size: 0.94rem; color: #64748b; margin: 0; }

.contact-hub-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-hub-card {
  background: #f7faf8;
  border: 1px solid #e2ece6;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.contact-hub-card:hover {
  background: #ffffff;
  border-color: #009540;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 149, 64, 0.1);
}

.hub-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hub-card-icon-wrap svg { width: 24px; height: 24px; }
.zap-wrap { background: #25D366; color: #ffffff; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35); }
.pin-wrap { background: #e6f4ea; color: #007a34; }

.hub-info-type { display: block; font-size: 0.74rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; margin-bottom: 2px; }
.hub-info-title { display: block; font-size: 1.05rem; color: #0f172a; font-weight: 850; margin-bottom: 4px; }
.hub-info-desc { font-size: 0.88rem; color: #64748b; line-height: 1.45; margin: 0 0 10px; }
.hub-info-action { font-size: 0.86rem; color: #007a34; font-weight: 800; text-decoration: none; }

@media (max-width: 760px) {
  .contact-hub-cards-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   PÁGINA DEDICADA DE CONTATO (contato.php)
   -------------------------------------------------------------------------- */
.contact-page-wrapper {
  padding: 30px 0 50px;
}

.contact-page-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #007a34;
  background: #e8f7ee;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.contact-main-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #092115;
  margin: 0 0 12px;
}

.contact-lead-text {
  font-size: 1.02rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.contact-cards-primary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.contact-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.contact-feature-card:hover {
  transform: translateY(-4px);
  border-color: #009540;
  box-shadow: 0 14px 32px rgba(0, 149, 64, 0.12);
}

.card-feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.card-feature-icon-box svg { width: 26px; height: 26px; }

.card-wa .card-feature-icon-box { background: #25D366; color: #ffffff; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.card-email .card-feature-icon-box { background: #e0f2fe; color: #0284c7; }
.card-address .card-feature-icon-box { background: #e8f7ee; color: #007a34; }

.card-feature-label { display: block; font-size: 0.72rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; color: #64748b; margin-bottom: 4px; }
.card-feature-title { font-size: 1.3rem; font-weight: 850; color: #0f172a; margin: 0 0 6px; }
.card-feature-val { font-size: 1.05rem; font-weight: 800; color: #007a34; margin: 0 0 8px; }
.card-feature-desc { font-size: 0.88rem; color: #64748b; line-height: 1.5; margin: 0 0 18px; }

.feature-btn-zap {
  background: #25D366 !important;
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  width: 100%;
}

.feature-btn-secondary {
  background: #f1f5f9 !important;
  color: #1e293b !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 12px;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  width: 100%;
}

.feature-btn-secondary:hover {
  background: #009540 !important;
  color: #ffffff !important;
  border-color: #009540 !important;
}

/* Redes Sociais Grandes */
.contact-social-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 34px;
  margin-bottom: 40px;
}

.social-section-header { margin-bottom: 20px; }
.social-section-title { font-size: 1.45rem; font-weight: 850; color: #0f172a; margin: 0; }

.social-links-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.social-big-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.social-big-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.social-big-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.social-big-icon svg { width: 24px; height: 24px; }
.insta-card .social-big-icon { background: #fdf2f8; color: #db2777; }
.face-card .social-big-icon { background: #eff6ff; color: #2563eb; }

.social-card-tag { display: block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; color: #64748b; }
.social-card-handle { display: block; font-size: 1.05rem; font-weight: 800; color: #0f172a; margin: 2px 0; }
.social-card-link { font-size: 0.84rem; font-weight: 750; color: #009540; }

/* Quadro Legal */
.contact-legal-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 34px;
}

.legal-box-header { margin-bottom: 20px; }
.legal-box-title { font-size: 1.45rem; font-weight: 850; color: #0f172a; margin: 0; }

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

.legal-data-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
}

.legal-k { display: block; font-size: 0.72rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.06em; color: #64748b; margin-bottom: 2px; }
.legal-v { display: block; font-size: 0.92rem; color: #0f172a; font-weight: 750; }

@media (max-width: 980px) {
  .contact-cards-primary-grid { grid-template-columns: 1fr; }
  .social-links-big-grid { grid-template-columns: 1fr; }
  .legal-data-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .legal-data-grid { grid-template-columns: 1fr; }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

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

@media (max-width: 380px) {
  .site-page main { padding: 0 10px 40px; }
  .hero-cinematic-banner { padding: 30px 12px 24px; }
  .hero-cinematic-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-btn-emerald, .hero-btn-glass { width: 100%; justify-content: center; font-size: 0.88rem; padding: 12px 14px; }
  .contact-hero-banner { padding: 30px 12px 24px; }
}



/* ==========================================================================
   Compatibilidade: convenção .btn / .badge / .form-control
   --------------------------------------------------------------------------
   As telas de Acessos, Assembleias e Portal foram escritas com a convenção
   Bootstrap-like (.btn, .btn-primary, .btn-outline, .badge, .form-control),
   que nunca existiu nesta folha. O resultado era botão cinza padrão do
   navegador e link sublinhado, destoando do resto do admin.

   Aqui essas classes são mapeadas para a MESMA linguagem visual de
   .button/.status já usada no sistema. Nenhuma marcação precisou mudar.
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.btn:disabled, .btn[disabled] { opacity: .5; cursor: not-allowed; }

.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

.btn-outline { background: var(--surface); color: var(--green-dark); border-color: #aec3b4; }
.btn-outline:hover { background: #eef4f0; border-color: var(--green); color: var(--green-dark); }

.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #8e2020; border-color: #8e2020; color: #fff; }

/* Ações dentro de tabela: compactas, mas ainda clicáveis no toque */
.btn-sm { min-height: 36px; padding: 6px 12px; font-size: .84rem; border-radius: 8px; gap: 6px; }

/* Botão sobre fundo escuro (barra do modo ao vivo, telão) */
.btn-on-dark,
.assembly-live .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.btn-on-dark:hover,
.assembly-live .btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

/* --------------------------------------------------------------- Campos */
.form-control {
  width: 100%;
  border: 1.5px solid #b9c8bf;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;           /* 16px evita o zoom automático no iOS */
  min-height: 46px;
  padding: 11px 12px;
  outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px #00954020; }
.form-control::placeholder { color: #94a3b8; }
select.form-control { cursor: pointer; }
textarea.form-control { min-height: 90px; resize: vertical; }

/* --------------------------------------------------------------- Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 4px 10px;
  background: #e9edf0;
  color: #47545e;
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .01em;
  white-space: nowrap;
}
.badge-success { background: #daf2e3; color: #12632e; }
.badge-warning { background: #fff2cb; color: #735b00; }
.badge-danger  { background: #fde8e8; color: #9b1c1c; }

/* Indicador de assembleia em andamento */
.badge-live { background: #daf2e3; color: #12632e; }
.badge-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: badge-pulso 1.6s ease-in-out infinite;
}
@keyframes badge-pulso { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) {
  .badge-live::before { animation: none; }
}

/* --------------------------------------------------------------- Alertas */
.alert-success { background: #e8f6ec; color: #176832; border: 1px solid #a8dcb7; border-radius: 10px; padding: 13px 14px; }
.alert-danger  { background: #fbeaea; color: #822323; border: 1px solid #edc1c1; border-radius: 10px; padding: 13px 14px; }
.alert-info    { background: #eef4f0; color: #1a4b30; border: 1px solid #bcd7c6; border-radius: 10px; padding: 13px 14px; }

/* ------------------------------------------------------------- Estrutura */
.admin-page-header { margin-bottom: 24px; }
.admin-page-header h1 { letter-spacing: -.02em; }

/* Tabelas das telas novas seguem o mesmo tratamento das existentes */
.admin-content table.table { width: 100%; border-collapse: collapse; }
.admin-content table.table th,
.admin-content table.table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: .89rem; }
.admin-content table.table th {
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); background: #f9fbfa; font-weight: 800;
}
.admin-content table.table tbody tr:hover { background: #fafcfb; }

@media (max-width: 620px) {
  .btn { width: 100%; }
  .btn-sm { width: auto; }
  .admin-page-header > div:last-child { width: 100%; }
}

/* Card do Portal quando ainda não foi liberado ao público.
   Mantém o mesmo desenho dos demais, mas sem afordância de clique. */
.modern-card-item.card-em-breve {
  cursor: default;
  opacity: .82;
  border-style: dashed;
}
.modern-card-item.card-em-breve:hover { transform: none; box-shadow: none; }
.card-item-link-mudo {
  color: #64736c;
  font-weight: 600;
  font-size: .88rem;
}

/* ==========================================================================
   SEÇÃO DE VÍDEO INSTITUCIONAL CINEMATOGRÁFICO
   ========================================================================== */
.portal-video-section {
  padding: 50px 0 60px;
  width: 100%;
}

.portal-video-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.portal-video-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.portal-video-header .project-heading {
  margin-bottom: 10px;
}

.portal-video-header p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

.cinematic-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(0, 50, 20, 0.18), 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 149, 64, 0.22);
  background: #03140c;
}

.video-cover-card {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 30px;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-cover-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 36, 21, 0.45) 0%, rgba(3, 20, 12, 0.75) 100%);
  transition: background 0.3s ease;
}

.video-cover-card:hover::before {
  background: linear-gradient(180deg, rgba(6, 36, 21, 0.3) 0%, rgba(3, 20, 12, 0.6) 100%);
}

.video-cover-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-cover-badge {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 234, 101, 0.4);
  color: #00ea65;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-cover-duration {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 750;
  padding: 5px 14px;
  border-radius: 999px;
}

.video-cover-center {
  position: relative;
  z-index: 2;
  align-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.video-play-btn-large {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ea65 0%, #009540 100%);
  color: #061e12;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(0, 234, 101, 0.6), 0 10px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-cover-card:hover .video-play-btn-large {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0, 234, 101, 0.85), 0 14px 30px rgba(0, 0, 0, 0.5);
}

.video-play-btn-large svg {
  width: 36px;
  height: 36px;
  fill: #061e12;
  margin-left: 4px;
}

.video-play-btn-large::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 234, 101, 0.5);
  animation: video-pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes video-pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.video-play-hint {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
}

.video-cover-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.video-cover-caption {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

