/* Definição das fontes via @font-face */
@font-face {
  font-family: 'Flatory Sans';
  src: url('assets/fonts/flatory/flatory-sans-bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Halimun';
  src: url('assets/fonts/halimun/Halimun.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Ajuste geral do body */
body {
  margin: 0;
  padding: 0;
  background-color: #f8f1e4; /* tom de “papel reciclado” */
}

/* Imagem principal do workshop (banner) */
.workshop-banner {
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.workshop-banner img {
  margin-top: 20px;    /* pequena margem superior */
  max-width: 800px;    /* limita o tamanho em telas grandes */
  width: 100%;         /* em telas menores, ocupa largura total */
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Seções de conteúdo */
.content-section {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 15px; /* espaço lateral no mobile */
}

/* Títulos principais */
.section-title {
  font-family: 'Flatory Sans', sans-serif;
  color: #728263; /* verde aproximado */
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Subtítulos */
h3 {
  font-family: 'Flatory Sans', sans-serif;
  color: #728263;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Parágrafos */
p {
  font-family: 'Flatory Sans', sans-serif;
  color: #4c4c3f; /* tom suave de verde acinzentado */
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Listas com Font Awesome 5 (fa-ul / fa-li) */
.fa-ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: 'Flatory Sans', sans-serif;
  color: #4c4c3f;
}

/* Botões extras no final (inscrição, whatsapp) */
.cta-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center; /* centraliza horizontalmente */
  flex-wrap: wrap;         /* permite quebrar linha no mobile */
}
.cta-buttons a {
  font-family: 'Flatory Sans', sans-serif;
}