body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  

  #topo {
    position: relative;
    width: 100%;
    height: 60vh; 
    overflow: hidden;
  }

  #topo img{
    width: 100%;
    height: 120%;
    background-size: cover;
  }
  
  .titulo {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: white;
    font-size: 5vh; 
    font-weight: bold;
    text-shadow: 0.5vh 0.5vh 1vh rgba(0, 0, 0, 0.8);
  }
  
 
  .conteudo {
    padding: 5% 5%;
    background: white; 
    border-radius: 10px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    max-width: 1100px; 
    margin: 5vh auto; 
    display: flex;
    flex-direction: column;
    gap: 8vh; 
  }
  
  .bloco {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%; 
  }
  
  .invertido {
    flex-direction: row-reverse;
  }
  
  .texto {
    flex: 1;
    padding: 2%;
  }
  
  .texto h2 {
    margin-bottom: 2%;
    color: #047a00; 
    font-size: 4vh;
  }
  
  .texto p {
    font-size: 2.5vh; 
    text-align: left; 
    color: #333; 
  }
  
  
  .imagens {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4%; 
  }
  
  .placeholder {
    width: 100%;
    height: 25vh;
    background-size: cover;
    background-position: center;
    border-radius: 2%; 
    box-shadow: 0.5vh 0.5vh 1vh rgba(0, 0, 0, 0.2); 
  }
  

  #box1 { background-image: url(../img/museu2.jpg);
         height: 40vh;
         width: 60vh; 
  }

  #box3 { background-image: url(../img/museu1.jpg);
        height: 40vh;
        width: 60vh;
  }

  #box5 { background-image: url(../img/museu3.jpg);
          height: 40vh;
          width: 60vh;
}
  
  
  .botao-container {
    display: flex;
    justify-content: center;
    margin: 5vh 0;
  }
  
  .botao-mapa {
    padding: 2vh 4vw; 
    background-color: #047a00; 
    color: white;
    text-decoration: none;
    font-size: 2.5vh; 
    border-radius: 1.5vh; 
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .botao-mapa:hover {
    background-color: #032f02;
    transform: scale(1.1); 
  }