/* ================================================
   COPMS - Redesign Completo
   Arquivo: wwwroot/css/copms-novo.css
   ================================================ */

/* ===================== RESET & VARS ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --verde-escuro:  #0f3d2e;
  --verde-medio:   #1a5f45;
  --verde-vivo:    #2e8b57;
  --verde-claro:   #4aaf7d;
  --dourado:       #c8973d;
  --dourado-claro: #e2b96a;
  --cinza-bg:      #f4f7f5;
  --cinza-borda:   #d9e5df;
  --texto-escuro:  #1a2e24;
  --texto-medio:   #3d5a4c;
  --texto-claro:   #6b8f7e;
  --branco:        #ffffff;
  --sombra-sm:     0 2px 12px rgba(15,61,46,.08);
  --sombra-md:     0 8px 32px rgba(15,61,46,.12);
  --sombra-lg:     0 20px 60px rgba(15,61,46,.16);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--texto-escuro);
  background: var(--branco);
  overflow-x: hidden;
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--verde-escuro);
  padding: .55rem 0;
  font-size: .8rem;
  letter-spacing: .02em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-items { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.top-item {
  display: flex; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: var(--transition);
}
.top-item:hover { color: var(--dourado-claro); }
.top-item i { color: var(--verde-claro); font-size: .85rem; }
.top-social { display: flex; gap: .7rem; }
.top-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  text-decoration: none;
  transition: var(--transition);
}
.top-social a:hover { background: var(--dourado); color: var(--branco); }

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--branco);
  box-shadow: var(--sombra-sm);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--sombra-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
  gap: 1.5rem;
}
.nav-logo-text { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-text .marca {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--verde-escuro);
  line-height: 1;
  letter-spacing: -.02em;
}
.nav-logo-text .marca span { color: #8c1c13; }
.nav-logo-text .subtitulo {
  font-size: .68rem; color: var(--texto-claro);
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: .15rem;
}
.nav-menu { display: flex; align-items: center; gap: .2rem; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .35rem;
  padding: .65rem .85rem;
  color: var(--texto-medio);
  font-weight: 600; font-size: .88rem;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--verde-vivo);
  background: rgba(46,139,87,.07);
}
.nav-link i.fa-chevron-down { font-size: .7rem; }
.dropdown {
  position: absolute; top: calc(100% + .4rem); left: 0;
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra-lg);
  min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1.1rem;
  color: var(--texto-medio);
  font-size: .85rem; font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown a:hover {
  background: var(--cinza-bg);
  color: var(--verde-vivo);
  border-left-color: var(--verde-vivo);
}
.nav-cta {
  background: var(--verde-medio) !important;
  color: var(--branco) !important;
  padding: .65rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(26,95,69,.3);
}
.nav-cta:hover {
  background: var(--verde-escuro) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,95,69,.4) !important;
}
.hamburger {
  display: none;
  background: none; border: none;
  font-size: 1.5rem; color: var(--verde-escuro);
  cursor: pointer; padding: .5rem;
}

/* ===================== HERO / CARROSSEL ===================== */
.hero {
  position: relative;
  height: 88vh; min-height: 560px;
  overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,35,25,.82) 0%, rgba(10,35,25,.5) 50%, rgba(10,35,25,.15) 100%);
}
/* Slide com imagem real — o ::after já cobre */
.slide-img .slide-bg::after {
  background: linear-gradient(90deg, rgba(10,35,25,.78) 0%, rgba(10,35,25,.45) 55%, rgba(10,35,25,.1) 100%);
}
/* Slides sem imagem (fallback) */
.slide-1 .slide-bg {
  background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-medio) 60%, var(--verde-vivo) 100%);
}
.slide-1 .slide-bg::after { background: none; }
.slide-1 .slide-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(200,151,61,.15) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(74,175,125,.1) 0%, transparent 50%);
}
.slide-2 .slide-bg { background: linear-gradient(135deg, #0a1f15, #1a4a2e); }
.slide-2 .slide-bg::after { background: none; }
.slide-3 .slide-bg { background: linear-gradient(135deg, #0f2d1e, var(--verde-escuro)); }
.slide-3 .slide-bg::after { background: none; }

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,151,61,.2);
  border: 1px solid rgba(200,151,61,.4);
  color: var(--dourado-claro);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-title em { font-style: normal; color: var(--dourado-claro); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--dourado);
  color: var(--branco);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 6px 24px rgba(200,151,61,.4);
}
.btn-hero-primary:hover {
  background: var(--dourado-claro); color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,151,61,.5);
}
.btn-hero-secondary {
  background: rgba(255,255,255,.12);
  color: var(--branco);
  border: 1.5px solid rgba(255,255,255,.4);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .6rem;
  backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .6rem; z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { width: 28px; border-radius: 4px; background: var(--dourado); }
.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none; color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.3); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }
.hero-stats {
  position: absolute; bottom: 4rem; right: 2rem;
  z-index: 10; display: flex; gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  text-align: center; color: white; min-width: 100px;
}
.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  line-height: 1; color: var(--dourado-claro);
}
.stat-card .lbl { font-size: .72rem; opacity: .8; margin-top: .2rem; }

/* ===================== CONTAINER ===================== */
.container { max-width: 1360px; margin: 0 auto; padding: 0 2rem; }

/* ===================== CTA BAND ===================== */
.cta-band {
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-vivo));
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-band .container {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--branco); margin-bottom: .5rem;
}
.cta-text p { color: rgba(255,255,255,.85); font-size: 1rem; }
.btn-cta-band {
  background: var(--branco); color: var(--verde-medio);
  padding: 1rem 2.5rem; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-cta-band:hover {
  background: var(--dourado); color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

/* ===================== SEÇÕES ===================== */
.section { padding: 6rem 0; }
.section-alt { background: var(--cinza-bg); }
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--verde-vivo);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-tag::before {
  content: ''; display: block;
  width: 24px; height: 3px;
  background: var(--verde-vivo); border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--texto-escuro);
  line-height: 1.2; margin-bottom: 1.2rem;
}
.section-title span { color: var(--verde-vivo); }
.section-subtitle {
  font-size: 1.05rem; color: var(--texto-claro);
  line-height: 1.75; max-width: 560px;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

/* ===================== QUEM SOMOS ===================== */
.quem-somos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.qs-visual { position: relative; }
.qs-img-main {
  width: 100%; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-vivo));
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: var(--sombra-lg);
}
.qs-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-lg);
}
.qs-badge-float {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--branco); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--sombra-md);
  display: flex; align-items: center; gap: 1rem;
}
.qs-badge-float .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-vivo));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 1.3rem;
}
.qs-badge-float .info .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--texto-escuro);
}
.qs-badge-float .info .lbl { font-size: .75rem; color: var(--texto-claro); }
.qs-features { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.qs-feature {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  background: var(--branco); border: 1px solid var(--cinza-borda);
  transition: var(--transition);
}
.qs-feature:hover {
  border-color: var(--verde-claro);
  box-shadow: var(--sombra-sm);
  transform: translateX(4px);
}
.qs-feature .f-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(46,139,87,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde-vivo); font-size: 1.1rem;
}
.qs-feature .f-text strong { display: block; font-weight: 700; font-size: .9rem; color: var(--texto-escuro); }
.qs-feature .f-text span { font-size: .83rem; color: var(--texto-claro); }

/* ===================== MVV ===================== */
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.mvv-card {
  background: var(--branco); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  border: 1px solid var(--cinza-borda);
  transition: var(--transition); position: relative; overflow: hidden;
}
.mvv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--verde-medio), var(--verde-claro));
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-md); border-color: var(--verde-claro); }
.mvv-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-vivo));
  border-radius: 20px; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(26,95,69,.25);
}
.mvv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--texto-escuro); margin-bottom: .8rem;
}
.mvv-card p { font-size: .92rem; color: var(--texto-claro); line-height: 1.7; }
.valores-list { list-style: none; text-align: left; margin-top: 1rem; }
.valores-list li {
  display: flex; align-items: center; gap: .6rem;
  padding: .35rem 0; font-size: .88rem; color: var(--texto-medio);
  border-bottom: 1px solid var(--cinza-borda);
}
.valores-list li:last-child { border-bottom: none; }
.valores-list li i { color: var(--verde-vivo); font-size: .85rem; }

/* ===================== DIFERENCIAIS ===================== */
.diferenciais-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.diferencial-card {
  background: var(--branco); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--cinza-borda); transition: var(--transition);
}
.diferencial-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-md); }
.dif-icon {
  width: 64px; height: 64px;
  background: rgba(46,139,87,.1); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde-vivo); font-size: 1.6rem;
  margin: 0 auto 1.2rem; transition: var(--transition);
}
.diferencial-card:hover .dif-icon { background: linear-gradient(135deg, var(--verde-vivo), var(--verde-claro)); color: white; }
.diferencial-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--texto-escuro); margin-bottom: .6rem;
}
.diferencial-card p { font-size: .83rem; color: var(--texto-claro); line-height: 1.6; }

/* ===================== SERVIÇOS ===================== */
.servicos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.servico-card {
  background: var(--verde-escuro); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden; cursor: pointer;
}
.servico-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: linear-gradient(135deg, var(--verde-vivo), var(--dourado));
  transition: height .4s ease; z-index: 0;
}
.servico-card:hover::before { height: 100%; }
.servico-card > * { position: relative; z-index: 1; }
.srv-icon {
  width: 72px; height: 72px; background: rgba(255,255,255,.08);
  border-radius: 18px; display: flex; align-items: center;
  justify-content: center; color: var(--verde-claro); font-size: 1.8rem;
  margin: 0 auto 1.2rem; transition: var(--transition);
}
.servico-card:hover .srv-icon { background: rgba(255,255,255,.2); color: white; }
.servico-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--branco); margin-bottom: .5rem;
}
.servico-card p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.servico-card:hover p { color: rgba(255,255,255,.85); }

/* ===================== NÚMEROS ===================== */
.numbers-section {
  background: linear-gradient(135deg, var(--verde-escuro) 0%, #0a2a1a 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.numbers-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(200,151,61,.05);
}
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.number-item .n {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--dourado-claro); line-height: 1;
}
.number-item .n span { font-size: 1.8rem; }
.number-item .nl { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: .4rem; text-transform: uppercase; letter-spacing: .06em; }

/* ===================== MEMBROS — ORGANOGRAMA ===================== */
.tabs { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin: 2.5rem 0; }
.tab-btn {
  background: none; border: 1.5px solid var(--cinza-borda);
  color: var(--texto-claro); padding: .6rem 1.3rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .85rem;
  cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--verde-medio); border-color: var(--verde-medio); color: white; }
.membros-panel { display: none; }
.membros-panel.active { display: block; }

/* Badge de mandato */
.org-mandato {
  text-align: center;
  margin: 0 auto 2.5rem;
  display: inline-flex;
  align-items: center; gap: .5rem;
  background: linear-gradient(135deg, rgba(200,151,61,.12), rgba(200,151,61,.06));
  border: 1.5px solid rgba(200,151,61,.25);
  color: var(--dourado);
  padding: .5rem 1.6rem;
  border-radius: 50px;
  font-size: .82rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  position: relative; left: 50%; transform: translateX(-50%);
}

/* Container do organograma */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1rem 0 2rem;
}

/* Cada nível do organograma */
.org-level {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap;
}

/* ─── Cards do organograma ─── */
.org-card {
  background: var(--branco);
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem 1.3rem;
  text-align: center;
  width: 155px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.org-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-md);
  border-color: var(--verde-claro);
}

/* Card do presidente — destaque premium */
.org-card--president {
  width: 195px;
  padding: 2rem 1.5rem 1.5rem;
  border-color: var(--dourado);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(200,151,61,.04) 0%, var(--branco) 40%);
  box-shadow: 0 8px 32px rgba(200,151,61,.15);
}
.org-card--president:hover {
  box-shadow: 0 16px 48px rgba(200,151,61,.25);
  border-color: var(--dourado-claro);
}

/* Card secundário */
.org-card--secondary {
  width: 170px;
  padding: 1.6rem 1.3rem 1.3rem;
}

/* Card placeholder */
.org-card--placeholder {
  opacity: .5;
  border-style: dashed;
}

/* Imagem do membro */
.org-card-img {
  position: relative;
  width: fit-content;
  margin: 0 auto 1rem;
}
.org-card-img img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cinza-borda);
  display: block;
  transition: var(--transition);
}
.org-card--president .org-card-img img {
  width: 110px; height: 110px;
  border-color: var(--dourado);
  border-width: 3.5px;
  box-shadow: 0 6px 24px rgba(200,151,61,.2);
}
.org-card--secondary .org-card-img img {
  width: 96px; height: 96px;
  border-color: var(--verde-claro);
}
.org-card:hover .org-card-img img {
  border-color: var(--verde-vivo);
  transform: scale(1.05);
}
.org-card--president:hover .org-card-img img {
  border-color: var(--dourado-claro);
}

/* Imagem vazia (placeholder) */
.org-card-img--empty {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--cinza-bg);
  display: flex; align-items: center; justify-content: center;
  border: 3px dashed var(--cinza-borda);
  color: var(--texto-claro);
  font-size: 2rem;
}

/* Badge coroa para o presidente */
.org-badge-crown {
  position: absolute;
  top: -6px; right: -4px;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .7rem;
  box-shadow: 0 3px 10px rgba(200,151,61,.4);
  animation: crown-glow 2s ease-in-out infinite;
}
@keyframes crown-glow {
  0%, 100% { box-shadow: 0 3px 10px rgba(200,151,61,.4); }
  50% { box-shadow: 0 3px 18px rgba(200,151,61,.7); }
}

/* Nome do membro */
.org-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--texto-escuro);
  margin-bottom: .2rem;
  line-height: 1.3;
}
.org-card--president h4 { font-size: 1.05rem; }
.org-card--secondary h4 { font-size: .95rem; }
.org-card h4 { font-size: .88rem; }

/* Cargo */
.org-cargo {
  font-size: .73rem;
  color: var(--verde-vivo);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.org-card--president .org-cargo {
  color: var(--dourado);
  font-size: .78rem;
}

/* ─── Conectores do organograma ─── */
.org-connector {
  position: relative;
  z-index: 0;
}
.org-connector--vertical {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--verde-claro), var(--cinza-borda));
  margin: 0 auto;
}
.org-connector--horizontal {
  height: 2px;
  background: var(--cinza-borda);
  margin: 0 auto;
  position: relative;
}
/* Largura para conectar 2 cards */
.org-connector--2 { width: 250px; }
/* Largura para conectar 3 cards */
.org-connector--3 { width: 380px; }

/* Pequenas linhas verticais nas pontas da linha horizontal */
.org-connector--horizontal::before,
.org-connector--horizontal::after {
  content: '';
  position: absolute;
  top: 0;
  width: 2px; height: 14px;
  background: var(--cinza-borda);
}
.org-connector--horizontal::before { left: 0; }
.org-connector--horizontal::after { right: 0; }

/* Label de sub-grupo (ex: "Suplentes") */
.org-label-level {
  width: 100%;
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--texto-claro);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
  padding-bottom: .4rem;
  border-bottom: 1.5px solid var(--cinza-borda);
}

