body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh !important;
  background-color: #262626 !important;
}

.content {
  flex: 1;
}

.div_main {
  margin-top: 40px; 
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.row_main {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch; /* Faz os cards terem a mesma altura */
}

.card_main {
  width: 100%;
  min-height: 61vh !important;
  height: auto; /* Removida a altura mínima */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgb(255,194,62);
  background: linear-gradient(0deg, rgba(255,194,62,1) 0%, rgba(255,194,62,1) 50%, rgba(209,143,0,1) 100%);
}

.card-body {
  flex-grow: 1;
}

.iframe_card {
  flex-grow: 1;
}

iframe {
  width: 100%;
  height: 100%; /* O iframe ajusta automaticamente com o card */
  border: none;
  border-radius: 15px;
}

.card_main:hover {
  transform: scale(1.01);
}

.text_css{
  font-weight: bold;
}