* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
}
a{
  text-decoration: none;
}

.display {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout{
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px;
}
.QR{
  width: 20%;
  height: 100vh;
  background-color: #0962a6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}
.QR img {
  width: 100%;
  border-radius: 12px;
}

.QR span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

/* Tarjetas superiores */
.tarjetas-superiores {
  width: 100%;
  height: 550px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 40px 40px; /* espacio entre columnas y filas */
  justify-content: space-between;
  margin: auto;
}

.card.servicio {
  background-color: #147184;
  border-radius: 20px;
  padding: 20px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Pisos como tarjetas */
.pisos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 100px;
  flex: 1;
  gap: 20px;
}

.card.piso {
  background-color: #47f1ac;
  border-radius: 16px;
  padding: 10px;
  color: #003049;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-weight: 700;
}