/* ===================== DEPOIMENTOS ===================== */
.depoimentos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.depoimento-card {
  background: var(--branco); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--cinza-borda); transition: var(--transition);
}
.depoimento-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-md); }
.dep-stars { color: #f59e0b; margin-bottom: .8rem; font-size: .9rem; }
.dep-quote { color: var(--texto-medio); font-size: .9rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.dep-quote::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--cinza-borda); line-height: 0; vertical-align: -1rem; margin-right: .2rem; }
.dep-author { display: flex; align-items: center; gap: .8rem; }
.dep-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-claro));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: .95rem;
}
.dep-info strong { display: block; font-weight: 700; font-size: .88rem; }
.dep-info span { font-size: .78rem; color: var(--texto-claro); }

/* ===================== CONTATO ===================== */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contato-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--texto-escuro); }
.contato-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contato-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; background: rgba(46,139,87,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--verde-vivo); font-size: 1.1rem; flex-shrink: 0; }
.c-text strong { display: block; font-weight: 700; font-size: .9rem; color: var(--texto-escuro); }
.c-text span { font-size: .85rem; color: var(--texto-claro); }
.contato-form { background: var(--branco); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--cinza-borda); box-shadow: var(--sombra-sm); }
.contato-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--texto-escuro); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 700; font-size: .85rem; color: var(--texto-medio); margin-bottom: .45rem; }
.form-control {
  width: 100%; background: var(--cinza-bg);
  border: 1.5px solid var(--cinza-borda); border-radius: 10px;
  padding: .8rem 1.1rem; font-family: 'Nunito', sans-serif;
  font-size: .9rem; color: var(--texto-escuro); transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--verde-vivo); background: white; box-shadow: 0 0 0 3px rgba(46,139,87,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-vivo));
  color: white; border: none; border-radius: 50px; padding: 1rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,95,69,.35); }

/* ===================== FOOTER ===================== */
.footer { background: var(--verde-escuro); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: white; }
.footer-brand .brand-name span { color: #c0392b; }
.footer-brand .tagline { font-size: .83rem; opacity: .65; margin: .5rem 0 1.5rem; line-height: 1.6; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--dourado); color: white; }
.footer-col h4 { color: white; font-weight: 800; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .87rem; transition: var(--transition); display: flex; align-items: center; gap: .5rem; }
.footer-links a::before { content: '›'; color: var(--verde-claro); font-size: 1rem; }
.footer-links a:hover { color: var(--dourado-claro); padding-left: .3rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-item { display: flex; gap: .8rem; align-items: flex-start; }
.footer-contact-item i { color: var(--verde-claro); font-size: .9rem; margin-top: .1rem; }
.footer-contact-item span { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; opacity: .5; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--dourado-claro); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; text-decoration: none; outline: none; border: none; }
.wa-btn {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; cursor: pointer;
  box-shadow: 0 6px 20px rgba(37,211,102,.4); transition: var(--transition);
  position: relative; text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); color: white; }
