/* =============================================
   DESENVOLVESH - style.css
   ============================================= */

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

:root {
  --laranja:       #e8733a;
  --laranja-hover: #d4622a;
  --cinza-escuro:  #3a3a3a;
  --cinza-medio:   #666;
  --cinza-claro:   #f5f5f5;
  --branco:        #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--cinza-escuro);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  background: #fff;
}

/* garante fundo escuro no topo da home atrás do header transparente */
body.page-home { background: #111; }

a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; height: auto; display: block; }

/* ---- HEADER ---- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .4s;
}
/* Home: header semi-transparente sobre hero */
body.page-home #header { background: rgba(0, 0, 0, 0.048); }
body.page-home #header.scrolled { background: rgba(0, 0, 0, 0.548); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 86px; padding-top: 10px; padding-bottom: 10px;
}
.logo img { height: 84px; width: auto; }

/* Nav */
nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-menu {
  display: flex; align-items: center; list-style: none;
  flex-wrap: wrap; justify-content: flex-end; gap: 0;
  max-width: 860px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: var(--branco); font-family: 'Raleway',sans-serif;
  font-size: 14px; font-weight: 600; padding: 8px 16px;
  display: block; transition: color .3s;
  white-space: nowrap; letter-spacing: 0.2px;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--laranja); }
.nav-menu > li > a i { font-size: 10px; margin-left: 4px; }

/* Dropdown */
.nav-menu .dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 280px;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  border-top: 3px solid var(--laranja); z-index: 999; list-style: none;
}
.nav-menu > li:hover .dropdown { display: block; }
.nav-menu .dropdown li a {
  color: var(--cinza-escuro); font-size: 13px; padding: 12px 20px;
  display: block; transition: background .2s, color .2s;
  border-bottom: 1px solid #f0f0f0;
}
.nav-menu .dropdown li a:hover { background: var(--laranja); color: #fff; }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-search {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5); background: transparent;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s; font-size: 14px;
}
.btn-search:hover { border-color: var(--laranja); color: var(--laranja); }
.btn-login {
  background: transparent; border: 2px solid #fff; color: #fff;
  padding: 8px 22px; border-radius: 25px;
  font-family: 'Raleway',sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background .3s, color .3s, border-color .3s;
  display: inline-block; white-space: nowrap;
}
.btn-login:hover { background: var(--laranja); border-color: var(--laranja); color: #fff; }

/* Search bar */
#search-bar {
  display: none; background: rgba(0,0,0,.92); padding: 18px 30px;
}
#search-bar.active { display: block; }
#search-bar form { max-width: 600px; margin: 0 auto; display: flex; gap: 10px; }
#search-bar input {
  flex: 1; padding: 11px 20px; border: 2px solid var(--laranja);
  border-radius: 30px; background: transparent; color: #fff; font-size: 14px; outline: none;
}
#search-bar input::placeholder { color: rgba(255,255,255,.45); }
#search-bar button {
  background: var(--laranja); color: #fff; border: none;
  padding: 11px 24px; border-radius: 30px; cursor: pointer; font-size: 14px;
}

/* Mobile toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.menu-toggle span {
  display: block; width: 24px; height: 3px;
  background: #fff; border-radius: 3px; transition: transform .3s;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  background-image: url('../imagem/Flor-de-lotus-scaled.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
}
/* vignette: bordas escuras, centro visível → texto legível */
#hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.10) 0%, rgba(0,0,0,.62) 100%);
}
/* faixa escura: topo bem escuro cobre pixels claros da foto atrás do header */
#hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.20) 25%,
    rgba(0,0,0,.10) 55%,
    rgba(0,0,0,.55) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 20px; }
.hero-title {
  font-family: 'Raleway',sans-serif;
  font-size: clamp(40px,7vw,70px); font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: 18px;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}
