/* ==============================
   RESET BÁSICO
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: none;
}

html {
  scroll-behavior: smooth;  /* ← Adicione esta linha */
}

body {
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
}

/* ==============================
   TOPO: LOGO + DATA
============================== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  background-color: #0c0c0c;
  color: #ffffff;
}
.top-header .logo { font-size: 1.8rem; font-weight: 700; }
.top-header .date { font-size: 0.9rem; }

/* ==============================
   HERO
============================== */
.hero { position: relative; text-align: center; margin-bottom: 20px; }
.hero-img { width: 100%; height: 400px; object-fit: cover; }
.hero-text {
  position: absolute;
  top: 14%;
  left: 58%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  animation: fadeInUp 1s forwards;
}
.hero-text h1 { font-size: 2rem; margin-bottom: 10px; }

/* hero-extra */
.hero-extra { margin-top: 6px; text-align: center; color: #ffffff; }
.hero-extra .hero-title { font-size: 2.2rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.hero-extra .hero-subtitle { font-size: 1.1rem; color: #e0e0e0; margin-bottom: 10px; line-height: 1.3; }
.hero-extra .hero-subtitle span { font-size: 0.95rem; color: #cccccc; }
.youtube-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: #ff0000; color: #ffffff; font-weight: 700; font-size: 1rem; border-radius: 6px; text-decoration: none; cursor: pointer; }
.youtube-btn:hover { background: #cc0000; }
.yt-icon { font-size: 1.2rem; line-height: 0; }

/* animation */
@keyframes fadeInUp { to { opacity:1; transform: translateY(0); } }

/* ==============================
   MENU PRINCIPAL ABAIXO DA HERO
============================== */
.main-menu {
  background-color: #111111;
  position: relative;
  margin-top: -50px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 5px;
}
.main-menu ul {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
  padding: 10px 0;
  margin: 0;
}
.main-menu ul li a { color: #ffffff; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.main-menu ul li a:hover { color: #d62828; text-decoration: underline; }

/* ==============================
   BREAKING NEWS BAR (MARQUEE)
============================== */
.breaking-news-bar {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 1200px;
  margin: 18px auto 18px 40px;
  padding: 6px 12px;
}
.breaking-left { display:flex; align-items:center; gap:8px; white-space:nowrap; }
.breaking-tag { background:#d62828; color:#fff; padding:6px 10px; font-weight:700; border-radius:4px; font-size:0.85rem; }
.breaking-divider { color:#333; opacity:0.8; }
.breaking-title { font-weight:700; color:#111; font-size:0.95rem; white-space:nowrap; }
.breaking-marquee { overflow: hidden; flex:1; position:relative; background: transparent; }
.marquee-track { display:flex; gap:30px; align-items:center; white-space:nowrap; will-change:transform; animation: marquee 24s linear infinite; }
.marquee-item { display:inline-block; padding:6px 0; font-size:0.95rem; color:#111; }
.marquee-item a { color:#111; text-decoration:none; font-weight:600; }
.marquee-item a:hover { color:#d62828; text-decoration:underline; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==============================
   MAIN CONTENT
============================== */
main {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  max-width:1200px;
  margin:40px 0 40px 10px;
  padding:0 20px;
}
.posts { flex:3; display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; }
.post-card { background:#f9f9f9; border-radius:8px; overflow:hidden; box-shadow:0 2px 6px rgba(0,0,0,0.1); display:flex; flex-direction:column; transition: transform .3s, box-shadow .3s; }
.post-card:hover { transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.15); }
.post-card img { width:100%; height:180px; object-fit:cover; }
.post-card .category { font-size:0.8rem; color:#d62828; margin:10px 15px 0; font-weight:600; }
.post-card .post-title { margin:5px 15px; font-size:1.2rem; }
.post-card .post-title a { text-decoration:none; color:#111; }
.post-card .post-title a:hover { color:#d62828; }
.post-card .meta { font-size:0.75rem; color:#666; margin:0 15px 10px; }

/* ==============================
   SIDEBAR
============================== */
.sidebar { flex:1; min-width:250px; display:flex; flex-direction:column; gap:20px; }
.sidebar .search-box input { width:100%; padding:8px 10px; border-radius:5px; border:1px solid #ccc; }
.sidebar .tag-cloud a { display:inline-block; margin:5px 5px 0 0; background:#e5e5e5; color:#111; padding:5px 10px; border-radius:5px; text-decoration:none; font-size:0.8rem; }
.sidebar .tag-cloud a:hover { background:#d62828; color:#fff; }

/* ==============================
   ABOUT SECTION
============================== */
.about { background:#0c0c0c; color:#fff; padding:50px 20px; text-align:center; margin:40px 0; border-radius:8px; }
.about h2 { font-size:2rem; margin-bottom:15px; }
.about p { max-width:800px; margin:10px auto; font-size:1rem; line-height:1.5; }

/* ==============================
   SOCIAL LINKS / FOOTER
============================== */
.social-links { text-align:center; margin:40px 0; }
.social-links a { margin:0 10px; display:inline-block; transition:transform .3s,filter .3s; }
.social-links a:hover { transform:scale(1.1); filter:drop-shadow(2px 2px 5px rgba(0,0,0,0.2)); }

footer { background:#111; color:#fff; text-align:center; padding:20px; font-size:0.85rem; }

/* ==============================
   UTILITÁRIOS
============================== */
img { display:block; max-width:100%; }

/* ==============================
   HERO – TEXTO PRETO (CORREÇÃO FINAL)
============================== */
.hero-text,
.hero-text h1,
.hero-extra,
.hero-extra .hero-title,
.hero-extra .hero-subtitle,
.hero-extra .hero-subtitle span { color:#000 !important; text-shadow:none; }

/* ==============================
   FEATURED SECTION – AJUSTADA
============================== */
.featured-section {
  display:flex;
  gap:20px;
  margin:10px 0 50px 40px; /* topo 50px, direita 0, baixo 50px, esquerda 40px */
  max-width:1400px;
  align-items:flex-start;
}

.featured-list {
  flex:0 0 250px;
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-left:0; /* GARANTE A ESQUERDA TOTAL */
  overflow-y:auto;      /* permite scroll vertical */
  max-height: 335px;    /* altura igual ao card principal */
  scroll-behavior:smooth;
}

.featured-list-item {
  padding:14px;
  background:#111;
  border-left:4px solid transparent;
  display:flex;
  gap:12px;
  cursor:pointer;
  transition:all 0.3s ease;
}
.featured-list-item.active,
.featured-list-item:hover { background:#1a1a1a; border-left-color:#d62828; }
.featured-list-item .rank { font-size:1.4rem; font-weight:700; color:#d62828; }
.featured-list-item .category { font-size:0.75rem; color:#aaa; text-transform:uppercase; margin-bottom:4px; }
.featured-list-item h4 { font-size:0.9rem; color:#fff; font-weight:600; line-height:1.3; }

.featured-main {
  flex:0 0 500px;
  height:335px;
  position:relative;
  background-size:cover;
  background-position:center;
  border-radius:10px;
  overflow:hidden;
}
.featured-main .overlay { position:absolute; inset:0; background:rgba(0,0,0,0.35); }
.featured-main .featured-content { position:absolute; bottom:10px; left:10px; right:10px; color:#fff; }

.featured-cards-carousel { flex:1 1 auto; display:flex; align-items:center; position:relative; }
.featured-cards-track { display:flex; gap:16px; overflow-x:auto; scroll-behavior:smooth; padding:10px 0; }
.featured-card.featured-secondary { flex:0 0 253px; height:315px; border-radius:10px; overflow:hidden; background-size:cover; background-position:center; position:relative; cursor:pointer; transition:transform 0.3s; }
.featured-card.featured-secondary:hover { transform:scale(1.05); }
.featured-card .overlay { position:absolute; inset:0; background:rgba(0,0,0,0.25); }
.featured-card .featured-content { position:absolute; bottom:10px; left:10px; right:10px; color:#fff; }

.featured-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  font-size:1.5rem;
  padding:6px 12px;
  cursor:pointer;
  border-radius:4px;
  z-index:10;
}
.featured-nav.prev { left:0; }
.featured-nav.next { right:0; }
.featured-nav:hover { background:rgba(214,40,40,0.85); }

.featured-cards-track::-webkit-scrollbar { display:none; }
.featured-cards-track { -ms-overflow-style:none; scrollbar-width:none; }

@media (max-width:900px){
  .featured-section{ flex-direction:column; }
  .featured-main{ width:100%; height:300px; margin:20px 0; }
  .featured-cards-track{ padding:0; }
}

/* ==============================
   SOBRE PREMIUM
============================== */

.about-premium {
  background: #fff; /* Fundo branco */
  color: #333; /* Texto escuro */
  padding: 80px 20px;
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-intro h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #000; /* Título em preto */
}

.about-lead {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555; /* Texto principal em cinza escuro */
}

/* HISTÓRIA */
.about-history {
  max-width: 900px;
  margin: 0 auto 70px;
  font-size: 1rem;
  line-height: 1.8;
  color: #666; /* Texto em cinza claro */
}

/* CARDS INSTITUCIONAIS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.about-card {
  background: #f5f5f5; /* Fundo levemente cinza */
  border-left: 4px solid var(--accent);
  padding: 20px;
  transition: background-color 0.3s ease;
}

.about-card:hover {
  background: #e9e9e9; /* Efeito hover suave */
}

.card-title {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #999; /* Títulos em cinza */
  margin-bottom: 8px;
  display: block;
}

.about-card strong {
  font-size: 1.2rem;
  color: #333; /* Texto forte em escuro */
}

/* IMPACTO */
.about-impact {
  background: #f9f9f9;
  padding: 50px;
}

.about-impact h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333; /* Título em preto */
}

.impact-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: #666; /* Texto mais leve */
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.impact-list li {
  padding: 12px;
  background: #e9e9e9;
  border-left: 3px solid var(--accent);
  font-size: 1.1rem;
}

.impact-highlight {
  font-size: 1.1rem;
  background: #f5f5f5;
  padding: 25px;
  border: 1px solid #ddd;
  color: #333;
}


}

/* ==============================
   FOOTER – VISITORS
============================== */

.site-footer {
  background: #fff;
  padding: 40px 20px 30px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.visitors-box {
  background: #fff;
  display: inline-block;
  padding: 20px 25px;
  margin-bottom: 20px;
}

.visitors-box h4 {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #000;
}

.visitors-box img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.footer-copy {
  font-size: 0.85rem;
  color: #555;
}


/* ==============================
   IMAGENS BREAKNEWS
============================== */
.marquee-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.marquee-item img {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.marquee-item .news-text {
  font-size: 0.95rem;
}

.marquee-item em {
  color: #888;
  font-style: normal;
  font-size: 0.85rem;
}


.home-videos {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ==============================
   VÍDEOS
============================== */
.home-videos h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 1px;
}

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

.videos-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
  
  .events-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}


/* =======================================
   Estilo dos cards de eventos (herdando modalidade-card)
======================================= */
.event-card {
  /* Herdando tudo que modalide-card tem */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.event-card img {
  width: 100%;
  display: block;
}

.event-card .event-content {
  padding: 16px;
}

.event-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
}

.event-card a {
  display: inline-block;
  margin-top: 8px;
  color: #d62828;
  text-decoration: none;
  font-weight: 500;
}

.event-card a:hover {
  text-decoration: underline;
}


/* =====================================================
   TRANSPARÊNCIA – CSS ISOLADO
   NÃO ALTERA NENHUM ESTILO GLOBAL
===================================================== */

.transparency-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* INTRODUÇÃO */
.transparency-page .transparency-intro {
  text-align: center;
  margin-bottom: 60px;
}

.transparency-page .transparency-intro h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}

.transparency-page .transparency-intro p {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: 18px;
  color: #444;
}

/* NAVEGAÇÃO INTERNA */
.transparency-page .transparency-nav {
  margin-bottom: 70px;
}

.transparency-page .transparency-nav ul {
  display: flex;
  justify-content: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.transparency-page .transparency-nav a {
  padding: 10px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: all 0.25s ease;
}

.transparency-page .transparency-nav a:hover {
  background: #d62828;
  border-color: #d62828;
  color: #fff;
}

/* SEÇÕES */
.transparency-page .transparency-section {
  margin-bottom: 80px;
  padding-bottom: 70px;
  border-bottom: 1px solid #eee;
}

.transparency-page .transparency-section:last-child {
  border-bottom: none;
}

.transparency-page .transparency-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.transparency-page .transparency-section p {
  font-size: 17px;
  color: #444;
  max-width: 900px;
  margin-bottom: 18px;
}

.transparency-page .transparency-section ul {
  padding-left: 20px;
}

.transparency-page .transparency-section ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* ======================================
   CORREÇÃO DO MAIN – PÁGINA TRANSPARÊNCIA
====================================== */

.page-transparency main {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* CONTAINER REAL DA TRANSPARÊNCIA */
.page-transparency .transparency-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* ======================================
   TRANSPARÊNCIA – PARCEIROS
   CSS ISOLADO
====================================== */

.transparency-page .transparency-partners {
  text-align: center;
}

.transparency-page .transparency-partners p {
  max-width: 820px;
  margin: 0 auto 30px;
}

.transparency-page .partners-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
}

.transparency-page .partner-card {
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  padding: 30px 20px;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.transparency-page .partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.transparency-page .partner-card img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.transparency-page .partner-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.transparency-page .partner-card span {
  font-size: 14px;
  color: #666;
}

/* ======================================
   TRANSPARÊNCIA – PARCEIROS (CENTRALIZAÇÃO)
====================================== */

.transparency-page .partners-grid {
  margin-left: auto;
  margin-right: auto;
}

/* ======================================
   CORREÇÃO DO MAIN – PÁGINA MODALIDADES
====================================== */

.page-modalidades main {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* CONTAINER REAL DA PÁGINA MODALIDADES */
.page-modalidades .modalidades-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.modalidades-page {
max-width: 1200px;
margin: 80px auto;
padding: 0 20px;
}

.modalidades-intro {
text-align: center;
margin-bottom: 70px;
}

.modalidades-intro h2 {
font-size: 2.4rem;
margin-bottom: 20px;
}

.modalidades-intro p {
max-width: 820px;
margin: 0 auto;
font-size: 1.1rem;
color: #555;
}

.modalidades-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.modalidade-card {
background: #fff;
border-radius: 10px;
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modalidade-card:hover {
transform: translateY(-6px);
box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.modalidade-images {
  display: flex;
  flex-direction: column;
  gap: 8px; /* espaçamento mínimo entre as imagens */
  padding: 8px; /* opcional, dá respiro nas bordas */
}

.modalidade-images img {
width: 100%;
height: 200px;
object-fit: cover;
}


.modalidade-content {
padding: 24px;
}

.modalidade-content h3 {
font-size: 1.5rem;
margin-bottom: 12px;
}

.modalidade-content p {
font-size: 1rem;
color: #555;
line-height: 1.6;
}

.destaque-social {
border-top: 4px solid #d62828;
}

@media (max-width: 600px) {
.modalidade-images img {
height: 160px;
}
}

/* ==============================
   VISITORS – CENTRALIZAÇÃO
============================== */

.visitors-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.visitors-box {
  margin: 0 auto;
}

/* ==============================
   EVENTOS – GRID DE CARDS
============================== */

.events-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* ==============================
   EVENTOS – 4 COLUNAS EM TELAS GRANDES
============================== */

@media (min-width: 1400px) {
  .events-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==============================
   EVENTOS + VÍDEO LATERAL
============================== */

.events-with-video {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1600px;
  margin: 60px auto;
  padding: 0 20px;
}

/* mantém eventos como estão */
.events-with-video .events-section {
  flex: 1 1 1200px;
  margin: 0;
  padding: 0;
}

/* coluna do vídeo */
.events-video {
  flex: 0 0 360px;
  position: sticky;
  top: 120px;
}

/* iframe responsivo */
.events-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* ==============================
   CARD DE VÍDEO DENTRO DO GRID
============================== */

.event-video-card {
  grid-column-start: 4;
}

.event-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

@media (min-width: 1400px) {
  .event-video-card {
    grid-column: 4 / 5;
  }
}

.youtube-sidebar {
  position: absolute;
  top: 1013px; /* ajusta fino depois */
  right: 100px;
  width: 380px;
  
    display: flex;
  flex-direction: column;
  gap: 60px; /* 👈 👉 AQUI É O AJUSTE */
}

.youtube-sidebar iframe {
  width: 100%;
  height: 215px; /* 16:9 */
  border-radius: 12px;
}


.local-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
  
  /* ==============================
   CONTATO PREMIUM
============================== */

.contact-premium {
  background: #fff;
  color: #333;
  padding: 80px 20px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-eyebrow {
  display: inline-block;
  color: #d62828;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.contact-lead {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: #f5f5f5;
  border-left: 4px solid #d62828;
  padding: 24px;
  transition: background-color 0.3s ease;
}

.contact-card:hover {
  background: #ececec;
}

.contact-card .card-title {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 10px;
  display: block;
}

.contact-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.contact-card a {
  color: #d62828;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* ==============================
   FORMULÁRIO DE CONTATO
============================== */

.contact-form-section {
  background: #f9f9f9;
  padding: 70px 40px;
  border-radius: 18px;
  margin-bottom: 80px;
}

.contact-form-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-lead {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d62828;
  box-shadow: 0 0 0 2px rgba(214,40,40,0.15);
}

.form-btn {
  grid-column: span 2;
  padding: 16px;
  background: #d62828;
  color: #fff;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.form-btn:hover {
  background: #b71f1f;
  transform: translateY(-2px);
}

/* ==============================
   WHATSAPP FLUTUANTE
============================== */

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

/* ==============================
   GALERIA PREMIUM
============================== */

.gallery-premium {
  background: #fff;
  padding: 90px 20px;
}

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.gallery-header {
  text-align: center;
  margin-bottom: 80px;
}

.gallery-eyebrow {
  display: inline-block;
  color: #d62828;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #000;
}

.gallery-lead {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* SEÇÕES */
.gallery-section {
  margin-bottom: 90px;
}

.gallery-section h3 {
  font-size: 1.8rem;
  margin-bottom: 26px;
  border-left: 4px solid #d62828;
  padding-left: 14px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}

/* FRASE FINAL */
.gallery-signature {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #444;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

/* ==============================
   EQUIPE PREMIUM
============================== */
.team-premium {
  background: #fff;
  color: #333;
  padding: 80px 20px;
}

.team-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.team-intro {
  text-align: center;
  margin-bottom: 60px;
}

.team-eyebrow {
  display: inline-block;
  color: #d62828;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.team-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.team-lead {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* GRID DE CARDS */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD INDIVIDUAL */
.team-card {
  background: #f5f5f5;
  border-left: 4px solid #d62828;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-content {
  padding: 20px;
}

.team-content h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 12px;
}

.team-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.team-socials {
  display: flex;
  gap: 10px;
}

.team-socials a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.team-socials a:hover img {
  transform: scale(1.2);
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .team-card img {
    height: 200px;
  }
}

/* ==============================
   AGENDA
============================== */


.agenda-premium {
  background: #fff;
  color: #333;
  padding: 80px 20px;
}

.agenda-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.agenda-intro {
  text-align: center;
  margin-bottom: 60px;
}

.agenda-eyebrow {
  display: inline-block;
  color: #d62828;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.agenda-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.agenda-lead {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

.agenda-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.agenda-card {
  background: #f5f5f5;
  border-left: 4px solid #d62828;
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agenda-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.agenda-date {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d62828;
  margin-bottom: 10px;
}

.agenda-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.agenda-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.agenda-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #d62828;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.agenda-btn:hover {
  background: #b71f1f;
  transform: translateY(-2px);
}

/* ==============================
   TRANSPARÊNCIA – REGISTROS / DOCUMENTOS
============================== */
.transparency-records {
  max-width: 1200px;
  margin: 40px auto;
}

.records-search {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 10px;
}

.records-search input {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 250px;
}

.records-search button {
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: #d62828;
  color: #fff;
  cursor: pointer;
}

.records-search button:hover {
  background: #b71c1c;
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.record-card {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.record-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.record-card span {
  font-size: 0.95rem;
  color: #333;
}

.record-card .record-date {
  font-weight: 600;
  color: #d62828;
}

.record-card .record-item {
  font-weight: 500;
}

.record-card .record-content a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.record-card .record-content a:hover {
  color: #d62828;
  text-decoration: underline;
}

/* ==============================
   TEXTO INTERMEDIÁRIO
============================== */

.events-divider {
  text-align: center;
  margin-top: 0px; /* aproxima do topo */
  margin-bottom: 40px; /* mantém espaçamento inferior */
}

.events-divider h2 {
  font-size: 28px;
  color: #d32f2f; /* vermelho para combinar com os títulos dos cards */
  margin-bottom: 8px;
  font-weight: bold;
}

.events-divider p {
  font-size: 18px;
  color: #333;
  margin: 0;
}

/* ==============================
   SIDEBAR – TEXTO "CURTA E COMPARTILHE"
   Replica visual do events-divider
============================== */

.youtube-sidebar .local-video h2 {
  font-size: 28px;
  color: #d32f2f; /* vermelho para combinar com os títulos dos cards */
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
}

.youtube-sidebar .local-video p {
  font-size: 18px;
  color: #333;
  text-align: center;
  margin-top: 6px;
}

/* ==============================
   CURTA E COMPARTILHE + JOINHA
============================== */

.like-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.like-text {
  text-align: center;
}

/* joinha */
.like-icon {
  width: 120px;        /* ajuste se quiser maior/menor */
  height: auto;
  display: block;
  opacity: 0.85;
}

