    :root {
      --cor-bg: #dfe4d4;
      --cor-primaria: #6a8caf;
      --cor-secundaria: #4f7a3a;
      --cor-texto: #2b2b2b;
      --radius: 18px;
      --sombra: 0 4px 14px rgba(0, 0, 0, 0.15);
    }

    body {
      font-family: "Nunito", "Lato", sans-serif;
      background: var(--cor-bg);
      margin: 0;
      padding-top: 120px;
      overflow-x: hidden;
      color: var(--cor-texto);
    }

    a {
    text-decoration: none;
    color: inherit;        
    }


    .site {
      max-width: 1100px;
      margin: auto;
      padding: 2rem;
      animation: fadeIn .6s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ----- Apresentação ----- */
    .apresentacao {
      text-align: center;
      margin-bottom: 13vh;
    }

    .apresentacao h1 {
      font-size: 2.8rem;
      margin-bottom: .3rem;
    }

    .apresentacao h2 {
      font-size: 1.6rem;
      opacity: .8;
      margin-bottom: 1rem;
    }

    .botoes-container {
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .botao {
      padding: 14px 22px;
      min-width: 210px;
      border: none;
      border-radius: var(--radius);
      font-weight: bold;
      color: #fff;
      cursor: pointer;
      transition: .25s;
      box-shadow: var(--sombra);
    }

    .explorar { 
      background: var(--cor-primaria); 
      display:flex;
      justify-content:center;
      align-items: center;
    }
    .pesquisar { 
      background: var(--cor-secundaria); 
      display:flex;
      justify-content:center;
      align-items: center;
    }

    .explorar img {
      width: 30px;
      height: 30px;
      min-width: 30px;
      min-height: 30px;
      margin-right: auto;
    }

    .pesquisar img {
      width: 30px;
      height: 30px;
      min-width: 30px;
      min-height: 30px;
      margin-right: auto;
    }

    .botao:hover {
      filter: brightness(1.1);
      transform: scale(1.03);
    }

    /* ----- Projetos ----- */
    .conteudo {
      background: #ffffffb7;
      backdrop-filter: blur(6px);
      padding: 1rem;
      border-radius: var(--radius);
      box-shadow: var(--sombra);
      width: 100%;
      box-sizing: border-box;
    }

    .conteudo h1 {
      font-size: 2rem;
      margin-bottom: .5rem;
    }

    .projetos {
      margin-top: 1.5rem;
      padding: 2rem;
      border: 2px dashed #8e8e8e;
      border-radius: var(--radius);
      text-align: center;
      opacity: 1;
      font-size: 1.1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .projeto {
    width: 350px;
    min-height: 500px;
    border-radius: 10px;
    height: auto;
    background-color: rgb(72, 91, 72);
    color: #e1e1dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border: white 3px solid;
    box-shadow: 0 4px 12px rgb(33, 40, 33);
}

.projeto h1 {
    font-size: 23px;
    min-height: 50px;
}

.projeto p {
    font-size: 15px;
    min-height: 50px;
}

.projeto .navbotao {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.projeto .navbotao button {
    font-size: 15px;
    min-width: 240px;
    height: 40px;
    border-radius: 10px;
    background-color: #e1e1dd;
    border: none;
    box-shadow: 0 4px 12px rgb(33, 40, 33);
}

.projeto video {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    max-width: 900px;
    border: white 3px solid;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.projeto img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    max-width: 900px;
    border: white 3px solid;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.info {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.info .imagem {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 100px;
    border: rgb(85,122,70) solid 3px;
}



    /* ----- Responsividade ----- */
    @media (max-width: 768px) {
      .apresentacao h1 { font-size: 2.2rem; }
      .apresentacao h2 { font-size: 1.3rem; }
      .botao { width: 100%; }

      .apresentacao {
        width: 95%;
    }
    .infopesquisa h1 {
        display: none;
    }
    .infopesquisa input {
        width: 80%;
    }
    .home {
        width: 45px;
        min-width: 45px;
        height: 45px;
        min-height: 45px;
    }
    .projeto {
      width: 280px;
      height: 400px;
    }

    .botoes-container p {
      width: 90%;
      text-align: center;
    }
    }


    
