 :root {
      --rosa: #ec4899;
      --preto: #111827;
      --branco: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: var(--branco);
      color: var(--preto);
      line-height: 1.6;
    }

    p {
        text-align: center;
    }

    header {
      background-color: var(--rosa);
      color: var(--branco);
      text-align: center;
      padding: 4rem 2rem;
    }

    header h1 {
      font-size: 3rem;
    }

    header p {
      font-size: 1.25rem;
      margin-top: 0.5rem;
      font-style: italic;
    }

    nav {
      background-color: var(--preto);
      color: var(--branco);
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 1rem;
    }

    nav a {
      color: var(--branco);
      text-decoration: none;
      font-weight: bold;
    }

    .section {
      padding: 3rem 2rem;
      max-width: 1000px;
      margin: auto;
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      text-align: center;
      color: var(--rosa);
    }

    .projetos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .projeto {
      border: 2px solid var(--rosa);
      padding: 1rem;
      border-radius: 10px;
      background: #fff0f6;
    }

    .projeto a {
      text-decoration: none;
      color: var(--preto);
      font-weight: bold;
      display: flex;
      justify-content: center;
      margin-top: 0.5rem;
    }
    .projeto p, .projeto h3{
        text-align: center;
    }

    footer {
      background-color: var(--preto);
      color: var(--branco);
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }
