/* Reset simples */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
}
.site-header, .site-footer {
  background: #fff;
  color: #111;
  padding-top: 15px;
  padding-bottom: 20px;;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.site-header h1.logo {
  float: left;
  font-size: 1.8rem;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  margin: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 64px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}
@media (max-width: 600px) {
  .logo img {
    height: 44px;
    max-width: 140px;
  }
}
nav.menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}
nav.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
nav.menu a {
  color: #111;
  text-decoration: none;
  padding: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
nav.menu a:hover {
  color: #16a34a;
}
nav.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #16a34a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav.menu a:hover::after {
  width: 100%;
}
.btn {
  display: inline-block;
  background: #43a047;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.btn:hover {
  background: #388e3c;
}
.btn.pequeno {
  padding: 6px 12px;
  font-size: 0.9rem;
}
.btn.btn-associe {
  background: #009846;
  color: #fff;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.btn.btn-associe:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn.btn-associe::after {
  display: none;
}
section {
  padding: 60px 0;
}
section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1a3d2c;
}
section h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}
ul li {
  margin-bottom: 10px;
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
footer a {
  color: #c8e6c9;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 500px;
  max-height: 720px;
  overflow: visible;
  margin-top: 0 !important;
  padding-top: 0 !important;
  display: block;
}
.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.slide.active {
  display: flex;
  z-index: 2;
}
.slide-image-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1 !important;
}
.slide-green-box.slide-custom-box {
  position: absolute !important;
  left: 50% !important;
  bottom: -120px !important; /* Box fica metade dentro, metade fora da imagem */
  transform: translateX(-50%) !important;
  width: calc(100% - 20px) !important; /* Reduzido de 40px para 20px para ficar mais largo */
  max-width: 1200px !important; /* Aumentado de 1000px para 1200px */
  min-width: 256px !important; /* Reduzido de 320px para 256px */
  background: linear-gradient(90deg, rgba(23, 155, 58, 1.0) 0%, rgba(67, 160, 71, 0.9) 100%) !important; /* Transparência ajustada */
  border-radius: 32px !important; /* Aumentado para ficar mais arredondado */
  box-shadow: 0 10px 29px rgba(0,0,0,0.25) !important; /* Reduzido de 36px para 29px */
  padding: 40px 50px !important; /* Aumentado para ficar mais espaçoso */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 2 !important;
  box-sizing: border-box !important;
}
.slide-col-left {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slide-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.slide-custom-title {
  color: #fff;
  font-size: 2.4rem !important; /* Aumentado para ficar mais proeminente */
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  max-width: 80%; /* Limita a largura para forçar quebra em 3 linhas */
  text-align: left; /* Justificado no quadrante esquerdo */
  padding-left: 100px; /* Aumentado para ficar mais espaçoso */
  white-space: pre-line; /* Respeita as quebras de linha */
}
.slide-custom-desc {
  color: #eaffea;
  font-size: 1.1rem !important; /* Aumentado para melhor legibilidade */
  line-height: 1.5;
  margin: 0;
}
.btn-slide-custom {
  background: #ffb13b;
  color: #222;
  font-weight: 700;
  font-size: 1.0rem !important; /* Aumentado para melhor visibilidade */
  border-radius: 9999px !important;
  padding: 14px 28px !important; /* Aumentado para ficar mais proeminente */
  border: none !important;
  box-shadow: 0 5px 14px rgba(22,163,74,0.12) !important;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 0;
}
.btn-slide-custom:hover {
  background: #ff9800;
  color: #fff;
}
@media (max-width: 1100px) {
  .slide-green-box.slide-custom-box {
    width: 94vw !important;
    max-width: 94vw !important;
    padding: 24px 24px !important;
    border-radius: 24px !important;
    bottom: 32px !important;
    transform: translateX(-50%) !important;
    gap: 18px !important;
  }
  .slide-col-left, .slide-col-right {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .slide-custom-title { font-size: 2rem !important; }
}
@media (max-width: 600px) {
  .slide-green-box.slide-custom-box {
    width: 96vw !important;
    max-width: 96vw !important;
    padding: 16px 16px !important;
    border-radius: 16px !important;
    bottom: -15% !important; /* Ajustado para ficar realmente meio a meio sem sobrepor */
    transform: translateX(-50%) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .slide-custom-title { 
    font-size: 1.7rem !important; /* Aumentado de 1.5rem para 1.7rem */
    font-weight: 700 !important; /* Garantindo peso da fonte */
    line-height: 1.3 !important; /* Melhorando espaçamento entre linhas */
    text-align: center !important; /* Centralizando o texto */
    margin-bottom: 6px !important; /* Adicionando espaçamento inferior */
  }
  .slide-custom-desc { font-size: 1rem !important; }
  .btn-slide-custom { font-size: 0.98rem !important; padding: 10px 18px !important; }
}
.slide-custom-content {
  width: 100% !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 24px !important;
}
.slide-custom-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.slide-custom-desc {
  color: #eaffea;
  font-size: 1.13rem;
  line-height: 1.5;
  margin: 0 0 12px 0;
}
.btn-slide-custom {
  background: #ffb13b;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 30px;
  padding: 16px 40px;
  border: none;
  box-shadow: 0 4px 16px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
.btn-slide-custom:hover {
  background: #ff9800;
  color: #fff;
}
@media (max-width: 900px) {
  .slide-custom-content {
    max-width: 98vw;
    gap: 16px;
  }
  .slide-custom-title {
    font-size: 1.8rem; /* Aumentado de 1.3rem para 1.8rem */
    font-weight: 700; /* Garantindo peso da fonte */
    line-height: 1.3; /* Melhorando espaçamento entre linhas */
    text-align: center; /* Centralizando o texto */
  }
}
@media (max-width: 600px) {
  .slide-custom-content {
    max-width: 99vw;
    gap: 10px;
  }
  .slide-custom-title {
    font-size: 1.4rem; /* Aumentado de 1.01rem para 1.4rem */
    font-weight: 700; /* Garantindo peso da fonte */
    line-height: 1.3; /* Melhorando espaçamento entre linhas */
    text-align: center; /* Centralizando o texto */
  }
  .slide-custom-desc {
    font-size: 0.98rem;
  }
  .btn-slide-custom {
    font-size: 0.98rem;
    padding: 10px 12px;
  }
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: -150px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  justify-content: center;
}
.sobre-acam {
  margin-top: 120px !important;
}
@media (max-width: 900px) {
  .hero-slider {
    height: 360px;
    min-height: 220px;
    max-height: 400px;
  }
  .slide-green-box.slide-custom-box {
    padding: 18px 10px 18px 10px;
    border-radius: 22px;
    min-width: 0;
    max-width: 98vw;
    width: 98vw;
    bottom: -70px;
    margin-left: 0 !important;
    width: 98vw !important;
    max-width: 98vw !important;
  }
  .slide-custom-content {
    max-width: 98vw;
  }
  .slider-dots {
    bottom: -100px;
    max-width: 98vw;
  }
  /* Regra removida - .slide-custom-title h1 desnecessária */
}
@media (max-width: 600px) {
  .hero-slider {
    height: 220px;
    min-height: 120px;
    max-height: 260px;
  }
  .slide-green-box.slide-custom-box {
    padding: 10px 2vw 16px 2vw;
    border-radius: 14px;
    width: 99vw;
    min-width: 0;
    max-width: 99vw;
    bottom: -15%; /* Ajustado para ficar realmente meio a meio sem sobrepor */
    margin-left: 0 !important;
    width: 99vw !important;
    max-width: 99vw !important;
  }
  .slide-custom-content {
    max-width: 99vw;
  }
  .slider-dots {
    bottom: -60px;
    max-width: 99vw;
  }
}
/* --- FIM centralização absoluta --- */
.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(34,34,34,0.38) 40%, rgba(34,34,34,0.10) 100%);
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  gap: 18px;
}
.slide-text {
  width: 100%;
  max-width: 700px;
  color: #fff;
  text-shadow: 0 6px 32px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slide-main-text {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}
.slide-side-text {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: #e0e0e0;
}
.slide-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0.7rem;
}
.slide-feature span {
  font-size: 1rem;
}
.slide-cta {
  margin-top: 0.5rem;
}
.slide-cta .btn {
  padding: 12px 32px;
  font-size: 1.08rem;
  border-radius: 24px;
  font-weight: 700;
  box-shadow: 0 2px 8px #1db95433;
}
@media (max-width: 900px) {
  .slide-content {
    max-width: 98vw;
    padding: 0 8px;
    gap: 12px;
  }
  .slide-main-text {
    font-size: 1.5rem;
  }
}
.slide-side {
  flex: 1;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  color: #fff;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide-side h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
}
.slide-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.slide-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: #fff;
  font-size: 1.05rem;
}
.slide-features i {
  color: #1db954;
  font-size: 1.2rem;
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: -150px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: 2px solid #1db954;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.dot.active {
  background: #1db954;
  border-color: #fff;
  transform: scale(1.25);
  box-shadow: 0 4px 16px #1db95444;
}
@media (max-width: 900px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 0 10px;
  }
  .slide-side {
    margin-top: 18px;
    max-width: 100%;
    min-width: 0;
    padding: 24px 10px;
  }
  .slide-text h1 {
    font-size: 2.1rem;
  }
  }
@media (max-width: 600px) {
  .hero-slider {
    height: calc(100vh - 60px);
    margin-top: 60px;
  }
  .slide-content {
    padding: 0 2vw;
  }
  .slide-text h1 {
    font-size: 1.3rem;
  }
  .slide-text p {
    font-size: 1rem;
  }
  .slide-side {
    padding: 14px 4px;
    font-size: 0.98rem;
  }
  .slider-dots {
    bottom: -100px;
  }
  .logo img {
    height: 44px;
    max-width: 140px;
  }
}
.sobre-acam {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  padding: 96px 0; /* Reduzido de 120px para 96px */
  background: #fff;
}

/* Ajuste específico para index.php - espaçamento do box verde do slide */
.index .sobre-acam {
  margin-top: 120px !important;  /* Ajustado para a nova posição do box verde */
  padding-top: 80px;           /* Ajustado para a nova posição do box verde */
}

/* Ajuste para mobile no index */
@media (max-width: 900px) {
  .index .sobre-acam {
    margin-top: 20px !important;  /* Reduzido para ficar logo abaixo do box verde */
    padding-top: 40px;            /* Reduzido para aproximar do box verde */
  }
}

/* Ajuste específico para mobile pequeno */
@media (max-width: 700px) {
  .index .sobre-acam {
    margin-top: 60px !important;  /* Ajustado para nova posição do box verde */
    padding-top: 70px;            /* Ajustado para dar espaço ao box verde */
  }
}

/* Ajuste específico para mobile muito pequeno */
@media (max-width: 600px) {
  .index .sobre-acam {
    margin-top: 50px !important;  /* Ajustado para nova posição do box verde */
    padding-top: 60px;            /* Ajustado para dar espaço ao box verde */
  }
}
.sobre-container {
  max-width: 960px; /* Reduzido de 1200px para 960px */
  margin: 0 auto;
  padding: 0 48px; /* Reduzido de 60px para 48px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px; /* Reduzido de 100px para 80px */
  position: relative;
  min-height: 400px; /* Reduzido de 500px para 400px */
}
.sobre-texto {
  flex: 1;
  z-index: 2;
  max-width: 480px;
  padding-right: 20px;
}
.sobre-label {
  color: #6fcf97;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}
.sobre-texto h2 {
  font-size: 2.8rem;
  color: #17643a;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}
.sobre-texto .destaque {
  color: #179b3a;
  display: block;
  font-weight: 800;
}
.sobre-texto p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.6;
  text-align: left;
}
.btn.btn-sobre {
  background: #179b3a;
  color: #fff;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
}
.btn.btn-sobre:hover {
  background: #0e7c3a;
}
.sobre-imagem {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 320px; /* Reduzido de 400px para 320px */
  min-height: 320px; /* Reduzido de 400px para 320px */
  padding-right: 8px; /* Reduzido de 10px para 8px */
}
.sobre-imagem img {
  width: 320px; /* Reduzido de 400px para 320px */
  height: 320px; /* Reduzido de 400px para 320px */
  object-fit: contain;
  object-position: center;
  border-radius: 0; /* Removida a máscara circular */
  z-index: 2;
  position: relative;
  background: #f8f9fa;
}
/* Forma laranja removida conforme solicitado */

/* Arco verde de fundo */
.sobre-imagem::before {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border: 3px solid #6fcf97;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.4;
  border-top: none;
  border-right: none;
}
.semicircle-bg {
  position: absolute;
  right: -120px;
  top: -30px;
  width: 300px;
  height: 300px;
  background: #ffb13b;
  border-radius: 0 100% 100% 0 / 50% 100% 100% 50%;
  z-index: 1;
  transform: rotate(-90deg);
}
@media (max-width: 900px) {
  .sobre-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    min-height: auto;
  }
  .sobre-texto {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .sobre-texto h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .sobre-texto p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .sobre-imagem {
    min-width: 280px;
    min-height: 280px;
    margin: 0 auto;
    padding-right: 0;
    justify-content: center;
  }
  .sobre-imagem img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    border-radius: 0; /* Removida a máscara circular em mobile */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  /* Elementos decorativos ajustados para mobile - círculo laranja removido */
  .sobre-imagem::before {
    width: 100px;
    height: 100px;
    left: -20px;
    bottom: -15px;
    opacity: 0.3;
  }
  .btn.btn-sobre {
    align-self: center;
    margin-top: 16px;
  }
}
.beneficios-acam {
  background: #fff;
  position: relative;
  overflow: visible;
}
.beneficios-label {
  color: #6fcf97;
  font-size: 0.95rem;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
  text-align: left;
  margin-left: 0;
}
.beneficios-acam h2 {
  color: #17643a;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 38px;
  text-align: left;
  margin-left: 0;
}
.beneficios-bg-asterisk {
  position: absolute;
  right: 40px;
  top: 18%;
  width: 220px;
  height: 220px;
  background: url('img/asterisk-bg.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}
.beneficios-bg-circle {
  position: absolute;
  left: -80px;
  bottom: 40px;
  width: 140px;
  height: 140px;
  background: #eafaf1;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 2;
  justify-content: center;
  max-width: 1000px;
}
.beneficio-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #8fd6a7;
  box-shadow: none;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.beneficio-card-top {
  background: #8fd6a7 !important;
  position: relative !important;
  min-height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 0 0 0 !important;
  overflow: visible !important;
}
.beneficio-card-top > .quarter-circle {
  position: absolute !important;
  left: 38% !important;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #179b3a !important;
  border-top-left-radius: 80px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 1 !important;
  display: block !important;
  pointer-events: none !important;
}
.beneficio-card-top > img {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain !important;
  z-index: 2 !important;
  position: relative !important;
  filter: brightness(0) invert(1) !important;
  display: block !important;
}
.beneficio-card-bottom {
  background: #fff;
  padding: 24px 18px 18px 18px;
  border-radius: 0 0 20px 20px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.beneficio-card-bottom h3 {
  color: #17643a;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Manrope', Arial, sans-serif;
}
.beneficio-card-bottom p {
  color: #666;
  font-size: 1.01rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: 'Manrope', Arial, sans-serif;
}
.btn.btn-beneficios {
  background: #179b3a;
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 16px 44px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: background 0.3s;
  display: block;
  margin: 32px auto 0 auto;
  text-align: center;
  max-width: 320px;
}
.btn.btn-beneficios:hover {
  background: #12802e;
}
@media (max-width: 900px) {
  .beneficios-acam {
    padding: 32px 0 32px 0;
}
  .beneficios-label, .beneficios-acam h2 {
    text-align: center;
    margin-left: 0;
}
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 8px;
    max-width: 98vw;
  }
  .beneficio-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .beneficio-card-top {
    padding: 24px 0 0 0;
    min-height: 80px;
  }
  .beneficio-card-top .quarter-circle {
    width: 40px;
    height: 40px;
    border-top-left-radius: 40px;
  }
  .beneficio-card-top img {
    width: 48px;
    height: 48px;
  }
  .beneficio-card-top::before {
    width: 80px;
    height: 80px;
    border-top-left-radius: 80px;
  }
  .beneficio-card-bottom {
    padding: 18px 10px 14px 10px;
    border-radius: 0 0 20px 20px;
    text-align: center;
  }
  .btn.btn-beneficios {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
  }
}
.fundo-social-acam {
  background: #f7fcf8;
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 10px !important;
}
.fundo-social-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.fundo-social-img-area {
  position: relative;
  min-width: 380px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fundo-social-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: 380px;
  background: #16a34a;
  border-radius: 0 100% 0 0;
  z-index: 1;
  transform: scaleY(-1);
}
.fundo-social-img-circular {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  position: relative;
}
.fundo-social-texto {
  flex: 1.2;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.fundo-social-texto h2 {
  font-size: 2.6rem;
  color: #1a3d2c;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.1;
}
.fundo-social-sub {
  color: #6fcf97;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.fundo-social-texto p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.6;
}
.btn.btn-fundo-social {
  background: #179b3a;
  color: #fff;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
  margin-bottom: 0 !important;
}
.btn.btn-fundo-social:hover {
  background: #0e7c3a;
}
.fundo-social-circle-bg {
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  background: #eafaf1;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .fundo-social-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }
  .fundo-social-img-area, .fundo-social-img-circular {
    min-width: 220px;
    min-height: 220px;
    width: 220px;
    height: 220px;
  }
}
.associe-se-acam {
  position: relative;
  background: none;
  padding: 0;
  min-height: 600px;
  overflow: hidden;
}
.associe-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: 
     url('img/bg-associado.jpg') center center / cover no-repeat;
  z-index: 1;
  opacity: 1;
}
.associe-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.associe-titulo {
  text-align: left;
  width: 100%;
  margin-bottom: 48px;
}
.associe-titulo h2 {
  color: #fff;
  font-size: 2.6rem;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.associe-titulo p {
  color: #6fcf97;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.associe-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
  margin-bottom: 48px;
}
.associe-card {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  padding: 36px 32px 32px 32px;
  min-width: 260px;
  max-width: 340px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: border 0.3s, box-shadow 0.3s;
}
.associe-card:hover {
  border: 2px solid #fff;
  box-shadow: 0 4px 24px rgba(22,163,74,0.10);
}
.associe-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  filter: none;
  flex-shrink: 0;
}
.associe-card h3 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
  font-family: 'Manrope', Arial, sans-serif;
}
.associe-desc {
  color: #6fcf97;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
}
.btn.btn-associe-amarelo {
  background: #ffb13b;
  color: #222;
  border-radius: 30px;
  padding: 16px 48px;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 32px auto 0 auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: none;
  text-align: center;
  min-width: 280px;
  max-width: 340px;
  transition: background 0.3s;
}
.btn.btn-associe-amarelo:hover {
  background: #ff9800;
}
.associe-circle {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: none;
  border: 16px solid #eafaf1;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 900px) {
  .associe-container {
    padding: 40px 16px;
  }
  .associe-grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .associe-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
.blog-acam {
  background: #f7fcf8;
  position: relative;
  padding: 80px 0 60px 0;
  overflow: hidden;
}
.blog-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 70vw;
  height: 220px;
  background: #eafaf1;
  border-bottom-right-radius: 120px;
  z-index: 1;
}
.blog-bg-circle {
  position: absolute;
  left: -120px;
  bottom: 40px;
  width: 180px;
  height: 180px;
  background: #eafaf1;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.blog-bg-asterisk {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  background: url('img/asterisk-bg.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.blog-indicators {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  margin-left: 0;
}
.blog-dot {
  width: 20px;
  height: 20px;
  background: #c8e6c9;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.7;
  transition: background 0.3s;
}
.blog-dot.active {
  background: #6fcf97;
  opacity: 1;
}
.blog-acam h2 {
  font-size: 2.6rem;
  color: #1a3d2c;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto 40px auto;
  max-width: 1000px;
}
.blog-card {
  background: #eafaf1;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
}
.blog-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: block;
}
.blog-content {
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.blog-date {
  color: #6fcf97;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.blog-card h3 {
  color: #179b3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Manrope', Arial, sans-serif;
}
.blog-card p {
  color: #444;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 18px;
}
.btn.btn-blog {
  background: #179b3a;
  color: #fff;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
}
.btn.btn-blog:hover {
  background: #0e7c3a;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .blog-card {
    width: 100%;
    max-width: 400px;
  }
}
.contato-acam {
  position: relative;
  padding: 80px 0;
  background: #f7fcf8;
  overflow: hidden;
}
.contato-bg-circle {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.contato-bg-shape {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.contato-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.contato-info {
  flex: 1;
  max-width: 480px;
}
.contato-info h2 {
  font-size: 3.2rem;
  color: #179b3a;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: -1px;
}
.contato-info-block {
  margin-bottom: 28px;
}
.contato-label {
  color: #179b3a;
  font-size: 1.13rem;
  font-weight: 400;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.contato-info-block p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.contato-info-icons p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.contato-info-icons .contato-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.contato-whats {
  color: #179b3a;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contato-info-icons p:last-child {
  color: #179b3a;
  font-weight: 400;
}
.contato-info-icons p:last-child span,
.contato-info-icons p:last-child a {
  color: #179b3a;
}
.contato-info-block b {
  font-weight: 700;
  color: #222;
}
.contato-info-block b.sac {
  color: #222;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contato-info-block .sac-email {
  color: #888;
  font-size: 1.01rem;
  font-weight: 400;
}
.contato-social {
  margin-top: 38px;
  display: flex;
  gap: 22px;
}
.contato-social img {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.contato-social img:hover {
  opacity: 1;
}
.contato-form-card {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}
.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 20px 22px;
  margin-bottom: 22px;
  border: 1.5px solid #b7e6c7;
  border-radius: 18px;
  font-size: 1.13rem;
  background: #fff;
  color: #222;
  outline: none;
  transition: border 0.2s;
  resize: none;
  font-family: 'Manrope', Arial, sans-serif;
}
.contato-form input:focus,
.contato-form textarea:focus {
  border: 1.5px solid #179b3a;
}
.contato-form textarea {
  min-height: 100px;
  max-height: 200px;
}
.btn.btn-contato {
  background: #179b3a;
  color: #fff;
  border-radius: 30px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  margin: 18px auto 0 auto;
  display: block;
  width: 50%;
  max-width: 200px;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn.btn-contato:hover {
  background: #0e7c3a;
}
@media (max-width: 900px) {
  .contato-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }
  .contato-info {
    max-width: 100%;
  }
  .contato-form-card {
    width: 100%;
  }
  .contato-bg-circle {
    width: 400px;
    height: 400px;
  }
  .contato-bg-shape {
    width: 300px;
    height: 300px;
  }
  .contato-info h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .contato-acam {
    padding: 60px 0;
  }
  .contato-container {
    padding: 0 16px;
  }
  .contato-form-card {
    padding: 24px 16px;
  }
  .contato-bg-circle {
    width: 300px;
    height: 300px;
  }
  .contato-bg-shape {
    width: 200px;
    height: 200px;
  }
  .contato-info h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
.site-footer {
  background: #fff;
  color: #222;
  padding: 0;
  box-shadow: none;
  border: none;
  margin-top: 0;
}
.footer-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 36px 24px;
}
.footer-col {
  flex: 1;
  min-width: 220px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 8px;
}
.footer-desc {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.5;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-social img:hover {
  opacity: 1;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #222;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #179b3a;
}
.footer-bar {
  background: #179b3a;
  color: #fff;
  text-align: center;
  padding: 18px 0 14px 0;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 16px 24px 16px;
  }
  .footer-col {
    min-width: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-desc {
    max-width: 100%;
  }
}
/* Modal de Mensagem */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}
.modal.show {
  opacity: 1;
}
.modal-content {
  position: relative;
  background: #fff;
  margin: 0;
  padding: 0;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}
.close-modal {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #333;
}
.modal-body {
  padding: 20px;
  text-align: center;
}
.modal-icon {
  margin-bottom: 20px;
}
.modal-icon svg {
  width: 48px;
  height: 48px;
  display: none;
}
.success-icon {
  fill: #179b3a;
}
.error-icon {
  fill: #dc3545;
}
.modal-body p {
  margin: 0;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}
.modal-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}
.btn-modal {
  background: #179b3a;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-modal:hover {
  background: #0e7c3a;
}
/* Animações do Modal */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
/* Estilos para o formulário de contato */
.form-error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}
.btn-loading {
  display: none;
}
.spinner {
  animation: rotate 2s linear infinite;
  width: 20px;
  height: 20px;
}
.spinner .path {
  stroke: #fff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/* Menu Responsivo */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #1e3d2f;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: flex !important;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 300;
  }
  nav.menu {
    position: fixed !important;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 400;
    display: block !important;
    padding-top: 60px;
  }
  nav.menu.active {
    transform: translateX(0);
  }
  nav.menu ul {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 24px;
    margin: 0;
    height: 100%;
    justify-content: flex-start;
    display: flex;
  }
  .menu-close {
    display: block !important;
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #179b3a;
    z-index: 410;
    cursor: pointer;
    line-height: 1;
  }
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 350;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .menu-overlay.active {
    display: block;
    opacity: 1;
  }
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}
@media (min-width: 901px) {
  nav.menu {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    z-index: auto !important;
    display: flex !important;
    padding-top: 0 !important;
  }
  .menu-close {
    display: none !important;
  }
  .menu-overlay {
    display: none !important;
  }
}

/* HERO-PROPOSITO RESPONSIVO REFEITO */
@media (max-width: 900px) {
  .hero-proposito {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: relative !important;
    padding-bottom: 0 !important;
  }
  .hero-proposito-img {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    min-height: 160px !important;
    max-height: 240px !important;
    object-fit: cover !important;
    z-index: 1 !important;
    display: block !important;
    border-radius: 0 !important;
  }
  .hero-proposito-box {
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    bottom: auto !important;
    margin: 18px auto 0 auto !important;
    z-index: 1 !important;
    width: 96vw !important;
    max-width: 98vw !important;
    border-radius: 24px !important;
    padding: 24px 10px 18px 10px !important;
    gap: 12px !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10) !important;
    background: rgba(27,140,56,0.97) !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-proposito-box > div {
    width: 100% !important;
    min-width: 0 !important;
    align-items: center !important;
    text-align: center !important;
  }
}
@media (min-width: 901px) {
  .hero-proposito {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    height: 420px !important;
    min-height: 320px !important;
    max-height: 600px !important;
    position: relative !important;
    background: #fff !important;
    overflow: visible !important;
  }
  .hero-proposito-img {
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    border-radius: 0 !important;
  }
  .hero-proposito-box {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -80px !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 90% !important;
    max-width: 950px !important;
    background: rgba(27,140,56,0.97) !important;
    border-radius: 40px !important;
    padding: 48px 48px 36px 48px !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10) !important;
    gap: 48px !important;
  }
  .hero-proposito-box > div {
    min-width: 220px !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 480px) {
  .hero-proposito {
    height: 220px !important;
    min-height: 160px !important;
    max-height: 240px !important;
  }
  .hero-proposito-box {
    padding: 14px 4vw 10px 4vw !important;
    gap: 8px !important;
  }
  .hero-proposito-box h1 {
    font-size: 1rem !important;
  }
  .hero-proposito-box p {
    font-size: 0.89rem !important;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .semicircle-bg {
    right: -40px;
    width: 150px;
    height: 150px;
    top: -15px;
  }
  .menu-toggle {
    top: 15px;
    right: 15px;
  }
  nav.menu {
    width: 100%;
    right: -100%;
  }
}

/* Overlay do menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.32);
  z-index: 110;
}
.menu-overlay.active {
  display: block;
  opacity: 1;
}
/* Ajuste do body quando menu está aberto */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
/* Ajuste do conteúdo principal */
.hero-slider {
  margin-top: 78px;
}
/* Animações do Hero Slider */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-left {
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.3s;
}

.animate-right {
  opacity: 0;
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.3s;
}

.animate-item {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-features li:nth-child(1) {
  animation-delay: 0.6s;
}

.hero-features li:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-features li:nth-child(3) {
  animation-delay: 1s;
}

.hero-features li:nth-child(4) {
  animation-delay: 1.2s;
}

.btn.btn-slide.animate-item {
  animation-delay: 1.4s;
}

.slide-qs {
  position: relative;
  min-height: 340px;
  max-height: 340px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 0 0 0 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: slideFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
}
@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sobre-overlay { display: none !important; }
.sobre-pontinhos-externo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 18px;
  position: static;
  pointer-events: none;
}
.sobre-pontinhos-externo span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #16a34a;
  border-radius: 50%;
  opacity: 0.18;
  transition: opacity 0.2s;
}
.sobre-pontinhos-externo span:nth-child(2) {
  opacity: 1;
}
.sobre-titulo {
  color: #179b3a;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
  max-width: 1050px;
  margin: 0 auto 28px auto;
  padding-left: 0;
}
.sobre-conteudo {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  padding: 56px 56px 40px 56px;
  margin-top: 0;
  margin-bottom: 48px;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.sobre-alinhado p {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 18px;
  line-height: 1.6;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
}
.sobre-alinhado .lead {
  font-size: 1.22rem;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .sobre-conteudo {
    max-width: 98vw;
    padding: 32px 12px 24px 12px;
  }
  .sobre-titulo {
    font-size: 1.5rem;
    max-width: 98vw;
  }
  .sobre-pontinhos-externo {
    gap: 7px;
    margin-top: 18px;
    margin-bottom: 10px;
  }
  .sobre-pontinhos-externo span {
    width: 8px;
    height: 8px;
  }
}
.sobre-texto-livre {
  max-width: 900px;
  margin: 0 auto 48px auto;
  padding: 0 16px;
}
.sobre-texto-livre p {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 18px;
  line-height: 1.6;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
}
.sobre-texto-livre .lead {
  font-size: 1.22rem;
  font-weight: 500;
}
.ajuda-acam {
  background: #179b3a;
  padding: 80px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.ajuda-bg-asterisk {
  position: absolute;
  right: 80px;
  top: 38%;
  width: 260px;
  height: 260px;
  background: url('assets/img/icones/asterisk-bg.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}
.ajuda-bg-circle {
  position: absolute;
  left: -120px;
  bottom: 40px;
  width: 180px;
  height: 180px;
  background: #eafaf1;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.ajuda-pontinhos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px auto;
  margin-top: 0;
}
.ajuda-pontinhos span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.18;
}
.ajuda-pontinhos span:nth-child(2) {
  opacity: 1;
}
.ajuda-titulo {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: center;
  margin: 0 auto 48px auto;
  max-width: 600px;
}
.ajuda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 36px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.ajuda-card {
  background: linear-gradient(135deg, #179b3a 80%, #12802e 100%);
  border: 1.5px solid #fff;
  border-radius: 16px;
  padding: 44px 40px 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  min-height: 270px;
  height: auto;
  box-shadow: none;
  transition: border-color 0.2s;
  overflow: hidden;
}
.ajuda-card:hover {
  border-color: #eafaf1;
}
.ajuda-icon {
  margin-bottom: 36px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.ajuda-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  z-index: 2;
}
.ajuda-icon::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 18px;
  width: 90px;
  height: 46px;
  background: #1fc97a;
  border-radius: 100px 100px 0 0 / 80px 80px 0 0;
  opacity: 0.18;
  z-index: 1;
}
.ajuda-card-content {
  width: 100%;
  text-align: left;
  padding-right: 2px;
}
.ajuda-card-content h3 {
  color: #fff;
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
}
.ajuda-card-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  line-height: 1.7;
  font-family: 'Manrope', Arial, sans-serif;
  margin-bottom: 0;
  text-align: left;
  padding-right: 2px;
}
.ajuda-card-num {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  opacity: 0.18;
  font-family: 'Manrope', Arial, sans-serif;
}
@media (max-width: 900px) {
  .ajuda-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 98vw;
  }
  .ajuda-card {
    height: auto;
    min-height: 220px;
    padding: 32px 12px 32px 12px;
  }
  .ajuda-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }
  .ajuda-icon img {
    width: 56px;
    height: 56px;
  }
  .ajuda-icon::before {
    width: 62px;
    height: 32px;
    left: -10px;
    top: 10px;
  }
}
.qs-hero {
  position: relative;
  width: 100%;
  height: clamp(600px, 85vh, 750px);
  min-height: 400px;
  max-height: 450px;
  overflow: hidden;
  background: #fff;
  z-index: 1;
}
.qs-hero-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.qs-hero-circle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  background: #aee9c6;
  border-radius: 50%;
  z-index: 2;
  transform: translate(40%, 40%);
  opacity: 0.45;
}
.qs-caixa-sobreposta {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 56px 56px 40px 56px;
  margin-top: 0;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  text-align: center;
}
.qs-pontinhos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.qs-pontinhos span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #16a34a;
  border-radius: 50%;
  opacity: 0.18;
}
.qs-pontinhos span:nth-child(2) {
  opacity: 1;
}
.qs-titulo {
  color: #179b3a;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: center;
}
.qs-texto {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.6;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: center;
}
.qs-texto .lead {
  font-size: 1.22rem;
  font-weight: 500;
  }

/* Seção Como Ajudamos */
.como-ajudamos {
  background: #1b5e20;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.como-ajudamos::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}

.como-ajudamos .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.como-ajudamos-pontinhos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.como-ajudamos-pontinhos span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.como-ajudamos-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.servico-item {
  background: #2e7d32;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* Ajuste: posicionamento relativo para conter elementos absolutos */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 80px; /* Ajuste: padding-top ajustado para o novo posicionamento */
}

.servico-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.servico-numero {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 10;
}

.servico-icon-container {
  width: 50px; /* SEMICÍRCULO: ajuste independente - tamanho do quadrante */
  height: 50px; /* SEMICÍRCULO: ajuste independente - tamanho do quadrante */
  background: #4caf50; /* SEMICÍRCULO: cor do quadrante */
  border-radius: 40px 0 0 0; /* SEMICÍRCULO: forma do quadrante (sempre igual ao width) */
  position: absolute; /* SEMICÍRCULO: posicionamento absoluto */
  top: 15px; /* SEMICÍRCULO: posição vertical independente do ícone */
  left: 15px; /* SEMICÍRCULO: posição horizontal independente do ícone */
  z-index: 1; /* SEMICÍRCULO: atrás do ícone */
}

.servico-icon-img {
  width: 120px; /* ÍCONE: ajuste independente - tamanho do ícone */
  height: 120px; /* ÍCONE: ajuste independente - tamanho do ícone */
  filter: brightness(0) invert(1); /* ÍCONE: cor branca */
  position: absolute; /* ÍCONE: posicionamento absoluto */
  top: 10px; /* ÍCONE: posição vertical independente do semicírculo */
  left: 20px; /* ÍCONE: posição horizontal independente do semicírculo */
  z-index: 2; /* ÍCONE: na frente do semicírculo */
}

.servico-content {
  text-align: left;
  width: 100%;
}

.servico-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.servico-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  text-align: left;
}

.servico-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.servico-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  text-align: left;
}

/* Responsividade para Como Ajudamos */
@media (max-width: 768px) {
  .como-ajudamos {
    padding: 40px 0;
  }
  
  .como-ajudamos-titulo {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .servico-item {
    padding: 60px 15px 20px 15px; /* Ajuste mobile: padding-top ajustado para o novo posicionamento */
    background: #2e7d32;
    border: 2px solid #fff;
    text-align: left;
  }
  
  .servico-icon-container {
    width: 40px; /* Ajuste mobile: quadrante maior para servir de fundo ao ícone */
    height: 40px; /* Ajuste mobile: quadrante maior para servir de fundo ao ícone */
    background: #4caf50; /* Ajuste mobile: mudado de #1b5e20 para #4caf50 - verde mais amarelado */
    border-radius: 40px 0 0 0; /* Ajuste mobile: border-radius ajustado para 40px para manter proporção */
    position: absolute; /* Ajuste mobile: posicionamento absoluto para semicírculo ficar atrás do ícone */
    top: 4px; /* Ajuste mobile: posicionamento do quadrante ligeiramente abaixo do ícone */
    left: 4px; /* Ajuste mobile: posicionamento do quadrante ligeiramente à direita do ícone */
    z-index: 1; /* Ajuste mobile: z-index menor para ficar atrás do ícone */
  }
  
  .servico-icon-img {
    width: 70px; /* Ajuste mobile: tamanho do ícone independente do semicírculo */
    height: 70px; /* Ajuste mobile: tamanho do ícone independente do semicírculo */
    position: absolute; /* Ajuste mobile: posicionamento absoluto para ícone ficar sobre o semicírculo */
    top: 8px; /* Ajuste mobile: posicionamento vertical independente do semicírculo */
    left: 8px; /* Ajuste mobile: posicionamento horizontal independente do semicírculo */
    z-index: 2; /* Ajuste mobile: z-index maior para ícone ficar na frente do semicírculo */
  }
  
  .servico-numero {
    font-size: 1rem;
    top: 12px;
    right: 12px;
  }
  
  .servico-content {
    text-align: left;
  }
  
  .servico-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .servico-item p {
    font-size: 0.9rem;
  }
  
  .servico-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .servico-icon img {
    width: 25px;
    height: 25px;
  }
  
  .servico-item h3 {
    font-size: 1.1rem;
    color: #fff;
  }
  
  .servico-item p {
    font-size: 0.85rem;
    color: #fff;
  }
}
@media (max-width: 900px) {
  .qs-hero, .qs-hero-img {
    height: clamp(400px, 60vh, 500px);
    min-height: 350px;
    max-height: 500px;
  }
  .qs-hero-circle {
    width: 120px;
    height: 120px;
    transform: translate(30%, 30%);
  }
  .qs-caixa-sobreposta {
    padding: 32px 10px 24px 10px;
    margin-top: 0;
    max-width: 98vw;
  }
  .qs-titulo {
    font-size: 1.3rem;
  }
  .qs-pontinhos span {
    width: 7px;
    height: 7px;
  }
}
.qs-slider-area {
  max-width: 760px;
  margin: 0 auto 64px auto;
  padding: 0 16px;
  text-align: left;
}
.qs-pontinhos-slider {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  margin-top: 48px;
}
.qs-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #16a34a;
  border-radius: 50%;
  opacity: 0.18;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.qs-dot.active {
  opacity: 1;
  box-shadow: 0 0 0 3px #eafaf1;
}
.qs-slider-content {
  position: relative;
  min-height: 220px;
  max-width: 760px;
  margin: 0 auto;
}
.qs-slide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(1.04) translateX(0);
  z-index: 1;
}
.qs-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transform: scale(1) translateX(0);
}
.qs-slide.slide-in-left {
  opacity: 1;
  animation: slideInLeftQS 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(1) translateX(-40px);
}
.qs-slide.slide-in-right {
  opacity: 1;
  animation: slideInRightQS 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(1) translateX(40px);
}
@keyframes slideInRightQS {
  from { opacity: 0; transform: scale(1.04) translateX(60px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}
@keyframes slideInLeftQS {
  from { opacity: 0; transform: scale(1.04) translateX(-60px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}
.qs-titulo {
  color: #179b3a;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 32px;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
  letter-spacing: -0.5px;
}
.qs-texto {
  color: #444;
  font-size: 1.13rem;
  margin-bottom: 0;
  line-height: 1.7;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
}
.qs-texto .lead {
  font-size: 1.18rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  display: block;
}
.qs-texto p {
  margin-bottom: 18px;
}
.qs-texto p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .qs-slider-area {
    max-width: 98vw;
    padding: 0 8px;
  }
  .qs-slider-content {
    min-height: 180px;
    max-width: 98vw;
  }
  .qs-dot {
    width: 8px;
    height: 8px;
  }
  .qs-titulo {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
}
/* --- REFINAMENTO FINAL: COMO SE TORNAR UM ASSOCIADO DA ACAM --- */
.associe-passos-acam {
  background: #eafaf1;
  padding: 80px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.associe-passos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  z-index: 2;
}
.associe-passos-lista {
  flex: 1.3;
  min-width: 340px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-left: 32px;
}
.associe-passos-pontinhos {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.associe-passos-pontinhos span {
  width: 8px;
  height: 8px;
  background: #1fc97a;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.7;
}
.associe-passos-titulo {
  font-size: 2.2rem;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  color: #1a3d2c;
  margin-bottom: 10px;
  line-height: 1.15;
  text-align: left;
}
.associe-passos-sub {
  color: #6fcf97;
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 36px;
  text-align: left;
  max-width: 95%;
}
.associe-passos-ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
}
.associe-passos-ol li {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  min-height: 80px;
}
.associe-passos-num {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 3.5px solid #1fc97a;
  color: #1fc97a;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(31,201,122,0.08);
}
.associe-passos-ol li:not(:last-child) .associe-passos-num::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 52px;
  transform: translateX(-50%);
  width: 6px;
  height: 80px;
  background: #1fc97a;
  z-index: 1;
  border-radius: 3px;
  opacity: 0.35;
}
.associe-passos-texto {
  color: #222;
  font-size: 1.08rem;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.9;
  text-align: left;
  max-width: 420px;
}
.associe-passos-texto b {
  color: #222;
  font-weight: 700;
}
.associe-passos-imagem-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.associe-passos-imagem-wrapper {
  position: relative;
  width: 540px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 260px;
}
.associe-passos-circulo-laranja {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  height: 280px;
  background: #FFB13B;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  z-index: 1;
  pointer-events: none;
}
.associe-passos-retangulo-laranja {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 60px;
  background: #FFB13B;
  border-radius: 0;
  z-index: 1;
  pointer-events: none;
}
.associe-passos-imagem {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
  object-position: bottom;
  z-index: 2;
  background: #fff;
  box-shadow: 0 8px 32px rgba(31,201,122,0.10);
  display: block;
}
@media (max-width: 1100px) {
  .associe-passos-imagem-wrapper {
    width: 180px;
    height: 220px;
  }
  .associe-passos-circulo-laranja {
    width: 180px;
    height: 180px;
    border-top-right-radius: 180px;
  }
  .associe-passos-retangulo-laranja {
    width: 180px;
    height: 40px;
  }
  .associe-passos-imagem {
    border-radius: 18px;
  }
}
@media (max-width: 900px) {
  .associe-passos-imagem-wrapper {
    width: 110px;
    height: 130px;
  }
  .associe-passos-circulo-laranja {
    width: 110px;
    height: 110px;
    border-top-right-radius: 110px;
  }
  .associe-passos-retangulo-laranja {
    width: 110px;
    height: 20px;
  }
  .associe-passos-imagem {
    border-radius: 8px;
  }
}
/* --- IMAGEM SVG MAO E FOLHA COM FUNDO AMARELO --- */
.associe-passos-imagem-svg {
  width: 540px;
  height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 1100px) {
  .associe-passos-imagem-wrapper {
    width: 220px;
    height: 220px;
  }
  .associe-passos-imagem-svg {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 900px) {
  .associe-passos-imagem-wrapper {
    width: 120px;
    height: 120px;
  }
  .associe-passos-imagem-svg {
    width: 120px;
    height: 120px;
  }
}
/* --- ÚLTIMA SEÇÃO: CHAMADA PARA AÇÃO --- */
.associe-final-cta {
  width: 100%;
  background: none;
  padding: 0 0 48px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.associe-final-container {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, #179b3a 60%, #12802e 100%);
  border-radius: 0 0 56px 56px;
  padding: 56px 32px 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.associe-final-texto {
  color: #fff;
  font-size: 1.13rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 36px;
  max-width: 800px;
  font-family: 'Manrope', Arial, sans-serif;
}
.associe-final-texto b {
  font-weight: 700;
  color: #fff;
}
.btn.btn-associe-final {
  background: #FFB13B;
  color: #222;
  border-radius: 30px;
  padding: 14px 38px;
  font-size: 1.13rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
  margin: 0 auto;
}
.btn.btn-associe-final:hover {
  background: #ff9800;
  color: #fff;
}
@media (max-width: 900px) {
  .associe-final-container {
    border-radius: 0 0 32px 32px;
    padding: 36px 10px 36px 10px;
  }
  .associe-final-texto {
    font-size: 1rem;
    max-width: 98vw;
  }
}
/* --- FUNDO SOCIAL PAGE --- */
.fs-hero {
  width: 100%;
  height: 340px;
  min-height: 340px;
  max-height: 340px;
  position: relative;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 900px) {
  .fs-hero {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }
}
.fs-hero-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
}
.fs-main-area {
  background: #eafaf1;
  padding: 0 0 48px 0;
  position: relative;
  z-index: 3;
  margin-top: 0;
}
.fs-header-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 24px 0 24px;
  text-align: left;
}
.fs-pontinhos-slider {
  display: flex;
  gap: 7px;
  margin-top: 0;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.fs-titulo {
  color: #17643a;
  font-size: 2.6rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: 'Manrope', Arial, sans-serif;
}
.fs-lead {
  color: #444;
  font-size: 1.08rem;
  font-weight: 400;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.6;
  max-width: 700px;
}
@media (max-width: 900px) {
  .fs-header-area {
    max-width: 98vw;
    padding: 8px 10px 0 10px;
  }
  .fs-titulo {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  .fs-pontinhos-slider {
    margin-bottom: 6px;
  }
}
.fs-desc {
  color: #7b8a8e;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 36px;
  margin-top: 0;
}
.fs-cards-area {
  display: flex;
  gap: 36px;
  margin: 48px auto 32px auto;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
}
.fs-card {
  background: #fff;
  border: 1.2px solid #179b3a;
  border-radius: 16px;
  box-shadow: none;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 32px 24px;
  position: relative;
  transition: border 0.3s;
}
.fs-card-icon-bg {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
}
.fs-card-quarter {
  position: absolute;
  left: -35%;
  bottom: 0;
  width: 100px;
  height: 100px;
  background: #B6E7C7;
  border-top-left-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
  z-index: 1;
  transform: rotate(-90deg);
}
.fs-card-icon {
  position: relative;
  top: 15%;
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  margin: 0 0 0 0;
  z-index: 2;
}
.fs-card-content h3 {
  color: #16A34A;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
  line-height: 1.3;
}
.fs-card-content p {
  color: #6B7280;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
}
.fs-card-highlight {
  color: #16A34A;
  font-weight: 600;
}
.fs-bg-asterisk {
  position: absolute;
  right: 0;
  top: 60%;
  width: 220px;
  height: 220px;
  background: url('assets/img/icones/asterisk-bg.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .fs-cards-area {
    flex-direction: column;
    gap: 24px;
    max-width: 98vw;
    margin: 32px auto 24px auto;
  }
  .fs-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 24px 10px 18px 10px;
  }
  .fs-bg-asterisk {
    width: 80px;
    height: 80px;
    right: 10px;
    top: 60%;
  }
}
.fs-dot {
  width: 12px;
  height: 12px;
  background: #16a34a;
  border-radius: 50%;
  opacity: 0.18;
  display: inline-block;
  margin-right: 8px;
  transition: opacity 0.3s, box-shadow 0.3s;
}
.fs-dot.active {
  opacity: 1;
  background: #16a34a;
  box-shadow: 0 0 0 3px #eafaf1;
}
.fs-titulo, .qs-titulo {
  color: #179b3a;
  font-size: 2.7rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
}
.fs-lead, .qs-texto {
  color: #444;
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 18px;
  margin-top: 0;
  font-family: 'Manrope', Arial, sans-serif;
  text-align: left;
}
.fs-pontinhos-slider, .qs-pontinhos-slider {
  display: flex;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 8px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .fs-titulo, .qs-titulo {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .fs-lead, .qs-texto {
    font-size: 0.98rem;
    margin-bottom: 10px;
  }
  .fs-pontinhos-slider, .qs-pontinhos-slider {
    gap: 6px;
    margin-bottom: 6px;
  }
}

/* HEADER RESPONSIVO */
@media (max-width: 900px) {
  .site-header .header-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }
  nav.menu ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  nav.menu ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    z-index: 101;
  }
  .btn.btn-associe {
    margin-left: 0;
    margin-top: 12px;
    width: 90vw;
    max-width: 320px;
  }
}

/* HERO E CAIXA VERDE RESPONSIVO */
@media (max-width: 900px) {
  .hero-proposito {
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    margin-top: 0px;
  }
  .hero-proposito-box {
    flex-direction: column;
     gap: 18px !important;
    width: 98vw !important;
    max-width: 98vw !important;
    border-radius: 24px !important;
  }
  .hero-proposito-box h1 {
    font-size: 1.3rem !important;
    text-align: center;
  }
  .hero-proposito-box p {
    font-size: 0.98rem !important;
    text-align: center;
    margin-bottom: 18px !important;
  }
  .btn.btn-hero-associe {
    width: 100%;
    font-size: 1rem !important;
    padding: 12px 0 !important;
    text-align: center;
  }
}

/* QUEM SOMOS RESPONSIVO */
.sobre-acam {
  padding: 0;
}
.sobre-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 0 32px;
  min-height: 420px;
}
.sobre-texto {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-label {
  color: #6fcf97;
  font-size: 0.95rem;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.sobre-texto h2 {
  color: #17643a;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
}
.sobre-texto .destaque {
  color: #179b3a;
  font-weight: 800;
}
.sobre-texto p {
  color: #444;
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.btn.btn-sobre {
  background: #179b3a;
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 16px 44px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: background 0.3s;
  align-self: flex-start;
}
/* Definição duplicada removida - usando a definição principal acima */
@media (max-width: 900px) {
  .sobre-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px 0 8px;
    min-height: 0;
  }
  .sobre-texto {
    align-items: center;
    text-align: center;
  }
  .sobre-texto h2 {
    font-size: 1.4rem;
  }
  .sobre-texto p {
    font-size: 0.98rem;
    margin-bottom: 18px;
    max-width: 98vw;
  }
  .btn.btn-sobre {
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }
  /* Definição mobile removida - usando a definição principal acima */
}
/* CAIXAS DE TEXTO E SEÇÕES PRINCIPAIS RESPONSIVAS */
@media (max-width: 900px) {
  .sobre, .quem-somos, .fundo-social, .hero, .caixa-destaque, .caixa-sobreposta, .caixa-quem-somos, .caixa-fundo-social {
    padding: 18px 8px 18px 8px !important;
    border-radius: 18px;
    text-align: center;
    margin: 0 0 18px 0;
  }
  .sobre h2, .quem-somos h2, .fundo-social h2, .hero h2, .caixa-destaque h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .sobre p, .quem-somos p, .fundo-social p, .hero p, .caixa-destaque p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .caixa-destaque img, .caixa-sobreposta img, .caixa-quem-somos img, .caixa-fundo-social img, .hero img, .quem-somos img, .fundo-social img:not(.fs-icon-img) {
    max-width: 90vw;
    width: 100%;
    height: auto;
    margin: 0 auto 12px auto;
    display: block;
  }
  .caixa-destaque .quarter-circle, .caixa-sobreposta .quarter-circle, .caixa-quem-somos .quarter-circle, .caixa-fundo-social .quarter-circle {
    width: 60px;
    height: 60px;
    left: -18px;
    top: -18px;
  }
}
/* AJUSTES FINAIS DE TIPOGRAFIA E ESPAÇAMENTO MOBILE */
@media (max-width: 900px) {
  h1, h2, h3, h4 {
    font-size: 1.1rem !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }
  p, li, .card-text, .beneficio-card-bottom p {
    font-size: 0.98rem !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  .container {
    padding-left: 6px !important;
    padding-right: 6px !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  body, html {
    overflow-x: hidden !important;
  }
}

/* AJUSTE DA CAIXA VERDE (HERO) E SLIDER NO MOBILE */
@media (max-width: 900px) {
  .hero {
    margin-top: 0 !important;
    padding: 18px 8px !important;
    border-radius: 18px;
    text-align: center;
  }
  .hero h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .hero img {
    max-width: 90vw;
    width: 100%;
    height: auto;
    margin: 0 auto 12px auto;
    display: block;
  }
  .slider {
    margin-top: 0 !important;
    padding: 18px 8px !important;
  }
  .quem-somos {
    margin-top: 18px !important;
  }
}

/* AJUSTE DA SEÇÃO 'QUEM SOMOS' PARA IMAGEM EM PRIMEIRO PLANO */
.quem-somos {
  position: relative;
  z-index: 1;
  background: #f0f8ff; /* Fundo azulado */
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.quem-somos img {
  position: relative;
  z-index: 2; /* Aumentar z-index para ficar sobre o fundo */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

/* ALINHAMENTO DOS TÍTULOS COM O GRID DOS CARDS */
.beneficios-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-left: 0;
  padding-right: 0;
}
.beneficios-label,
.beneficios-acam h2 {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  max-width: 1000px;
  margin-right: auto;
}
@media (max-width: 900px) {
  .beneficios-container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .beneficios-label,
  .beneficios-acam h2 {
    text-align: center;
    margin-left: 0;
    padding-left: 0;
    max-width: 98vw;
  }
}

/* CORREÇÃO DO OVERLAY E Z-INDEX DO MENU MOBILE */
@media (max-width: 900px) {
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55) !important;
    z-index: 200 !important;
    opacity: 1 !important;
    transition: opacity 0.3s;
  }
  .menu-overlay.active {
    display: block;
    opacity: 1 !important;
  }
  nav.menu {
    z-index: 210 !important;
  }
}

/* HERO-PROPOSITO: CAIXA VERDE ABAIXO DO SLIDE NO MOBILE */
@media (max-width: 900px) {
  .hero-proposito {
    position: relative !important;
    height: 320px !important;
    min-height: 220px !important;
    max-height: 340px !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
  }
  .hero-proposito-box {
    position: static !important;
    left: auto !important;
    transform: none !important;
    bottom: auto !important;
    margin: 18px auto 0 auto !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 96vw !important;
    max-width: 98vw !important;
    background: rgba(27,140,56,0.97) !important;
    border-radius: 24px !important;
    padding: 24px 10px 18px 10px !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10) !important;
    gap: 12px !important;
  }
}
@media (max-width: 480px) {
  .hero-proposito {
    height: 220px !important;
    min-height: 160px !important;
    max-height: 240px !important;
  }
  .hero-proposito-box {
    margin: 12px auto 0 auto !important;
    padding: 14px 4vw 10px 4vw !important;
    gap: 8px !important;
  }
}

/* --- MENU SEM MOBILE --- */
.menu-toggle, .menu-close, .menu-overlay { display: none !important; }
nav.menu {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
  z-index: auto !important;
  padding-top: 0 !important;
}
nav.menu ul {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  padding: 0;
  margin: 0;
}
@media (max-width: 900px) {
  nav.menu ul {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
}
/* --- HERO CAIXA VERDE SEMPRE ABAIXO DO SLIDE NO MOBILE --- */
@media (max-width: 900px) {
  .hero-proposito {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: relative !important;
    padding-bottom: 0 !important;
  }
  .hero-proposito-img {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    min-height: 160px !important;
    max-height: 240px !important;
    object-fit: cover !important;
    z-index: 1 !important;
    display: block !important;
    border-radius: 0 !important;
  }
  .hero-proposito-box {
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    bottom: auto !important;
    margin: 18px auto 0 auto !important;
    z-index: 1 !important;
    width: 96vw !important;
    max-width: 98vw !important;
    border-radius: 24px !important;
    padding: 24px 10px 18px 10px !important;
    gap: 12px !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10) !important;
    background: rgba(27,140,56,0.97) !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-proposito-box > div {
    width: 100% !important;
    min-width: 0 !important;
    align-items: center !important;
    text-align: center !important;
  }
}

/* --- REMOVIDO MENU ANTIGO MOBILE --- */
/* .menu-toggle, .menu-overlay, nav.menu (mobile) removidos para evitar conflito com menu IA */

/* MENU MOBILE MODERNO IA */
@media (max-width: 900px) {
  .site-header .menu {
    display: none !important;
  }
  .ia-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    position: relative;
  }
  .ia-mobile-menu-btn .ia-bar {
    width: 28px;
    height: 3px;
    background: #179b3a;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
  }
  .ia-mobile-menu-btn.active .ia-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .ia-mobile-menu-btn.active .ia-bar:nth-child(2) {
    opacity: 0;
  }
  .ia-mobile-menu-btn.active .ia-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .ia-mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,40,30,0.55);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .ia-mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .ia-mobile-menu {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(22,163,74,0.10);
    z-index: 1202;
    padding: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
  }
  .ia-mobile-menu.active {
    right: 0;
  }
  .ia-mobile-menu ul {
    list-style: none;
    padding: 0 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .ia-mobile-menu li {
    border-bottom: 1px solid #eafaf1;
  }
  .ia-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    color: #179b3a;
    font-size: 1.13rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
  }
  .ia-mobile-menu a:hover {
    background: #eafaf1;
    color: #43a047;
  }
  .ia-mobile-menu .ia-menu-icon {
    font-size: 1.25em;
    color: #43a047;
    width: 22px;
    text-align: center;
  }
}

/* Correção: menu mobile IA só aparece em telas pequenas */
.ia-mobile-menu, .ia-mobile-menu-btn, .ia-mobile-menu-overlay {
  display: none;
}
@media (max-width: 900px) {
  .ia-mobile-menu-btn {
    display: flex;
  }
  .ia-mobile-menu {
    display: flex;
  }
  .ia-mobile-menu-overlay {
    display: block;
  }
}

/* Estilos do Popup */
.popup-modal {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: modalSlideIn 0.4s ease-out;
}

.popup-close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 32px;
    height: 32px;
    font-size: 24px;
    font-weight: 300;
    color: #666;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.popup-content h2 {
    color: #179b3a;
    margin: 0 0 25px 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    padding-right: 40px;
}

.popup-image-container {
    margin: 25px 0;
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
}

.popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: inline-block;
    transition: transform 0.3s ease;
}

.popup-image:hover {
    transform: scale(1.02);
}

.popup-text {
    color: #444;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 0 5px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .popup-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .popup-content h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .popup-text {
        font-size: 1rem;
    }

    .popup-close {
        right: 15px;
        top: 15px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

/* Animações do Hero */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-left {
    animation: slideInFromLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideInFromRight 1s ease-out;
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-up-delay-1 {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-up-delay-2 {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.animate-fade-up-delay-3 {
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Aplicação das animações no Hero */
.hero-proposito-img {
    animation: slideInFromLeft 1s ease-out;
}

.hero-proposito-box {
    animation: slideInFromRight 1s ease-out;
}

.hero-proposito-box h1 {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-proposito-box p {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-proposito-box .btn-hero-associe {
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Ajustes no Hero */
.hero-proposito {
    position: relative;
    width: 100%;
    height: 420px;
    min-height: 320px;
    max-height: 600px;
    overflow: visible;
    background: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 0;
}

.hero-proposito-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-proposito-box {
    position: relative;
    z-index: 2;
    background: linear-gradient(120deg, rgba(23, 155, 58, 0.95) 0%, rgba(67, 160, 71, 0.95) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 20px 40px 20px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.hero-proposito-box h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.hero-proposito-box p {
    color: #eafaf1;
    font-size: 1.08rem;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 340px;
}

.btn-hero-associe {
    background: #ffb13b;
    color: #222;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 16px 38px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-hero-associe:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Responsividade do Hero */
@media (max-width: 1024px) {
    .hero-proposito-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        margin: 0 15px 30px 15px;
    }

    .hero-proposito-box h1 {
        font-size: 2rem;
    }

    .hero-proposito-box p {
        margin: 0 auto 28px auto;
    }
}

@media (max-width: 768px) {
    .hero-proposito {
        height: auto;
        min-height: 500px;
    }

    .hero-proposito-box {
        padding: 25px;
        margin: 0 10px 20px 10px;
    }

    .hero-proposito-box h1 {
        font-size: 1.8rem;
    }

    .hero-proposito-box p {
        font-size: 1rem;
    }

    .btn-hero-associe {
        font-size: 1.1rem;
        padding: 14px 30px;
    }
}

/* Estilos para o Blog */
.blog-hero {
    background: linear-gradient(90deg, #1db954 0%, #159c42 100%);
    color: #fff;
    padding: 48px 0 32px 0;
    text-align: center;
}
.blog-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.blog-hero p {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.95;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 24px 0;
  flex-wrap: wrap;
}
.blog-filter-btn {
  background: #fff;
  color: #159c42;
  border: 2px solid #1db954;
  border-radius: 22px;
  padding: 8px 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px #1db95422;
}
.blog-filter-btn.active, .blog-filter-btn:hover {
  background: #1db954;
  color: #fff;
  border-color: #159c42;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 48px auto;
  padding: 0 16px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #1db95418;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  min-height: 420px;
}
.blog-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 32px #1db95433;
}
.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #e6f7ed;
}
.blog-card-content {
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #159c42;
  margin-bottom: 8px;
}
.blog-card-date {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 10px;
}
.blog-card-summary {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-link {
  align-self: flex-start;
  background: #1db954;
  color: #fff;
  padding: 8px 22px;
  border-radius: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-card-link:hover {
  background: #159c42;
}

@media (max-width: 700px) {
  .blog-hero {
    padding: 28px 0 18px 0;
  }
  .blog-hero h1 {
    font-size: 1.3rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 4px;
  }
  .blog-card {
    min-height: 320px;
  }
  .blog-card-img {
    height: 120px;
  }
  .blog-card-content {
    padding: 12px 8px 10px 8px;
  }
}

/* Estilos para Seja um Parceiro */
/* Estilos antigos removidos - usando os novos estilos abaixo */

.parceiro-beneficios {
    padding: 60px 0;
    background: #f9f9f9;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
}

.beneficio-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #179b3a;
}

.parceiro-form {
    padding: 60px 0;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #179b3a;
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-hero h1,
    .parceiro-hero h1 {
        font-size: 2rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }
}

/* BLOG */
.blog-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.blog-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-hero-circle {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
}

.blog-caixa-sobreposta {
  position: relative;
  background: white;
  margin: -100px auto 0;
  max-width: 800px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 2;
}

.blog-pontinhos {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.blog-pontinhos span {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
}

.blog-titulo {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.blog-texto {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.blog-texto .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
}

.blog-grid {
  padding: 60px 0;
  background: var(--bg-light);
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  background: white;
  border-radius: 30px;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-color);
  color: white;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-img {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.blog-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-categoria {
  display: inline-block;
  padding: 5px 15px;
  background: var(--accent-color);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-card-titulo {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-data {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-card-resumo {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
}

.btn-blog {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blog:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
  .blog-hero {
    height: 40vh;
  }

  .blog-caixa-sobreposta {
    margin: -50px 20px 0;
    padding: 30px;
  }

  .blog-titulo {
    font-size: 2rem;
  }

  .blog-texto {
    font-size: 1rem;
  }

  .blog-filters {
    flex-wrap: wrap;
  }

  .blog-posts {
    grid-template-columns: 1fr;
  }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0;
  height: 70px;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: var(--accent-color);
}

.header-buttons {
  display: flex;
  gap: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #179b3a;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  padding-top: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #179b3a;
  color: white;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
}

.mobile-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a {
  display: block;
  padding: 20px 30px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.mobile-menu a:hover {
  background: #f8f9fa;
  color: #179b3a;
}

.mobile-menu .mobile-menu-buttons {
  padding: 20px 30px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Responsive Header */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .header-buttons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .header-content {
    padding: 0 15px;
  }
}

/* Animações de entrada e saída para slides */
@keyframes slideImageIn {
  0% { opacity: 0; transform: translateX(-50px) scale(1.05); filter: blur(0px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0px); }
}

@keyframes slideImageOut {
  0% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0px); }
  50% { opacity: 0.5; filter: blur(2px); }
  100% { opacity: 0; transform: translateX(-100px) scale(0.95); filter: blur(4px); }
}

@keyframes slideTextIn {
  0% { opacity: 0; transform: translateY(60px); filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}

@keyframes slideTextOut {
  0% { opacity: 1; transform: translateY(0); filter: blur(0px); }
  50% { opacity: 0.3; filter: blur(1px); }
  100% { opacity: 0; transform: translateY(-20px); filter: blur(2px); }
}

@keyframes slideBoxIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(40px); filter: blur(0px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); filter: blur(0px); }
}

@keyframes slideBoxOut {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); filter: blur(0px); }
  50% { opacity: 0.3; filter: blur(1px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); filter: blur(2px); }
}

.slide-img-animate {
  animation: slideImageIn 0.8s cubic-bezier(.4,0,.2,1);
}

.slide-img-animate-out {
  animation: slideImageOut 0.6s cubic-bezier(.4,0,.2,1);
}

.slide-green-box.slide-custom-box {
  animation: slideBoxIn 0.6s cubic-bezier(.4,0,.2,1) 0.3s both;
}

.slide-green-box.slide-custom-box.slide-box-out {
  animation: slideBoxOut 0.4s cubic-bezier(.4,0,.2,1);
}

.slide-text-animate {
  animation: slideTextIn 1s cubic-bezier(.4,0,.2,1);
}

.slide-text-animate-out {
  animation: slideTextOut 0.4s cubic-bezier(.4,0,.2,1);
}

/* Ajuste para garantir que a imagem do slide possa ser animada */
.slide-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.5s;
}
.slide:not(.active) .slide-image-bg {
  opacity: 0;
}

/* Caixa verde do texto do slide */
.slide-green-box {
  background: #1db954;
  box-shadow: 0 8px 32px #1db95433;
  border-radius: 0 0 32px 0;
  padding: 24px 32px 22px 32px;
  width:40%; /* Ajustado para 40% da largura */
  min-width: 300px; /* Largura mínima para evitar que fique muito estreita */
  max-width: 600px; /* Largura máxima para telas grandes */
  color: #fff;
  position: absolute;
  bottom: -18%;
  left: 0; /* Alinhado à esquerda */
  z-index: 3;
  transform: translateY(0);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: none;
}
.slide-green-box.right {
  right: 60px;
  left: auto;
  border-radius: 0 0 0 32px;
}
.slide-green-box.left {
  left: 60px;
  right: auto;
  border-radius: 0 0 32px 0;
}
.slide-green-box.visible {
  animation: slideGreenBoxIn 1.1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes slideGreenBoxIn {
  0% { opacity: 0; transform: translateY(40%); }
  100% { opacity: 1; transform: translateY(0); }
}
.slide-green-box .slide-main-text {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 16px #159c4280;
}
.slide-green-box .slide-side-text {
  font-size: 1.01rem;
  margin-bottom: 0.7rem;
  color: #eaffea;
}
.slide-green-box .slide-features {
  margin-bottom: 1.1rem;
  padding-left: 1.1em;
}
.slide-green-box .slide-features-list {
  list-style: disc inside;
  margin: 0 0 1.1rem 0;
  padding: 0 0 0 1.1em;
  color: #fff;
  font-size: 1rem;
}
.slide-green-box .slide-cta .btn {
  background: #fff;
  color: #159c42;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 1.01rem;
  box-shadow: 0 2px 8px #1db95433;
  margin-top: 0.5rem;
  transition: background 0.3s, color 0.3s;
}
.slide-green-box .slide-cta .btn:hover {
  background: #159c42;
  color: #fff;
}
@media (max-width: 900px) {
  .hero-slider {
    height: 32vh;
    min-height: 180px;
    max-height: 260px;
  }
  .slide-green-box.right, .slide-green-box.left {
    max-width: 95vw;
    min-width: 0;
    padding: 12px 6px 12px 10px;
    font-size: 0.98rem;
    border-radius: 0 0 18px 0;
    left: 4vw;
    right: 4vw;
    bottom: -10%;
  }
  .slide-green-box .slide-main-text {
    font-size: 1.01rem;
  }
}

@media (max-width: 700px) {
  .hero-slider {
    height: auto;
    min-height: unset;
    max-height: unset;
    padding-bottom: 0;
  }
  .slide {
    position: relative;
    min-height: 220px;
    height: 220px;
    display: block;
  }
  .slide-image-bg {
    position: relative;
    width: 100vw;
    height: 180px;
    min-height: 120px;
    border-radius: 0;
    z-index: 0;
    opacity: 1 !important;
    transition: none;
  }
  .slide-green-box,
  .slide-green-box.right,
  .slide-green-box.left {
    position: static !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: -40px auto 18px auto !important; /* Sobe a caixa e sobrepõe a imagem */
    max-width: 96vw !important;
    min-width: 0 !important;
    width: 96vw !important;
    border-radius: 0 0 18px 18px !important;
    box-shadow: 0 8px 32px #1db95455;        /* Sombra mais visível */
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    z-index: 2;
    display: block;
  }
  .slide-green-box .slide-main-text {
    font-size: 1.01rem;
  }
  .slide-green-box .slide-features-list {
    font-size: 0.98rem;
  }
}

/* BLOG LISTA */
.blog-list {
  max-width: 900px;
  margin: 0 auto 48px auto;
  padding: 0 8px;
}
.blog-list-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0 24px 0;
  position: relative;
}
.blog-list-img {
  flex: 0 0 160px;
  width: 160px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #e6f7ed;
  box-shadow: 0 2px 8px #1db95418;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog-list-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #159c42;
  margin-bottom: 6px;
}
.blog-list-date {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 8px;
}
.blog-list-summary {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 14px;
}
.blog-list-link {
  background: #1db954;
  color: #fff;
  padding: 8px 22px;
  border-radius: 18px;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}
.blog-list-link:hover {
  background: #159c42;
}
.blog-list-divider {
  border: none;
  border-top: 1.5px solid #e0e0e0;
  margin: 0 0 0 0;
}
@media (max-width: 700px) {
  .blog-list-item {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0 12px 0;
  }
  .blog-list-img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
  }
  .blog-list-content {
    padding: 0 2px;
  }
}

/* === SLIDE CUSTOMIZADO ACAM === */
.slide-custom-box {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 20%);
  background: #179b3a;
  border-radius: 40px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  padding: 40px 48px 36px 48px;
  min-width: 320px;
  max-width: 900px;
  width: 80vw;
  display: flex;
  align-items: center;
  z-index: 3;
}
.slide-custom-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 48px;
}
/* Regra removida - .slide-custom-title h1 não se aplica ao HTML atual onde h1 tem a classe diretamente */
.slide-custom-desc-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 340px;
  gap: 24px;
}
.slide-custom-desc-btn p {
  color: #eaffea;
  font-size: 1.13rem;
  line-height: 1.5;
  margin: 0;
}
.btn-slide-custom {
  background: #ffb13b;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 30px;
  padding: 16px 40px;
  border: none;
  box-shadow: 0 4px 16px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-slide-custom:hover {
  background: #ff9800;
  color: #fff;
}
@media (max-width: 900px) {
  .slide-custom-box {
    padding: 18px 10px 18px 10px;
    border-radius: 22px;
    min-width: 0;
    max-width: 98vw;
    width: 98vw;
    transform: translate(-50%, 10%);
  }
  .slide-custom-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  /* Regra removida - .slide-custom-title h1 desnecessária */
  .slide-custom-desc-btn {
    max-width: 100%;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-slide-custom {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
@media (max-width: 600px) {
  .slide-custom-box {
    padding: 10px 2vw 16px 2vw;
    border-radius: 14px;
    width: 99vw;
    min-width: 0;
    max-width: 99vw;
    transform: translate(-50%, 5%);
  }
  /* Regra removida - .slide-custom-title h1 desnecessária */
  .slide-custom-desc-btn p {
    font-size: 0.98rem;
  }
  .btn-slide-custom {
    font-size: 0.98rem;
    padding: 10px 12px;
  }
}
/* === FIM SLIDE CUSTOMIZADO === */

/* Remover setas do slider */
.slider-arrow { display: none !important; }

.slide-custom-content-2col {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  gap: 48px;
}
.slide-col-left {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slide-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.slide-custom-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
.slide-custom-desc {
  color: #eaffea;
  font-size: 1.13rem;
  line-height: 1.5;
  margin: 0;
}
.btn-slide-custom {
  background: #ffb13b;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 30px;
  padding: 16px 40px;
  border: none;
  box-shadow: 0 4px 16px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
.btn-slide-custom:hover {
  background: #ff9800;
  color: #fff;
}
@media (max-width: 900px) {
  .slide-custom-content-2col {
    flex-direction: column;
    gap: 18px;
    max-width: 98vw;
    align-items: flex-start;
  }
  .slide-col-left, .slide-col-right {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .slide-custom-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .slide-custom-content-2col {
    gap: 10px;
    max-width: 99vw;
  }
  .slide-custom-title {
    font-size: 1.01rem;
  }
  .slide-custom-desc {
    font-size: 0.98rem;
  }
  .btn-slide-custom {
    font-size: 0.98rem;
    padding: 10px 12px;
  }
}

/* Padronização final dos SLIDES (tamanho e animações) */
.hero-slider {
  height: clamp(600px, 85vh, 750px) !important; /* Altura aumentada para mostrar mais da imagem */
  min-height: 580px !important;
  max-height: 750px !important;
}
.slide-image-bg {
  transition: opacity 0.5s ease, transform 0.7s ease !important;
}
.slide-img-animate {
  animation-duration: 0.7s !important;
}
.slide-green-box {
  transition: opacity 0.7s ease, transform 0.7s ease !important;
}
.slide-green-box.visible {
  animation-duration: 0.7s !important;
}
.slider-dots {
  display: none !important; /* Remove os três pontinhos de navegação */
}
@media (max-width: 1024px) {
  .hero-slider { height: clamp(450px, 70vh, 550px) !important; min-height: 400px !important; max-height: 550px !important; }
  .slide-green-box.slide-custom-box {
    bottom: -60px !important; /* Metade dentro, metade fora em tablets */
    width: calc(100% - 64px) !important;
    padding: 32px 40px !important;
  }
  .slide-custom-title { 
    font-size: 2.2rem !important; 
    max-width: 70% !important; 
    padding-left: 60px !important; /* Ajuste para tablets */
  }
  .slide-custom-desc-btn p { font-size: 1.1rem !important; }
}
@media (max-width: 700px) {
  .hero-slider { height: clamp(400px, 60vh, 500px) !important; min-height: 350px !important; max-height: 500px !important; }
  .slide { 
    height: clamp(400px, 60vh, 500px) !important; 
    min-height: 350px !important; 
    max-height: 500px !important; 
    display: none !important; /* Oculta todos os slides por padrão */
  }
  .slide.active { display: block !important; } /* Mostra apenas o slide ativo */
  .slide-image-bg { height: 100% !important; }
  .slide-green-box.slide-custom-box {
    position: absolute !important;
    bottom: -15% !important; /* Ajustado para ficar realmente meio a meio sem sobrepor */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    border-radius: 20px !important;
    padding: 20px 16px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 14px !important;
  }
  .slide-custom-title { 
    font-size: 1.9rem !important; /* Aumentado de 1.6rem para 1.9rem para melhor legibilidade */
    text-align: center !important; 
    max-width: 100% !important; 
    padding-left: 0 !important; /* Remove padding em mobile */
    line-height: 1.25 !important; /* Melhorado para 1.25 para melhor espaçamento */
    font-weight: 700 !important; /* Garantindo peso da fonte */
    margin-bottom: 12px !important; /* Aumentado espaçamento inferior */
    color: #fff !important; /* Garantindo cor branca */
  }
  .slide-custom-desc-btn { 
    align-items: center !important; 
    text-align: center !important; 
    gap: 10px !important; 
  }
  .slide-custom-desc-btn p { font-size: 0.95rem !important; line-height: 1.4 !important; }
  .btn-slide-custom { font-size: 0.95rem !important; padding: 10px 20px !important; }
  .slider-dots { display: none !important; }
}

/* Padronização do slider de texto (Quem Somos) */
.qs-slider-content { min-height: 220px !important; }
@media (max-width: 900px) { .qs-slider-content { min-height: 200px !important; } }

/* Acessibilidade e UX */
:focus-visible {
  outline: 3px solid #179b3a;
  outline-offset: 2px;
}
.btn:focus-visible,
.btn.btn-associe:focus-visible,
.btn.btn-fundo-social:focus-visible,
.btn.btn-blog:focus-visible,
.btn.btn-contato:focus-visible {
  outline: 3px solid #ffb13b;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #179b3a;
  color: #fff;
  border-radius: 8px;
  z-index: 2000;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===== COMO SE TORNAR ASSOCIADO ===== */
.como-associar {
  background: #E8F5E9;
  padding: 80px 0;
  position: relative;
}

.como-associar-pontinhos {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.como-associar-pontinhos span {
  width: 8px;
  height: 8px;
  background: #1b5e20;
  border-radius: 50%;
  opacity: 0.8;
}

.como-associar-titulo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b5e20;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.como-associar-descricao {
  font-size: 1.1rem;
  color: #1b5e20;
  text-align: left;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  line-height: 1.6;
}

.como-associar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.passos-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.passo-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.passo-numero {
  width: 40px;
  height: 40px;
  background: #E8F5E9;
  color: #1b5e20;
  border: 2px solid #1b5e20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 2;
}

.passo-linha {
  width: 2px;
  height: 30px;
  background: #1b5e20;
  position: absolute;
  left: 19px;
  top: 40px;
  z-index: 1;
}

.passo-item:last-child .passo-linha {
  display: none;
}

.passo-texto {
  font-size: 1rem;
  color: #1b5e20;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
}

.como-associar-imagem {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.imagem-principal {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.decoracao-laranja {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 120px;
  background: #FFB300;
  border-radius: 100px 100px 0 0;
  opacity: 0.9;
  z-index: 1;
}

/* Responsividade - Como Associar */
@media (max-width: 768px) {
  .como-associar {
    padding: 60px 0;
  }
  
  .como-associar-titulo {
    font-size: 2rem;
    text-align: left;
  }
  
  .como-associar-descricao {
    font-size: 1rem;
    margin-bottom: 40px;
    text-align: left;
  }
  
  .como-associar-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .passos-container {
    gap: 25px;
  }
  
  .passo-item {
    gap: 15px;
  }
  
  .passo-numero {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .passo-linha {
    left: 17px;
    top: 35px;
  }
  
  .passo-texto {
    font-size: 0.95rem;
    padding-top: 6px;
  }
  
  .imagem-principal {
    height: 300px;
  }
  
  .decoracao-laranja {
    width: 120px;
    height: 70px;
    bottom: -20px;
    right: -20px;
    border-radius: 60px 60px 0 0;
  }
}

/* ===== CHAMADA PARA AÇÃO - ASSOCIAÇÃO ===== */
.cta-associacao {
  background: white;
  padding: 0 0 80px 0;
  position: relative;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-conteudo {
  background: linear-gradient(180deg, #2E7D32 0%, #1B5E20 100%);
  border-radius: 0 0 20px 20px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-texto {
  font-size: 1.1rem;
  color: #f5f5f5;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-texto strong {
  font-weight: 700;
  color: #f5f5f5;
}

.btn-cta-associacao {
  background: #F5B94D;
  color: #333;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.btn-cta-associacao:hover {
  background: #E6A942;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 185, 77, 0.3);
}

/* Responsividade - CTA Associação */
@media (max-width: 768px) {
  .cta-associacao {
    padding: 0 0 60px 0;
  }
  
  .cta-conteudo {
    padding: 40px 20px;
    border-radius: 0 0 15px 15px;
  }
  
  .cta-texto {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .btn-cta-associacao {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 20px;
  }
}

/* ===== FUNDO SOCIAL ===== */
.fundo-social-hero {
  height: 500px; /* AJUSTE FUTURO: altura da imagem do slide (400px = baixo, 500px = médio, 600px = alto) */
  position: relative;
  overflow: hidden;
}

.fs-hero-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fs-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.fs-hero-circle {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 200px;
  height: 200px;
  background: rgba(139, 195, 74, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
}

.fs-main-area {
  background: #F8FDF8;
  padding: 80px 0;
  position: relative;
  min-height: 100vh;
}

.fs-pontinhos {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.fs-pontinhos span {
  width: 8px;
  height: 8px;
  background: #2E5C3E;
  border-radius: 50%;
}

.fs-titulo {
  font-size: 3rem;
  font-weight: 700;
  color: #2E5C3E;
  margin-bottom: 20px;
  line-height: 1.2;
}

.fs-lead {
  font-size: 1.2rem;
  color: #2E5C3E;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 800px;
}

.fs-desc {
  font-size: 1.1rem;
  color: #2E5C3E;
  margin-bottom: 50px;
}

.fs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.fs-card {
  background: #fff;
  border: 2px solid #2E5C3E;
  border-radius: 12px;
  padding: 30px;
  text-align: center; /* Centraliza o texto */
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fs-card-icon-container {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px; /* Reduzido de 80px para 60px - proporcional ao novo tamanho do ícone */
  width: 100%; /* Centraliza no card */
}

.fs-card-icon-bg {
  width: 45px; /* Reduzido de 60px para 45px - proporcional ao novo tamanho do ícone */
  height: 45px; /* Reduzido de 60px para 45px - proporcional ao novo tamanho do ícone */
  background: #A5D6A7;
  border-radius: 45px 0 0 0; /* Ajustado para o novo raio do quarto de círculo */
  position: absolute;
  top: 0;
  left: 37%; /* AJUSTE MANUAL: posição horizontal do quarter circle (40% = mais à esquerda, 50% = centro) */
  transform: translateX(-50%);
  z-index: 1;
}

.fs-icon-img {
  width: 60px; /* Reduzido de 90px para 60px - tamanho mais adequado para desktop */
  height: 60px; /* Reduzido de 90px para 60px - tamanho mais adequado para desktop */
  position: relative;
  z-index: 2;
  margin-top: -15px; /* Ajustado para nova posição vertical do ícone */
}

.fs-card-content p {
  font-size: 1rem;
  color: #2E5C3E;
  line-height: 1.6;
  margin: 0;
}

.fs-highlight {
  color: #2E5C3E;
  font-weight: 700;
}

.fs-final-texto {
  max-width: 900px;
  margin: 0 auto;
  text-align: center; /* Centraliza o texto final */
}

.fs-final-texto p {
  font-size: 1.1rem;
  color: #2E5C3E;
  line-height: 1.7;
}

.fs-bg-asterisk {
  position: absolute;
  top: 50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(165, 214, 167, 0.3);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  z-index: 1;
}

/* ===== BLOG ===== */
/* ===== BLOG HERO SECTION ===== */
.blog-hero {
  background: linear-gradient(90deg, #4A7C59 0%, #2E5C3E 100%); /* Gradiente horizontal verde claro para escuro */
  padding: 100px 0 80px 0; /* AJUSTE FUTURO: padding superior aumentado para mover elementos para baixo */
  position: relative;
  text-align: left;
  min-height: 250px; /* AJUSTE FUTURO: altura mínima aumentada */
}

/* Pontinhos decorativos no topo esquerdo */
.blog-hero-pontinhos {
  display: flex;
  gap: 8px; /* AJUSTE FUTURO: espaçamento entre pontinhos */
  margin-bottom: 40px; /* AJUSTE FUTURO: margem inferior aumentada */
  justify-content: flex-start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  margin-top: 20px; /* AJUSTE FUTURO: margem superior para posicionar mais para baixo */
}

.blog-hero-pontinhos span {
  width: 8px; /* AJUSTE FUTURO: largura dos pontinhos */
  height: 8px; /* AJUSTE FUTURO: altura dos pontinhos */
  background: #fff; /* Cor branca dos pontinhos */
  border-radius: 50%; /* Formato circular */
  opacity: 0.8; /* AJUSTE FUTURO: transparência dos pontinhos */
}

/* Título principal do blog */
.blog-hero-titulo {
  font-size: 3rem; /* AJUSTE FUTURO: tamanho da fonte do título */
  font-weight: 700; /* Negrito */
  color: #fff; /* Cor branca do título */
  margin-bottom: 0;
  line-height: 1.2; /* AJUSTE FUTURO: altura da linha */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  margin-top: 20px; /* AJUSTE FUTURO: margem superior para posicionar mais para baixo */
}

/* Barra de busca posicionada no canto inferior direito */
.blog-hero-busca {
  position: absolute;
  bottom: 40px; /* AJUSTE FUTURO: posição vertical da busca */
  right: 20px; /* AJUSTE FUTURO: posição horizontal da busca */
}

/* Container da barra de busca */
.blog-busca-container {
  display: flex;
  align-items: center;
  background: transparent; /* Fundo transparente */
  border: 1px solid #fff; /* Borda branca */
  border-radius: 25px; /* AJUSTE FUTURO: arredondamento das bordas */
  padding: 12px 18px; /* AJUSTE FUTURO: espaçamento interno */
  gap: 10px; /* AJUSTE FUTURO: espaçamento entre ícone e input */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

/* Ícone da lupa na busca */
.blog-busca-icon {
  width: 18px; /* AJUSTE FUTURO: largura do ícone */
  height: 18px; /* AJUSTE FUTURO: altura do ícone */
  filter: brightness(0) invert(1); /* Converte para branco */
}

/* Campo de input da busca */
.blog-busca-input {
  border: none;
  outline: none;
  font-size: 1rem; /* AJUSTE FUTURO: tamanho da fonte */
  color: #fff; /* Cor branca do texto */
  height: 8px; /* AJUSTE FUTURO: largura do campo */
  background: transparent; /* Fundo transparente */
}

/* Placeholder do input de busca */
.blog-busca-input::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Branco semi-transparente */
  font-size: 1rem; /* AJUSTE FUTURO: tamanho da fonte do placeholder */
}

/* ===== BLOG POSTS CONTAINER ===== */
.blog-posts-container {
  max-width: 1200px; /* AJUSTE FUTURO: largura máxima do container */
  margin: 0 auto;
  padding: 60px 20px; /* AJUSTE FUTURO: espaçamento interno */
}

/* Card individual de cada post do blog */
.blog-post {
  display: flex;
  gap: 25px; /* AJUSTE FUTURO: espaçamento entre imagem e conteúdo */
  margin-bottom: 40px; /* AJUSTE FUTURO: espaçamento entre posts */
  align-items: flex-start;
  background: #fff; /* Fundo branco do card */
  border-radius: 12px; /* AJUSTE FUTURO: arredondamento das bordas */
  padding: 25px; /* AJUSTE FUTURO: espaçamento interno do card */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* Sombra sutil */
}

/* Container da imagem do post */
.blog-post-imagem {
  flex-shrink: 0; /* Não encolhe */
  width: 40%; /* AJUSTE FUTURO: largura da imagem (40% do card) */
  height: 180px; /* AJUSTE FUTURO: altura da imagem */
  border-radius: 12px; /* Arredondamento igual ao card */
  overflow: hidden; /* Corta imagem que exceder */
}

/* Imagem dentro do container */
.blog-post-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém proporção e preenche container */
}

/* Container do conteúdo textual do post */
.blog-post-conteudo {
  flex: 1; /* Ocupa espaço restante */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px; /* Altura mínima igual à imagem */
  padding-left: 0; /* Sem padding esquerdo */
}

/* Título do post do blog */
.blog-post-titulo {
  font-size: 1.5rem; /* AJUSTE FUTURO: tamanho da fonte do título */
  font-weight: 700; /* Negrito */
  color: #2E5C3E; /* Verde escuro */
  margin-bottom: 15px; /* AJUSTE FUTURO: espaçamento inferior */
  line-height: 1.3; /* AJUSTE FUTURO: altura da linha */
}

/* Descrição/resumo do post */
.blog-post-descricao {
  font-size: 1rem; /* AJUSTE FUTURO: tamanho da fonte */
  color: #555; /* Cinza escuro */
  line-height: 1.6; /* AJUSTE FUTURO: altura da linha */
  margin-bottom: 20px; /* AJUSTE FUTURO: espaçamento inferior */
  flex: 1; /* Ocupa espaço disponível */
}

/* Botão "Ler" do post */
.blog-post-botao {
  display: flex;
  align-items: center;
  gap: 6px; /* AJUSTE FUTURO: espaçamento entre texto e ícone */
  background: transparent; /* Fundo transparente */
  border: 1px solid #2E5C3E; /* Borda verde escura */
  color: #2E5C3E; /* Texto verde escuro */
  padding: 10px 20px; /* AJUSTE FUTURO: espaçamento interno */
  border-radius: 20px; /* AJUSTE FUTURO: arredondamento */
  font-size: 0.95rem; /* AJUSTE FUTURO: tamanho da fonte */
  font-weight: 600; /* Semi-negrito */
  cursor: pointer;
  transition: all 0.3s ease; /* Transição suave */
  align-self: flex-start; /* Alinha à esquerda */
}

/* Hover do botão "Ler" */
.blog-post-botao:hover {
  background: #2E5C3E; /* Fundo verde escuro */
  color: #fff; /* Texto branco */
}

/* Ícone da seta no botão */
.blog-botao-seta {
  width: 12px; /* AJUSTE FUTURO: largura do ícone */
  height: 12px; /* AJUSTE FUTURO: altura do ícone */
  filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(2000%) hue-rotate(120deg) brightness(95%) contrast(85%); /* Verde escuro */
  transition: filter 0.3s ease; /* Transição suave */
}

/* Hover do ícone da seta */
.blog-post-botao:hover .blog-botao-seta {
  filter: brightness(0) invert(1); /* Branco no hover */
}

/* ===== BOTÃO VEJA MAIS ===== */
.blog-veja-mais {
  text-align: center;
  padding: 40px 0 80px; /* AJUSTE FUTURO: espaçamento vertical */
}

/* Botão "Veja mais" principal */
.blog-veja-mais-botao {
  background: #8BC34A; /* Verde claro */
  color: #fff; /* Texto branco */
  border: none;
  padding: 16px 32px; /* AJUSTE FUTURO: espaçamento interno */
  border-radius: 25px; /* AJUSTE FUTURO: arredondamento */
  font-size: 1.1rem; /* AJUSTE FUTURO: tamanho da fonte */
  font-weight: 600; /* Semi-negrito */
  cursor: pointer;
  transition: all 0.3s ease; /* Transição suave */
}

/* Hover do botão "Veja mais" */
.blog-veja-mais-botao:hover {
  background: #7CB342; /* Verde mais escuro no hover */
  transform: translateY(-2px); /* Eleva o botão */
  box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3); /* Sombra verde */
}

/* ===== RESPONSIVIDADE - BLOG ===== */
@media (max-width: 768px) {
  /* Hero section mobile */
  .blog-hero {
    padding: 60px 0; /* AJUSTE FUTURO: padding reduzido para mobile */
  }
  
  /* Título mobile */
  .blog-hero-titulo {
    font-size: 2.5rem; /* AJUSTE FUTURO: tamanho menor para mobile */
  }
  
  /* Busca mobile */
  .blog-hero-busca {
    position: static; /* Posição normal em vez de absoluta */
    margin-top: 30px; /* AJUSTE FUTURO: espaçamento superior */
    text-align: center; /* Centralizado no mobile */
  }
  
  /* Container da busca mobile */
  .blog-busca-container {
    max-width: 300px; /* AJUSTE FUTURO: largura máxima */
    margin: 0 auto; /* Centralizado */
    background: transparent; /* Fundo transparente */
    border: 1px solid #fff; /* Borda branca */
  }
  
  /* Input mobile */
  .blog-busca-input {
    width: 100%; /* Largura total no mobile */
    color: #fff; /* Texto branco */
  }
  
  /* Placeholder mobile */
  .blog-busca-input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Branco semi-transparente */
  }
  
  /* Ícone mobile */
  .blog-busca-icon {
    filter: brightness(0) invert(1); /* Branco */
  }
  
  /* Post mobile - layout vertical */
  .blog-post {
    flex-direction: column; /* Empilha imagem e conteúdo */
    gap: 20px; /* AJUSTE FUTURO: espaçamento entre elementos */
    padding: 20px; /* AJUSTE FUTURO: padding reduzido */
  }
  
  /* Imagem mobile */
  .blog-post-imagem {
    width: 100%; /* Largura total no mobile */
    height: 200px; /* AJUSTE FUTURO: altura fixa */
  }
  
  /* Conteúdo mobile */
  .blog-post-conteudo {
    min-height: auto; /* Altura automática */
    padding-left: 0; /* Sem padding esquerdo */
  }
  
  /* Título mobile */
  .blog-post-titulo {
    font-size: 1.3rem; /* AJUSTE FUTURO: tamanho menor */
  }
  
  /* Descrição mobile */
  .blog-post-descricao {
    font-size: 0.95rem; /* AJUSTE FUTURO: tamanho menor */
  }
}

/* ===== SEJA UM PARCEIRO ===== */
/* Hero com imagem de fundo */
.parceiro-hero {
  height: clamp(600px, 85vh, 750px) !important; /* Mesma altura do hero-slider principal */
  min-height: 580px !important;
  max-height: 750px !important;
  position: relative;
  overflow: hidden;
}

.parceiro-hero-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Efeito parallax sutil */
}

/* Área principal com fundo verde claro */
.parceiro-main-area {
  background: #E8F5E9; /* Verde muito claro conforme imagem */
  padding: 60px 0; /* Espaçamento vertical otimizado */
  position: relative;
  min-height: auto; /* Remove altura mínima fixa */
}

/* Container principal */
.parceiro-main-area .container {
  max-width: 1200px; /* Largura máxima do container */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  width: 100%; /* Garante que o container ocupe toda a largura disponível */
}

/* Pontinhos decorativos no topo esquerdo */
.parceiro-pontinhos {
  display: flex;
  gap: 8px; /* AJUSTE FUTURO: espaçamento entre pontinhos */
  margin-bottom: 30px; /* AJUSTE FUTURO: espaçamento inferior */
  justify-content: flex-start;
}

.parceiro-pontinhos span {
  width: 8px; /* AJUSTE FUTURO: largura dos pontinhos */
  height: 8px; /* AJUSTE FUTURO: altura dos pontinhos */
  background: #A5D6A7; /* Verde claro conforme imagem */
  border-radius: 50%; /* Formato circular */
  opacity: 0.8; /* AJUSTE FUTURO: transparência dos pontinhos */
}

/* Título principal */
.parceiro-titulo {
  font-size: 3rem; /* AJUSTE FUTURO: tamanho da fonte do título */
  font-weight: 700; /* Negrito */
  color: #2E7D32; /* Verde escuro conforme imagem */
  margin-bottom: 30px; /* AJUSTE FUTURO: espaçamento inferior */
  line-height: 1.2; /* AJUSTE FUTURO: altura da linha */
}

/* Texto introdutório */
.parceiro-texto-intro {
  font-size: 1.1rem; /* AJUSTE FUTURO: tamanho da fonte */
  color: #424242; /* Cinza escuro conforme imagem */
  line-height: 1.6; /* AJUSTE FUTURO: altura da linha */
  margin-bottom: 20px; /* AJUSTE FUTURO: espaçamento inferior */
  max-width: 900px; /* AJUSTE FUTURO: largura máxima do texto */
}

.parceiro-texto-intro strong {
  font-weight: 700; /* Negrito para destacar */
  color: #2E7D32; /* Verde escuro para destacar */
}

/* Subtítulo */
.parceiro-subtitulo {
  font-size: 1.1rem; /* AJUSTE FUTURO: tamanho da fonte */
  color: #424242; /* Cinza escuro conforme imagem */
  margin-bottom: 40px; /* AJUSTE FUTURO: espaçamento inferior */
  font-weight: 600; /* Semi-negrito */
}

/* Grid dos cards */
.parceiro-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsivo com largura mínima */
  gap: 30px; /* Espaçamento entre cards */
  margin-bottom: 60px; /* Espaçamento inferior */
  max-width: 100%; /* Garante que não ultrapasse o container */
}

/* Card individual */
.parceiro-card {
  background: #fff; /* Fundo branco */
  border: 2px solid #A5D6A7; /* Borda verde claro conforme imagem */
  border-radius: 12px; /* AJUSTE FUTURO: arredondamento das bordas */
  padding: 30px; /* AJUSTE FUTURO: espaçamento interno */
  text-align: center; /* Centralizado */
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Sombra sutil */
}

/* Container do ícone */
.parceiro-card-icon-container {
  position: relative;
  margin-bottom: 20px; /* AJUSTE FUTURO: espaçamento inferior */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px; /* AJUSTE FUTURO: altura do container do ícone */
}

/* Fundo quadrado do ícone */
.parceiro-card-icon-bg {
  width: 60px; /* AJUSTE FUTURO: largura do fundo do ícone */
  height: 60px; /* AJUSTE FUTURO: altura do fundo do ícone */
  background: #A5D6A7; /* Verde claro conforme imagem */
  border-radius: 12px; /* AJUSTE FUTURO: arredondamento do fundo */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Ícone */
.parceiro-card-icon {
  width: 40px; /* AJUSTE FUTURO: largura do ícone */
  height: 40px; /* AJUSTE FUTURO: altura do ícone */
  position: relative;
  z-index: 2;
  filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(2000%) hue-rotate(120deg) brightness(95%) contrast(85%); /* Verde escuro */
}

/* Título do card */
.parceiro-card-titulo {
  font-size: 1.2rem; /* AJUSTE FUTURO: tamanho da fonte do título */
  font-weight: 700; /* Negrito */
  color: #2E7D32; /* Verde escuro conforme imagem */
  margin-bottom: 15px; /* AJUSTE FUTURO: espaçamento inferior */
  line-height: 1.3; /* AJUSTE FUTURO: altura da linha */
}

/* Descrição do card */
.parceiro-card-descricao {
  font-size: 1rem; /* AJUSTE FUTURO: tamanho da fonte */
  color: #424242; /* Cinza escuro conforme imagem */
  line-height: 1.6; /* AJUSTE FUTURO: altura da linha */
  margin: 0; /* Remove margens padrão */
}

/* Texto final */
.parceiro-texto-final {
  max-width: 900px; /* AJUSTE FUTURO: largura máxima do texto */
  margin: 0 auto 40px auto; /* AJUSTE FUTURO: centralizado com margem inferior */
}

.parceiro-texto-final p {
  font-size: 1.1rem; /* AJUSTE FUTURO: tamanho da fonte */
  color: #424242; /* Cinza escuro conforme imagem */
  line-height: 1.7; /* AJUSTE FUTURO: altura da linha */
  margin: 0; /* Remove margens padrão */
}

/* Container do botão CTA */
.parceiro-cta {
  text-align: center; /* Centralizado */
  margin-bottom: 40px; /* AJUSTE FUTURO: espaçamento inferior */
}

/* Botão principal */
.parceiro-botao {
  background: #2E7D32; /* Verde escuro conforme imagem */
  color: #fff; /* Texto branco */
  border: none;
  padding: 16px 32px; /* AJUSTE FUTURO: espaçamento interno */
  border-radius: 25px; /* AJUSTE FUTURO: arredondamento */
  font-size: 1.1rem; /* AJUSTE FUTURO: tamanho da fonte */
  font-weight: 600; /* Semi-negrito */
  cursor: pointer;
  transition: all 0.3s ease; /* Transição suave */
}

/* Hover do botão */
.parceiro-botao:hover {
  background: #1B5E20; /* Verde mais escuro no hover */
  transform: translateY(-2px); /* Eleva o botão */
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3); /* Sombra verde */
}

/* Decoração de fundo - círculo */
.parceiro-bg-circulo {
  position: absolute;
  top: 50px; /* AJUSTE FUTURO: posição vertical */
  right: -100px; /* AJUSTE FUTURO: posição horizontal */
  width: 200px; /* AJUSTE FUTURO: largura do círculo */
  height: 200px; /* AJUSTE FUTURO: altura do círculo */
  background: rgba(165, 214, 167, 0.3); /* Verde claro semi-transparente */
  border-radius: 50%; /* Formato circular */
  z-index: 1;
}

/* Decoração de fundo - asterisco */
.parceiro-bg-asterisco {
  position: absolute;
  bottom: -50px; /* AJUSTE FUTURO: posição vertical */
  right: -50px; /* AJUSTE FUTURO: posição horizontal */
  width: 150px; /* AJUSTE FUTURO: largura do asterisco */
  height: 150px; /* AJUSTE FUTURO: altura do asterisco */
  background: rgba(165, 214, 167, 0.2); /* Verde claro semi-transparente */
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); /* Formato de asterisco */
  z-index: 1;
}

/* ===== RESPONSIVIDADE - SEJA UM PARCEIRO ===== */
/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .parceiro-cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    gap: 25px;
  }
  
  .parceiro-hero {
    height: clamp(450px, 70vh, 550px) !important; /* Mesma altura do hero-slider em tablet */
    min-height: 400px !important;
    max-height: 550px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hero mobile */
  .parceiro-hero {
    height: clamp(400px, 60vh, 500px) !important; /* Mesma altura do hero-slider em mobile */
    min-height: 350px !important;
    max-height: 500px !important;
  }
  
  .parceiro-hero-img {
    background-attachment: scroll; /* Remove parallax no mobile */
  }
  
  /* Área principal mobile */
  .parceiro-main-area {
    padding: 40px 0; /* Padding reduzido para mobile */
  }
  
  /* Container mobile */
  .parceiro-main-area .container {
    padding: 0 15px; /* Padding lateral reduzido */
  }
  
  /* Título mobile */
  .parceiro-titulo {
    font-size: 2.2rem; /* Tamanho otimizado para mobile */
    line-height: 1.2; /* Altura da linha ajustada */
  }
  
  /* Grid mobile - 1 coluna */
  .parceiro-cards-grid {
    grid-template-columns: 1fr; /* Uma coluna no mobile */
    gap: 20px; /* Espaçamento reduzido */
    margin-bottom: 40px; /* Margem inferior reduzida */
  }
  
  /* Card mobile */
  .parceiro-card {
    padding: 25px; /* AJUSTE FUTURO: padding reduzido para mobile */
  }
  
  /* Container do ícone mobile */
  .parceiro-card-icon-container {
    height: 70px; /* AJUSTE FUTURO: altura reduzida para mobile */
  }
  
  /* Fundo do ícone mobile */
  .parceiro-card-icon-bg {
    width: 50px; /* AJUSTE FUTURO: largura reduzida para mobile */
    height: 50px; /* AJUSTE FUTURO: altura reduzida para mobile */
  }
  
  /* Ícone mobile */
  .parceiro-card-icon {
    width: 35px; /* AJUSTE FUTURO: largura reduzida para mobile */
    height: 35px; /* AJUSTE FUTURO: altura reduzida para mobile */
  }
  
  /* Título do card mobile */
  .parceiro-card-titulo {
    font-size: 1.1rem; /* AJUSTE FUTURO: tamanho menor para mobile */
  }
  
  /* Descrição do card mobile */
  .parceiro-card-descricao {
    font-size: 0.95rem; /* AJUSTE FUTURO: tamanho menor para mobile */
  }
  
  /* Texto final mobile */
  .parceiro-texto-final p {
    font-size: 1rem; /* AJUSTE FUTURO: tamanho menor para mobile */
  }
  
  /* Botão mobile */
  .parceiro-botao {
    padding: 14px 28px; /* AJUSTE FUTURO: padding reduzido para mobile */
    font-size: 1rem; /* AJUSTE FUTURO: tamanho menor para mobile */
  }
  
  /* Decorações mobile - ocultas */
  .parceiro-bg-circulo,
  .parceiro-bg-asterisco {
    display: none; /* Oculta decorações no mobile */
  }
}

/* Responsividade - Fundo Social */
@media (max-width: 768px) {
  .fundo-social-hero {
    height: 350px; /* AJUSTE FUTURO MOBILE: altura da imagem do slide mobile (300px = baixo, 350px = médio, 400px = alto) */
  }
  
  .fs-main-area {
    padding: 60px 0;
  }
  
  .fs-titulo {
    font-size: 2.5rem;
  }
  
  .fs-lead {
    font-size: 1.1rem;
  }
  
  .fs-desc {
    font-size: 1rem;
  }
  
  .fs-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .fs-card {
    padding: 25px 20px;
  }
  
  .fs-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  /* Regra removida - conflitante com a regra de 35px abaixo */
  
  .fs-card-content p {
    font-size: 0.95rem;
  }
  
  .fs-card-icon-container {
    height: 30px; /* Ajustado para 30px - proporcional ao novo tamanho do ícone */
  }
  
  .fs-card-icon-bg {
    padding-left: 50px;
    width: 28px; /* Ajustado para 18px - proporcional ao novo tamanho do ícone */
    height: 28px; /* Ajustado para 18px - proporcional ao novo tamanho do ícone */
    border-radius: 28px 0 0 0; /* Ajustado para o novo raio do quarto de círculo */
  }
  
  .fs-icon-img {
    width: 55px; /* Ajustado para tamanho adequado para mobile */
    height: 55px; /* Ajustado para tamanho adequado para mobile */
    margin-top: -6px; /* Ajustado para nova posição vertical do ícone */
  }
  
  .fs-final-texto p {
    font-size: 1rem;
  }
  
  .fs-bg-asterisk {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -30px;
  }
}