.elementor-132 .elementor-element.elementor-element-8c6e81d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-132 .elementor-element.elementor-element-237abd7{width:100%;max-width:100%;}.elementor-132 .elementor-element.elementor-element-699d8bb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-132 .elementor-element.elementor-element-4051ae0{width:100%;max-width:100%;}@media(min-width:768px){.elementor-132 .elementor-element.elementor-element-8c6e81d{--content-width:1388px;}.elementor-132 .elementor-element.elementor-element-699d8bb{--content-width:1388px;}}/* Start custom CSS for html, class: .elementor-element-237abd7 */:root {
  --primary-color: #333;
  --background-color: #f4f4f4;
  --text-color: #333;
  --border-color: #e0e0e0;
  --white-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
}

header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 2rem 1rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

header h1 {
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.accordion {
  /* O container do acordeão agora é apenas um espaçador */
}

.accordion-item {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  background-color: transparent;
  color: var(--primary-color);
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--border-color);
  outline: none;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Merriweather", serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header.active {
  border-bottom-color: transparent;
}

.accordion-header .icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: var(--white-color);
  padding: 0 1.5rem;
}

.accordion-content-inner {
  padding: 1.5rem 0;
  padding-top: 0;
}

.accordion-content ul {
  list-style-position: outside;
  padding-left: 1.5rem;
}

.accordion-content li {
  margin-bottom: 0.85rem;
}

.accordion-content h3 {
  font-family: "Merriweather", serif;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #eee;
}

.accordion-content p {
  margin-bottom: 1rem;
}

.references-list a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.references-list a:hover {
  text-decoration: underline;
}

/* --- Estilos da Tabela --- */
.table-container {
  overflow-x: auto;
  padding: 1.5rem 0;
  padding-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table th,
table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

table th {
  background-color: #f9f9f9;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}

table tbody tr:nth-child(even) {
  background-color: #fdfdfd;
}

table tbody tr:hover {
  background-color: #f5f5f5;
}

table td a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

table td a:hover {
  text-decoration: underline;
}
/* --- Fim dos Estilos da Tabela --- */

footer {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }
  .accordion-header {
    font-size: 1.1rem;
    padding: 1.2rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4051ae0 */:root {
  --primary-color: #333;
  --background-color: #f4f4f4;
  --text-color: #333;
  --border-color: #e0e0e0;
  --white-color: #fff;
  --accent-color: #a47c48; /* Um tom de marrom/dourado para detalhes */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
}

header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 2.5rem 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #ccc;
}

main {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.intro-text {
  background-color: var(--white-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  border: 1px solid var(--border-color);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.step-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}

.step-header {
  background-color: transparent;
  color: var(--primary-color);
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.step-header h2 {
  font-family: "Merriweather", serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.step-header .icon {
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.step-header.active .icon {
  transform: rotate(45deg);
}

.step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 1.5rem;
}

.step-content-inner {
  padding-bottom: 1.5rem;
}

.step-content ul,
.step-content ol {
  list-style-position: outside;
  padding-left: 1.5rem;
}

.step-content li {
  margin-bottom: 0.85rem;
}

.step-content p {
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent-color);
  padding-left: 1rem;
  font-style: italic;
  color: #555;
}

.summary-block .step-header h2,
.final-thoughts-block .step-header h2 {
  color: var(--accent-color);
}

footer {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
  background-color: #e9e9e9;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  .step-header h2 {
    font-size: 1.1rem;
  }
}/* End custom CSS */