.hero-title .destaque { color: var(--laranja); }
.hero-subtitle {
  font-size: clamp(15px,2.5vw,19px); color: rgba(255,255,255,.93);
  margin-bottom: 32px; font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-subtitle a { color: var(--laranja); font-weight: 700; }
.btn-hero {
  display: inline-block; border: 2px solid rgba(255,255,255,.9);
  color: #fff; padding: 13px 34px; border-radius: 30px;
  font-family: 'Raleway',sans-serif; font-weight: 700; font-size: 15px;
  transition: all .3s; backdrop-filter: blur(4px);
  background: rgba(255,255,255,.08);
}
.btn-hero:hover { background: var(--laranja); border-color: var(--laranja); color: #fff; }

/* ---- PRÓXIMOS EVENTOS ---- */
#proximos-eventos {
  background: #3a3a3a; padding: 80px 30px; text-align: center;
}
.section-sub { color: rgba(255,255,255,.6); margin-top: 12px; font-size: 15px; }

/* ---- SECTION TITLE ---- */
.section-title {
  font-family: 'Raleway',sans-serif;
  font-size: clamp(24px,3.5vw,38px); font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--cinza-escuro);
}
.section-title.branco { color: #fff; }
.section-title .destaque,
.section-title.branco .destaque { color: var(--laranja); }

/* ---- SECTION LABEL ---- */
.section-label {
  display: inline-block; font-family: 'Raleway',sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--laranja);
  border-bottom: 2px solid var(--laranja); padding-bottom: 4px; margin-bottom: 14px;
}

/* ---- PROPÓSITO ---- */
#proposito { padding: 90px 30px; background: #fff; }
.proposito-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.proposito-img-wrap { position: relative; }
.proposito-img-wrap img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 6px; display: block; position: relative; z-index: 1;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.proposito-img-accent {
  position: absolute; bottom: -16px; left: -16px;
  width: 60%; height: 60%; border: 3px solid var(--laranja);
  border-radius: 6px; z-index: 0;
}
.proposito-texto h2 {
  font-family: 'Raleway',sans-serif; font-size: 32px; font-weight: 800;
  color: var(--cinza-escuro); margin-bottom: 20px; line-height: 1.2;
}
.proposito-texto p {
  font-size: 15px; color: var(--cinza-medio); text-align: justify;
  margin-bottom: 14px; line-height: 1.9;
}
.proposito-texto strong { color: var(--laranja); }
.proposito-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0;
}
.proposito-badges span {
  background: #fff4ee; color: var(--laranja);
  border: 1px solid #ffd5be; border-radius: 20px;
  padding: 5px 14px; font-size: 12px; font-weight: 700;
  font-family: 'Raleway',sans-serif; letter-spacing: .3px;
}
.proposito-texto .assinatura {
  font-style: italic; font-weight: 700; color: var(--cinza-escuro);
  margin-top: 10px; font-size: 15px;
}

/* ---- EQUIPE ---- */
#equipe { padding: 90px 30px; background: #f7f7f7; }
.equipe-header { text-align: center; margin-bottom: 70px; }

.membro-wrap {
  max-width: 1120px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start;
}
.membro-wrap.membro-invertido { grid-template-columns: 1fr 320px; }
.membro-wrap.membro-invertido .membro-foto-col { order: 2; }
.membro-wrap.membro-invertido .membro-bio-col  { order: 1; }

