.elementor-3085 .elementor-element.elementor-element-53399d4{--display:flex;--padding-top:40px;--padding-bottom:0px;--padding-left:150px;--padding-right:150px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );line-height:var( --e-global-typography-primary-line-height );color:var( --e-global-color-primary );}.elementor-3085 .elementor-element.elementor-element-a05f88a .elementor-heading-title{font-family:"DM Sans", Sans-serif;font-size:30px;font-weight:bold;line-height:120%;color:#212529;}.elementor-3085 .elementor-element.elementor-element-6e6ce44{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:30px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3085 .elementor-element.elementor-element-ac2ae3c > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:1024px){.elementor-3085 .elementor-element.elementor-element-53399d4{--padding-top:30px;--padding-bottom:0px;--padding-left:25px;--padding-right:25px;}.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}@media(max-width:767px){.elementor-3085 .elementor-element.elementor-element-53399d4{--padding-top:20px;--padding-bottom:0px;--padding-left:15px;--padding-right:15px;}.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}/* Start custom CSS for heading, class: .elementor-element-a05f88a */h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ac2ae3c *//* Botão Expandir Todos */
.toggle-all-btn {
  background-color: #0077ff;
  border: 1px solid #cfd8dc;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 12px;
  color: #fff;
  transition: background 0.2s;
}
.toggle-all-btn:hover {
  background-color: #e3f2fd;
}

/* Acordeão */
.accordion {
  color: #1B2029;
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 150%;
}
.accordion-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion-header {
  padding: 14px 18px;
  font-weight: bold;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  transition: background 0.2s;
}

.accordion-header .icon {
    font-size: 17px;
    color: #1976d2;
    font-weight: bold;
    transition: transform 0.2s;
}

.accordion-item.open .accordion-header .icon {
    color: #d32f2f;
    transform: rotate(45deg);
}


/* Corpo */
.accordion-body {
  padding: 14px 18px;
  line-height: 1.5;
  display: none;
  animation: fadeIn 0.3s ease;
}

.accordion-body h4 {
    font-size: 17px;
    font-weight: 550;
}

.accordion-body p, li {
    font-size: 17px;
}

.accordion-item.open .accordion-body {
  display: block;
}
.accordion-item.open .accordion-header .icon {
  content: "×";
  transform: rotate(45deg);
  font-size: 17px;
  color: #d32f2f;
}

    .toggle-all-btn:focus,
.toggle-all-btn:active {
    outline: none;
    box-shadow: none;
    background-color: #0f57bf; /* azul escuro */
    color: white;
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */