/* Page-level styles */
html, body {
    margin: 0;
    padding: 20px;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Styles for elements that appear in content.json */
p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2c3e50;
}

span {
    display: inline-block;
    padding: 4px 8px;
    background: #ecf0f1;
    border-radius: 4px;
}

/* section {
    margin: 16px 0;
    padding: 12px;
    background: white;
    border-left: 4px solid #3498db;
} */

/* SEÇÕES */
    section {
      background: #eeeeee;
      margin-bottom: 10px;
      padding: 8px;
      border-radius: 8px;
      text-align: center;
    }

section div {
    font-weight: 500;
}

/* GRID */
    .grid {
      display: grid;
      gap: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    /* CARDS */
    .card {
      display: flex;
      flex-direction: column;
      background: lightblue;
      padding: 20px;
      border: 1px solid #f1f1f1;
      border-radius: 10px;
      text-align: center;
      box-sizing: border-box;
    }