* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #fff5f8 0%, #ffeef4 100%);
  color: #2d1e22;
  scroll-behavior: smooth;
  overflow-x: hidden;
  zoom: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== HEADER ========== */
.header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.nav-centralizado {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-centralizado a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
  color: #4a2c33;
  transition: 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.95rem;
  position: relative;
}

.nav-centralizado a:hover {
  color: #ff4d6d;
  background: rgba(255, 77, 109, 0.08);
}

.nav-centralizado a.active {
  color: #ff4d6d;
  font-weight: 700;
}

.nav-centralizado a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(1%);
  width: 50%;
  min-width: 40px;
  height: 3px;
  background: linear-gradient(80deg, #ff6b8a, #ff3b6f);
  border-radius: 3px;
  animation: slideInCenter 0.3s ease-out;
}

@keyframes slideInCenter {
  0% {
    width: 0;
    opacity: 0;
    left: 50%;
  }
  100% {
    width: 70%;
    opacity: 1;
    left: 50%;
  }
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ff4d6d;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ========== RESPONSIVO - MOBILE ========== */
@media (max-width: 860px) {
  .header-container {
    justify-content: flex-start;
    padding: 1rem 20px;
  }
  
  .nav-centralizado {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-centralizado.active {
    display: flex;
  }

  .nav-centralizado a {
    margin: 0.3rem 0;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
  }
  
  .nav-centralizado a.active::after {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }
  
  @keyframes slideInCenter {
    0% {
      width: 0;
      opacity: 0;
      left: 50%;
    }
    100% {
      width: 50px;
      opacity: 1;
      left: 50%;
    }
  }

  .menu-toggle {
    display: block;
  }
}

@media (min-width: 861px) and (max-width: 1024px) {
  .nav-centralizado a {
    margin: 0 0.25rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .nav-centralizado a.active::after {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .nav-centralizado a {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
    margin: 0 0.2rem;
  }
}

/* ========== HERO ========== */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(115deg, #ffe6ed 0%, #ffd9e3 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: #ff4d6d20;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c9184a;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #c9184a, #ff4d6d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #3a2c30;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.btn-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: white;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-denuncia {
  background: #9c2e4e;
  color: white;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  font-size: 0.9rem;
}

.stat span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #c9184a;
  display: block;
}

.hero-img {
  flex: 0.7;
  text-align: center;
}

.logo-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #ff4d6ddd, transparent);
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
}

.logo-caption {
  margin-top: 1rem;
  font-weight: 500;
  color: #b13e5a;
}

/* ========== SOBRE ========== */
.sobre {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #b13e5a;
}

.section-header p {
  font-size: 1.1rem;
  color: #5a3e45;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b8a, #ff3b6f);
  margin: 1rem auto;
  border-radius: 4px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.sobre-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.sobre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.sobre-card i {
  font-size: 2.8rem;
  background: linear-gradient(145deg, #ff6b8a, #ff3b6f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.sobre-card h3 {
  margin-bottom: 0.8rem;
  color: #2d1e22;
}

.sobre-card p {
  color: #5a3e45;
  line-height: 1.5;
}

/* ========== OBJETIVOS ========== */
.objetivos {
  background: linear-gradient(125deg, #ffdce5, #ffb7c8);
  padding: 4rem 0;
  border-radius: 60px 60px 0 0;
}

.section-header.light h2,
.section-header.light p {
  color: #2d1e22;
}

.objetivos-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.obj-item {
  background: rgba(255, 255, 240, 0.9);
  padding: 1.2rem;
  border-radius: 60px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: transform 0.3s;
}

.obj-item:hover {
  transform: scale(1.02);
}

.obj-item i {
  color: #c9184a;
  font-size: 1.5rem;
}

/* ========== ICONES CLICÁVEIS DA MISSÃO ========== */
.obj-item {
  background: rgba(255, 255, 240, 0.9);
  padding: 1.2rem;
  border-radius: 60px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.obj-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 240, 1);
  box-shadow: 0 10px 25px rgba(255, 77, 109, 0.3);
}

.obj-item:active {
  transform: translateY(-2px) scale(0.98);
}

.obj-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 77, 109, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.obj-item:active::after {
  width: 300px;
  height: 300px;
}

.obj-item i {
  color: #c9184a;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.obj-item:hover i {
  transform: scale(1.1);
}

.obj-item {
  cursor: pointer;
}

.obj-item::before {
  content: '🔍';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.obj-item:hover::before {
  opacity: 0.7;
}

/* ========== NOSSA PRESIDENTE ========== */
.presidente {
  padding: 5rem 0;
}

.presidente-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: stretch;
  background: white;
  border-radius: 48px;
  padding: 2rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
}

.presidente-img {
  flex: 0.8;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-rectangle {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 5 / 17; 
  background: linear-gradient(145deg, #ffb3c6, #ff8cae);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-rectangle:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.avatar-rectangle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-rectangle i {
  display: none;
}

.presidente-texto {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.presidente-texto h2 {
  font-size: 2rem;
  color: #c9184a;
  margin-bottom: 1rem;
}

.presidente-texto p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #2d1e22;
}

.assinatura {
  font-style: italic;
  border-left: 5px solid #ff4d6d;
  padding-left: 1rem;
  margin: 1rem 0;
  font-weight: 600;
  color: #4a2c33;
}

.diretoria {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.diretoria span {
  background: #ffeef4;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
}

.trajetoria {
  margin-top: 1rem;
  background: #ffeef4;
  padding: 0.6rem 1.2rem;
  border-radius: 60px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #b13e5a;
}

.trajetoria i {
  margin-right: 8px;
  color: #ff4d6d;
}

@media (max-width: 860px) {
  .presidente-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .presidente-img {
    justify-content: center;
  }
  
  .avatar-rectangle {
    max-width: 260px;
  }
  
  .diretoria {
    justify-content: center;
  }
  
  .assinatura {
    text-align: left;
  }
  
  .trajetoria {
    display: inline-block;
  }
}

/* ========== RESULTADOS ========== */
.resultados {
  padding: 4rem 0;
  background: #fffafc;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resultado-card {
  background: white;
  border-radius: 32px;
  padding: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #ffd9e2;
}

.resultado-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.resultado-card i {
  font-size: 2.3rem;
  color: #ff4d6d;
  margin-bottom: 1rem;
}

.resultado-card h3 {
  margin-bottom: 0.8rem;
  color: #2d1e22;
}

.resultado-card p {
  color: #5a3e45;
  line-height: 1.5;
}

/* ========== IMPACTO (CONTADORES) ========== */
.impacto {
  padding: 4rem 0;
  background: linear-gradient(145deg, #fff0f5, #ffe4ed);
}

.impacto-counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.counter-item {
  background: white;
  padding: 2rem;
  border-radius: 32px;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.counter-item:hover {
  transform: translateY(-5px);
}

.counter-item i {
  font-size: 2.5rem;
  color: #ff4d6d;
  margin-bottom: 0.5rem;
}

.counter-num {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  color: #c9184a;
}

.counter-item p {
  font-weight: 600;
  margin-top: 0.5rem;
  color: #4a2c33;
}

/* ========== ATIVIDADES ========== */
.atividades-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.atividade-item {
  background: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.atividade-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: linear-gradient(135deg, #fff0f5, #ffe4ed);
  box-shadow: 0 10px 25px rgba(255, 77, 109, 0.25);
}

.atividade-item:active {
  transform: translateY(-2px) scale(0.98);
}

.atividade-item i {
  color: #ff4d6d;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.atividade-item:hover i {
  transform: scale(1.15);
  color: #c9184a;
}

.atividade-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 77, 109, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.atividade-item:active::after {
  width: 200px;
  height: 200px;
}

.atividade-item {
  cursor: pointer;
}

.atividade-item::before {
  content: '🔍';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.atividade-item:hover::before {
  opacity: 0.6;
}

@media (max-width: 860px) {
  .atividade-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .atividade-item::before {
    display: none;
  }
}

/* ========== PADRONIZAÇÃO DE TÍTULOS DE SEÇÕES ========== */

.section-header h2,
.atividades-conteudo h2,
.impacto .section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #b13e5a;
  text-align: center;
  margin-bottom: 1rem;
}

.section-header p,
.atividades-conteudo p {
  text-align: center;
  color: #5a3e45;
  max-width: 700px;
  margin: 0 auto;
}

.atividades-conteudo h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #b13e5a;
  text-align: center;
  margin-bottom: 1rem;
}

.section-header .divider,
.atividades-conteudo .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b8a, #ff3b6f);
  margin: 1rem auto;
  border-radius: 4px;
}

/* ========== COMPROMISSO ========== */
.compromisso {
  padding: 4rem 0;
}

.compromisso-box {
  background: linear-gradient(135deg, #fff0f5, #ffe4ed);
  border-radius: 48px;
  padding: 3rem;
  text-align: center;
}

.compromisso-box i {
  font-size: 3rem;
  color: #b13e5a;
  margin-bottom: 1rem;
}

.compromisso-box h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: #2d1e22;
}

.compromisso-box p {
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  color: #4a2c33;
}

.valores {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.valores span {
  background: white;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  color: #b13e5a;
}

/* ========== CTA FINAL ========== */
.cta-final {
  background: linear-gradient(145deg, #ff4d6d, #c9184a);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-cta {
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  transition: all 0.2s;
}

.btn-cta.insta {
  color: #dd2a7b;
}

.btn-cta.whats {
  color: #075e54;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.disque {
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
}

.atendimento {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
  background: #2d1e22;
  color: #f0d3dc;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-weight: bold;
  font-size: 1.4rem;
}

.footer-contato {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-contato p i {
  margin-right: 8px;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 1rem;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 0.7rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-img {
    flex: 1;
  }

  .logo-container {
    width: 200px;
    height: 200px;
  }

  .presidente-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .diretoria {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .container {
    padding: 0 20px;
  }

  .footer-contato {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========== MENU ATIVO ========== */
.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 600;
  color: #4a2c33;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #ff4d6d;
}

.nav-links a.active {
  color: #ff4d6d;
  font-weight: 700;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b8a, #ff3b6f);
  border-radius: 3px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .nav-links a.active::after {
    bottom: -2px;
  }
}