.fundo {
  width: 100%;
  height: 600px; /* ajuste como quiser */
  background-image: url("../img/home.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quadro {
  background: rgba(126, 123, 123, 0.6); /* fundo escuro translúcido */
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.logo {
  width: 500px;
  height: 260px;
}

.quadro h1 {
  margin: 5px 0;  
  color: rgb(255, 255, 255);
  font-size: 40px;
}

.quadro p {
  margin: 5px 0;  
  font-size: 48px;
  font-weight: 600;
  color: rgb(241, 236, 236);
}

.agenda {
  margin: 0;
  width: 320px;
  height: 450px;
}

.mapa{
    width:750px;
    height:450px;
    border: 0px;
}

 

/* Mobile (celulares) */
@media (max-width: 480px) {
  .agenda, .mapa {
    width: 370px;
    margin: 10px;
    text-align: center;
  }
  .quadro h1{
    font-size: 24px;
  }
  .quadro p{
    font-size: 24px;
  }
  .quadro img {
    width: 300px;
    height: 200px;
  }
  .fundo {
    padding: 10px;
    margin-left: 5px;
    width: 400px;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 1024px) {
  .agenda, .mapa {
    width: 480px;
    height: 580px;
    text-align: center;
    margin-left: 40px;  
    margin-bottom: 10px;  
  }
}

/* Desktops maiores */
@media (min-width: 1025px) {
  .agenda {
    width: 100%;
  }
}