.elementor-2990 .elementor-element.elementor-element-fd03ee2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a552676 *//* SEÇÃO QUEBRANDO A LARGURA DO TEMA (FULL WIDTH) */
.bloco-setores {
  padding: 60px 0;
  width: 100vw;                                /* ocupa a largura da tela inteira */
  margin-left: calc(50% - 50vw);              /* truque pra sair da largura do tema */
  margin-right: calc(50% - 50vw);
}

/* GRID 3x2 CENTRALIZADO E BEM LARGO */
.grid-setores {
  width: 100%;
  max-width: 1350px;                          /* parecido com Ventisol */
  margin: 0 auto;
  padding: 0 40px;                            /* espaço lateral */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 colunas */
  gap: 40px;                                  /* espaço entre os cards */
}

/* CARD */
.card-setor {
  background: #ffffff;
  border-radius: 45px;
  padding: 45px 55px 35px;                    /* mais largura interna */
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}

/* ÍCONE */
.card-setor .icone {
  font-size: 38px;
  margin-bottom: 10px;
}

/* TÍTULO */
.card-setor h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}

/* LISTA */
.card-setor ul {
  list-style: disc;
  margin: 0 0 20px 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  align-self: stretch;
  max-width: 460px;                           /* limita o texto pra ficar bonito */
}

/* E-MAIL */
.card-setor .email {
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  text-align: center;
}

/* TABLET: 2 COLUNAS */
@media (max-width: 1024px) {
  .grid-setores {
    max-width: 1000px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 30px;
  }
}

/* CELULAR: 1 COLUNA */
@media (max-width: 768px) {
  .bloco-setores {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .grid-setores {
    max-width: 600px;
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .card-setor {
    border-radius: 30px;
    padding: 30px 25px 25px;
  }
}/* End custom CSS */