.wa-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 11px; height: 11px;
  background: #8c1c13;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: wa-blink 2s infinite;
  z-index: 2;
}
@keyframes wa-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: .25; }
}
.wa-pulse {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%; background: #25D366; animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .quem-somos-grid { grid-template-columns: 1fr; gap: 3rem; }
  .qs-img-main { height: 300px; }
  .qs-badge-float { left: 0; bottom: -1rem; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: white; flex-direction: column; justify-content: center;
    align-items: center; z-index: 9998; overflow-y: auto; padding: 5rem 1.5rem 2rem;
  }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { justify-content: center; font-size: 1.1rem; padding: 1rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; background: var(--cinza-bg); display: none; }
  .nav-item:hover .dropdown { display: block; }
  .mvv-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-items { display: none; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .hero-stats { display: none; }
}
@media (max-width: 500px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .org-level { gap: 1rem; }
  .org-card { width: 130px; padding: 1.2rem 1rem 1rem; }
  .org-card--president { width: 160px; }
  .org-card--secondary { width: 145px; }
  .org-card-img img { width: 72px; height: 72px; }
  .org-card--president .org-card-img img { width: 90px; height: 90px; }
  .org-card--secondary .org-card-img img { width: 80px; height: 80px; }
  .org-connector--2 { width: 180px; }
  .org-connector--3 { width: 100%; max-width: 320px; }
  .org-connector--vertical { height: 18px; }
  .form-row { grid-template-columns: 1fr; }
}
/* Quem Somos — imagem da assembleia */
.qs-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* foca nas pessoas em pé, não no teto */
    border-radius: var(--radius-lg);
    display: block;
}
/* ================================================================
   COPMS — Hero Slide 2: mesmo padrão premium do Slide 1
   Colar no FINAL do copms-novo.css (após o bloco hero-excelencia)
   ================================================================ */

/* ---------------------------------------------------------------
   Slide 2 — reposiciona para focar na presidente com microfone
   e aplica overlay duplo que some com textos/logos da imagem
--------------------------------------------------------------- */
.hero-slide.slide-2 .slide-bg {
    background-position: 55% center !important;
    background-size: cover !important;
}

    /* Overlay: escuro forte à esq (some com logo/texto esquerdo),
   abre no centro (mostra a presidente),
   escuro forte à dir (some com ícones e texto do telão) */
    .hero-slide.slide-2 .slide-bg::after {
        background: linear-gradient( 90deg, rgba(8, 30, 20, .94) 0%, /* esq — some com logo COPMS e "Assembleia" */
        rgba(8, 30, 20, .65) 30%, rgba(8, 30, 20, .30) 52%, /* centro — presidente visível */
        rgba(8, 30, 20, .65) 72%, rgba(8, 30, 20, .92) 100% /* dir — some com telão e ícones */
        ) !important;
    }

/* Overlay vertical extra: escurece a metade inferior
   (where the thumbs up icons / plateia aparecem) */
.hero-slide.slide-2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(8, 30, 20, .10) 0%, rgba(8, 30, 20, .10) 45%, rgba(8, 30, 20, .55) 75%, rgba(8, 30, 20, .80) 100% );
    z-index: 0;
    pointer-events: none;
}

/* Garante que o conteúdo do slide fica acima dos overlays */
.hero-slide.slide-2 .container {
    position: relative;
    z-index: 2 !important;
}

/* ---------------------------------------------------------------
   Slide 3 — mesmo padrão consistente
--------------------------------------------------------------- */
.hero-slide.slide-3 .slide-bg {
    background-position: 60% center !important;
    background-size: cover !important;
}

    .hero-slide.slide-3 .slide-bg::after {
        background: linear-gradient( 90deg, rgba(8, 30, 20, .92) 0%, rgba(8, 30, 20, .55) 35%, rgba(8, 30, 20, .25) 60%, rgba(8, 30, 20, .70) 85%, rgba(8, 30, 20, .90) 100% ) !important;
    }

    /* Slide 3 — fundo claro da imagem precisa de overlay mais forte */
    .hero-slide.slide-3 .slide-bg::after {
        background: linear-gradient( 90deg, rgba(8, 30, 20, .95) 0%, rgba(8, 30, 20, .80) 35%, rgba(8, 30, 20, .65) 60%, rgba(8, 30, 20, .75) 85%, rgba(8, 30, 20, .90) 100% ) !important;
    }

/* Slide 3 — reforço na direita para sumir texto do logo */
.hero-slide.slide-3 .slide-bg {
    background-position: 30% center !important; /* puxa os hexágonos para o centro */
}

    .hero-slide.slide-3 .slide-bg::after {
        background: linear-gradient( 90deg, rgba(8, 30, 20, .82) 0%, rgba(8, 30, 20, .60) 35%, rgba(8, 30, 20, .72) 60%, rgba(8, 30, 20, .92) 80%, rgba(8, 30, 20, .97) 100% ) !important;
    }

