html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.agenda-fullscreen {
  padding: 1.5rem;
  box-sizing: border-box;
}

.studio-card {
  border: 2px solid #000;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%; /* garante que ocupe toda a altura do col */
}

.card-carousel {
  height: 40vh; /* altura fixa da imagem no card */
  position: relative;
}

.card-carousel .carousel-inner,
.card-carousel .carousel-item {
  height: 100%;
}

.card-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* imagem cobre o espaço, com zoom se necessário */
  display: block;
}

.studio-info {
  background-color: #ffffff;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
}

.studio-name {
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

.studio-button {
  font-size: 0.9rem;
  white-space: nowrap;
  background: #7100d4;
  color: white;
}

.studio-button:hover {
  background: #933be0;
  color: white;
}

/* Impede o scroll em telas grandes */
@media (min-width: 769px) {
  .agenda-fullscreen {
    height: 100vh;
  }

  html, body {
    overflow: hidden;
  }
}

.footer {
  display: none;
}