/* Coluna foto */
.membro-foto-col { display: flex; flex-direction: column; gap: 0; }
.membro-foto-frame {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  position: relative;
}
.membro-foto-frame::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 0 3px rgba(232,115,58,.25);
  pointer-events: none;
}
.membro-foto-frame img {
  width: 100%; height: 380px; object-fit: cover; object-position: top;
  display: block; transition: transform .5s;
}
.membro-foto-frame:hover img { transform: scale(1.04); }
.membro-card-info {
  background: #fff; border-radius: 0 0 8px 8px;
  padding: 20px 22px 22px; border-top: 3px solid var(--laranja);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.membro-card-info h3 {
  font-family: 'Raleway',sans-serif; font-size: 18px; font-weight: 800;
  color: var(--cinza-escuro); margin-bottom: 12px;
}
.membro-especialidades { display: flex; flex-wrap: wrap; gap: 6px; }
.membro-especialidades span {
  background: #f0f0f0; color: var(--cinza-medio);
  border-radius: 4px; padding: 4px 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .3px;
}

/* Coluna bio */
.membro-bio-col p {
  font-size: 14.5px; color: var(--cinza-medio); line-height: 1.9;
  text-align: justify; margin-bottom: 14px;
}
.membro-bio-col p strong { color: var(--cinza-escuro); }
.membro-bio-col p em { font-style: italic; color: var(--cinza-escuro); }

/* Projetos */
.membro-projetos {
  margin-top: 28px; background: #fff;
  border-radius: 8px; padding: 26px 28px;
  border-left: 4px solid var(--laranja);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.membro-projetos h4 {
  font-family: 'Raleway',sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--laranja);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.projeto-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  align-items: start; margin-bottom: 16px;
}
.projeto-item:last-child { margin-bottom: 0; }
.projeto-num {
  font-family: 'Raleway',sans-serif; font-size: 22px; font-weight: 800;
  color: #e8e8e8; line-height: 1; padding-top: 2px;
}
.projeto-item p {
  font-size: 13.5px; color: var(--cinza-medio); line-height: 1.75;
  margin: 0 !important; text-align: left !important;
}

/* ---- NEWSLETTER ---- */
#newsletter { padding: 60px 30px; background: #fff; }
.newsletter-box {
  max-width: 900px; margin: 0 auto;
  border: 1px solid #e8e8e8; border-radius: 8px; padding: 50px 40px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.newsletter-box h2 {
  font-family: 'Raleway',sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--cinza-escuro); margin-bottom: 8px;
}
.newsletter-box > p { color: var(--cinza-medio); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 13px 20px;
  border: 1px solid #ddd; border-radius: 30px;
  font-size: 14px; font-family: 'Open Sans',sans-serif; outline: none;
  transition: border-color .3s;
}
.newsletter-form input:focus { border-color: var(--laranja); }
.newsletter-form input::placeholder { color: #aaa; }
.btn-newsletter {
  background: var(--laranja); color: #fff; border: none;
  padding: 13px 34px; border-radius: 30px;
  font-family: 'Raleway',sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: background .3s;
}
.btn-newsletter:hover { background: var(--laranja-hover); }
.msg-ok  { color: #2a7a2a; margin-top: 12px; font-weight: 600; font-size: 14px; }
.msg-err { color: #c00; margin-top: 12px; font-size: 14px; }

/* ---- NOTÍCIAS (HOME) ---- */
#noticias { padding: 80px 30px; background: #fff; }
.noticias-inner { max-width: 1150px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .subtitulo { color: var(--cinza-medio); font-size: 15px; margin-top: 8px; }
.noticias-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 35px; }
.noticia-card { display: flex; flex-direction: column; }
.noticia-thumb {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 4px; margin-bottom: 16px; transition: opacity .3s;
}
.noticia-thumb:hover { opacity: .82; }
.noticia-meta { font-size: 12.5px; color: var(--cinza-medio); margin-bottom: 9px; }
.noticia-meta .author { color: var(--laranja); }
.noticia-card h3 {
  font-family: 'Raleway',sans-serif; font-size: 15px; font-weight: 700;
  color: var(--cinza-escuro); margin-bottom: 10px; line-height: 1.4;
}
.noticia-card h3 a:hover { color: var(--laranja); }
.noticia-card > p { font-size: 13.5px; color: var(--cinza-medio); line-height: 1.7; text-align: justify; }

/* ---- FOOTER ---- */
footer { background: #2a2a2a; padding: 35px 30px; text-align: center; }
footer p { color: #aaa; font-size: 13px; }
footer a { color: var(--laranja); }
footer a:hover { color: #fff; }
.footer-inner { max-width: 1200px; margin: 0 auto; }

/* ---- SCROLL TOP ---- */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; background: var(--laranja); color: #fff;
  border: none; border-radius: 50%; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s, background .3s; z-index: 999;
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--laranja-hover); }

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(22,22,22,.97); color: #ccc;
  padding: 18px 30px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; z-index: 9999; flex-wrap: wrap;
}
#cookie-banner p { font-size: 13px; flex: 1; }
#cookie-banner a { color: var(--laranja); }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie { padding: 9px 20px; border-radius: 5px; border: none; font-size: 12.5px; font-weight: 700; cursor: pointer; }
.btn-aceitar { background: var(--laranja); color: #fff; }
.btn-config  { background: #555; color: #fff; }

/* ---- PAGE HERO (páginas internas) ---- */
.page-hero {
  background: #2a2a2a; padding: 140px 30px 70px; text-align: center;
}
.page-hero h1 {
  font-family: 'Raleway',sans-serif; font-size: clamp(26px,4vw,42px);
  font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 3px;
}
.page-hero h1 .destaque { color: var(--laranja); }
.page-hero .breadcrumb {
  margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.5);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: var(--laranja); }
.page-hero .breadcrumb span { margin: 0 6px; }

/* ---- BLOG / NOTÍCIAS (página) ---- */
.blog-wrapper {
  max-width: 1150px; margin: 0 auto; padding: 60px 30px 80px;
  display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start;
}

/* Post list */
.post-list { display: flex; flex-direction: column; gap: 50px; }
.post-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 0;
  border-bottom: 1px solid #ebebeb; padding-bottom: 46px;
}
.post-number {
  font-family: 'Raleway',sans-serif; font-size: 36px; font-weight: 800;
  color: #e0e0e0; line-height: 1; padding-top: 4px; min-width: 48px;
}
.post-body { display: flex; flex-direction: column; gap: 16px; }
.post-thumb-wrap { overflow: hidden; border-radius: 4px; }
.post-thumb {
  width: 100%; max-height: 340px; object-fit: cover;
  transition: transform .4s; display: block;
}
.post-thumb:hover { transform: scale(1.03); }
.post-meta { font-size: 12.5px; color: var(--cinza-medio); }
.post-meta .cat { color: var(--laranja); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-right: 8px; }
.post-meta .sep { margin: 0 6px; color: #ccc; }
.post-item h2 {
  font-family: 'Raleway',sans-serif; font-size: 20px; font-weight: 700;
  color: var(--cinza-escuro); line-height: 1.35;
}
.post-item h2 a:hover { color: var(--laranja); }
.post-excerpt { font-size: 14.5px; color: var(--cinza-medio); line-height: 1.85; text-align: justify; }
.btn-leia-mais {
  display: inline-block; color: var(--laranja); font-family: 'Raleway',sans-serif;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 2px solid var(--laranja); padding-bottom: 2px;
  transition: color .3s, border-color .3s; align-self: flex-start;
}
.btn-leia-mais:hover { color: var(--laranja-hover); border-color: var(--laranja-hover); }

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget { margin-bottom: 40px; }
.sidebar-widget h3 {
  font-family: 'Raleway',sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--cinza-escuro);
  padding-bottom: 10px; border-bottom: 2px solid var(--laranja); margin-bottom: 18px;
}
.sidebar-cats ul { list-style: none; }
.sidebar-cats ul li { border-bottom: 1px solid #f0f0f0; }
.sidebar-cats ul li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; font-size: 13.5px; color: var(--cinza-medio);
  transition: color .3s;
}
.sidebar-cats ul li a:hover { color: var(--laranja); }
.sidebar-cats ul li a span { font-size: 12px; color: #bbb; }
.recent-posts { display: flex; flex-direction: column; gap: 16px; }
.recent-post { display: grid; grid-template-columns: 70px 1fr; gap: 12px; align-items: center; }
.recent-post img { width: 70px; height: 56px; object-fit: cover; border-radius: 3px; }
.recent-post-info h4 {
  font-family: 'Raleway',sans-serif; font-size: 13px; font-weight: 700;
  color: var(--cinza-escuro); line-height: 1.3; margin-bottom: 3px;
}
.recent-post-info h4 a:hover { color: var(--laranja); }
.recent-post-info span { font-size: 11.5px; color: #aaa; }

/* ---- EVENTOS / AGENDA ---- */
.agenda-wrapper {
  max-width: 1000px; margin: 0 auto; padding: 60px 30px 80px;
}
.agenda-filter { margin-bottom: 36px; }
.agenda-filter label {
  font-family: 'Raleway',sans-serif; font-size: 13px; font-weight: 700;
  color: var(--cinza-escuro); margin-right: 10px; text-transform: uppercase; letter-spacing: 1px;
}
.agenda-filter select {
  padding: 9px 16px; border: 1px solid #ddd; border-radius: 5px;
  font-size: 13.5px; font-family: 'Open Sans',sans-serif;
  color: var(--cinza-escuro); outline: none; cursor: pointer;
  transition: border-color .3s;
}
.agenda-filter select:focus { border-color: var(--laranja); }

.evento-list { display: flex; flex-direction: column; gap: 30px; }
.evento-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px;
  background: #fff; border: 1px solid #ebebeb; border-radius: 6px;
  padding: 28px; align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: box-shadow .3s;
}
.evento-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.evento-date {
  text-align: center; min-width: 64px;
}
.evento-date .dia {
  font-family: 'Raleway',sans-serif; font-size: 42px; font-weight: 800;
  color: var(--laranja); line-height: 1;
}
.evento-date .mes {
  font-family: 'Raleway',sans-serif; font-size: 14px; font-weight: 700;
  color: var(--cinza-medio); text-transform: uppercase; letter-spacing: 2px;
  margin-top: 2px;
}
.evento-info h2 {
  font-family: 'Raleway',sans-serif; font-size: 20px; font-weight: 700;
  color: var(--cinza-escuro); margin-bottom: 8px; line-height: 1.3;
}
.evento-horario {
  font-size: 13.5px; color: var(--laranja); font-weight: 600; margin-bottom: 10px;
}
.evento-horario i { margin-right: 5px; }
.evento-desc { font-size: 13.5px; color: var(--cinza-medio); line-height: 1.75; margin-bottom: 14px; }
.evento-local { font-size: 12.5px; color: var(--cinza-medio); margin-bottom: 16px; }
.evento-local i { color: var(--laranja); margin-right: 5px; }
.btn-detalhes {
  display: inline-block; background: var(--laranja); color: #fff;
  padding: 9px 24px; border-radius: 25px;
  font-family: 'Raleway',sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background .3s;
}
.btn-detalhes:hover { background: var(--laranja-hover); color: #fff; }
.evento-img {
  width: 220px; height: 160px; object-fit: cover; border-radius: 5px; flex-shrink: 0;
}
.evento-empty {
  text-align: center; padding: 80px 20px; color: var(--cinza-medio);
  font-size: 15px; line-height: 1.9;
}
.evento-empty i { font-size: 52px; color: var(--laranja); opacity: .35; margin-bottom: 22px; display: block; }
.evento-empty p { margin-bottom: 8px; }
.evento-empty a { color: var(--laranja); font-weight: 600; }
.evento-empty a:hover { text-decoration: underline; }

/* ---- CONTATO ---- */
.contato-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  max-width: 1100px; margin: 60px auto; padding: 0 30px 80px;
}
.contato-info h2, .contato-form-wrap h2 {
  font-family: 'Raleway',sans-serif; font-size: 22px; font-weight: 700;
  color: var(--cinza-escuro); margin-bottom: 20px;
}
.contato-info p { font-size: 14px; color: var(--cinza-medio); line-height: 1.85; margin-bottom: 14px; }
.contato-info .info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contato-info .info-item i { color: var(--laranja); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contato-info .info-item p { margin: 0; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--cinza-escuro); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid #ddd; border-radius: 6px;
  font-size: 14px; font-family: 'Open Sans',sans-serif; outline: none;
  transition: border-color .3s; color: var(--cinza-escuro); background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--laranja); }
.form-group textarea { height: 150px; resize: vertical; }
.btn-submit {
  background: var(--laranja); color: #fff; border: none;
  padding: 13px 35px; border-radius: 30px;
  font-family: 'Raleway',sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .3s; width: 100%;
}
.btn-submit:hover { background: var(--laranja-hover); }

/* ---- POLÍTICA ---- */
.page-content { max-width: 900px; margin: 60px auto; padding: 0 30px 80px; }
.page-content h2 {
  font-family: 'Raleway',sans-serif; font-size: 20px; font-weight: 700;
  color: var(--cinza-escuro); margin: 28px 0 12px;
}
.page-content p { font-size: 15px; color: var(--cinza-medio); line-height: 1.85; margin-bottom: 16px; text-align: justify; }
.page-content ul { padding-left: 22px; margin-bottom: 16px; }
.page-content ul li { font-size: 14.5px; color: var(--cinza-medio); margin-bottom: 7px; line-height: 1.7; }

/* ---- SINGLE POST ---- */
.page-hero-post { padding: 100px 30px 40px; }

.single-post { min-width: 0; }

.single-post-cover {
  border-radius: 6px; overflow: hidden; margin-bottom: 28px;
}
.single-post-cover img {
  width: 100%; max-height: 460px; object-fit: cover; display: block;
}

.single-post-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 18px;
  margin-bottom: 18px; font-size: 13px; color: var(--cinza-medio);
}
.single-cat {
  background: var(--laranja); color: #fff;
  padding: 4px 14px; border-radius: 20px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
}
.single-date i, .single-author i { margin-right: 5px; color: var(--laranja); }

.single-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 800;
  color: var(--cinza-escuro); line-height: 1.25; margin-bottom: 20px;
}

.single-excerpt {
  font-size: 16px; color: var(--cinza-medio); line-height: 1.8;
  font-style: italic; border-left: 3px solid var(--laranja);
  padding-left: 18px; margin-bottom: 28px;
}

.single-content {
  font-size: 15.5px; color: #444; line-height: 1.9;
  border-top: 1px solid #eee; padding-top: 28px;
}
.single-content a { color: var(--laranja); text-decoration: underline; }
.single-content a:hover { color: var(--laranja-hover); }

.single-footer {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid #eee;
}
.btn-voltar {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--laranja); font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 2px solid var(--laranja); padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.btn-voltar:hover { color: var(--laranja-hover); border-color: var(--laranja-hover); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .proposito-inner { grid-template-columns: 1fr; gap: 50px; }
  .proposito-img-accent { display: none; }
  .membro-wrap,
  .membro-wrap.membro-invertido { grid-template-columns: 1fr; gap: 30px; }
  .membro-wrap.membro-invertido .membro-foto-col,
  .membro-wrap.membro-invertido .membro-bio-col { order: unset; }
  .membro-foto-frame img { height: 280px; }
  .noticias-grid { grid-template-columns: repeat(2,1fr); }
  .contato-grid { grid-template-columns: 1fr; }
  .blog-wrapper { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .evento-card { grid-template-columns: auto 1fr; }
  .evento-img { display: none; }
}
@media (max-width: 768px) {
  .header-inner { height: 65px; padding: 0 20px; }
  .nav-menu {
    display: none; position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.97); flex-direction: column;
    padding: 15px; gap: 0; overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
  .nav-menu .dropdown {
    position: static; display: none; box-shadow: none;
    border: none; background: rgba(255,255,255,.06);
  }
  .nav-menu > li.open .dropdown { display: block; }
  .nav-menu .dropdown li a { color: rgba(255,255,255,.7); padding-left: 28px; }
  .menu-toggle { display: flex; }
  .header-icons .btn-search { display: none; }
  .pessoa-foto-float, .pessoa-foto-float.right {
    float: none; width: 100%; margin: 0 0 24px 0;
  }
  .noticias-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  #hero { background-attachment: scroll; }
  .newsletter-box { padding: 35px 20px; }
  .post-item { grid-template-columns: 1fr; }
  .post-number { display: none; }
  .evento-card { grid-template-columns: auto 1fr; gap: 16px; padding: 20px; }
  .evento-date .dia { font-size: 32px; }
}