/* ===================== NOSSAS ATUAÇÕES ===================== */
.section-atuacoes { background: var(--cinza-bg); }

/* Grid de cards */
.atuacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.2rem;
}

/* Card principal */
.atuacao-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  transition: all .4s cubic-bezier(.34,1.2,.64,1);
  display: flex;
  flex-direction: column;
}
.atuacao-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26,95,69,.13);
  border-color: var(--verde-claro);
}

/* Área de imagem */
.atuacao-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
  flex-shrink: 0;
}
/* Máscara superior: dissolve qualquer UI escura residual das screenshots */
.atuacao-card-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}


/* Mini-carrossel de fotos */
.atuacao-slides { position: relative; width: 100%; height: 100%; }
.atuacao-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}
.atuacao-slide.active { opacity: 1; }
.atuacao-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.atuacao-card:hover .atuacao-slide.active img { transform: scale(1.04); }

/* Setas do mini-carrossel */
.atuacao-nav {
  position: absolute;
  bottom: .6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 5;
  opacity: 0;
  transition: opacity .3s ease;
}
.atuacao-card:hover .atuacao-nav { opacity: 1; }
.atuacao-nav-btn {
  background: rgba(255,255,255,.85);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--verde-medio);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.atuacao-nav-btn:hover { background: var(--dourado); color: white; }

/* Badge de categoria */
.atuacao-badge-categoria {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-vivo));
  color: white;
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: 0 4px 12px rgba(26,95,69,.3);
  z-index: 3;
}

/* Corpo do card */
.atuacao-card-body {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  flex: 1;
}

/* Meta: data + local */
.atuacao-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.atuacao-data,
.atuacao-local {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--texto-claro);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.atuacao-data i { color: var(--dourado); }
.atuacao-local i { color: #e74c3c; }

/* Título */
.atuacao-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--texto-escuro);
  line-height: 1.35;
  margin: 0;
}

/* Descrição */
.atuacao-desc {
  font-size: .875rem;
  color: var(--texto-claro);
  line-height: 1.75;
  margin: 0;
}
.atuacao-desc strong { color: var(--verde-medio); font-weight: 700; }

/* Parceiros */
.atuacao-parceiros {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--cinza-borda);
}
.parceiro-label {
  font-size: .72rem;
  font-weight: 800;
  color: var(--texto-claro);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.parceiro-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(26,95,69,.08);
  border: 1px solid rgba(26,95,69,.18);
  color: var(--verde-medio);
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  transition: var(--transition);
}
.atuacao-card:hover .parceiro-tag {
  background: rgba(26,95,69,.14);
  border-color: var(--verde-claro);
}

/* Responsivo */
@media (max-width: 768px) {
  .atuacoes-grid { grid-template-columns: 1fr; }
  .atuacao-card-img-wrap { height: 200px; }
}
@media (max-width: 480px) {
  .atuacao-card-body { padding: 1.2rem 1.3rem 1.5rem; }
}

/* Tagline / citação institucional no card */
.atuacao-tagline {
  background: linear-gradient(135deg, rgba(26,95,69,.07), rgba(26,95,69,.03));
  border-left: 3px solid var(--verde-claro);
  border-radius: 0 8px 8px 0;
  padding: .75rem 1rem;
  font-size: .82rem;
  font-style: italic;
  color: var(--verde-medio);
  font-weight: 600;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.atuacao-tagline i {
  color: var(--verde-claro);
  font-size: .75rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* Pill "1ª e 2ª Etapas" sobre a imagem */
.atuacao-etapa-pill {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(200,151,61,.92);
  color: #fff;
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 4;
  backdrop-filter: blur(4px);
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}