* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
}

html, body .structure {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  background-color: #265787;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.structure {
    margin-top: 60px;
}

.logo-container {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
}

.logo-hospital {
  height: 80px;
  max-width: 200px;
  object-fit: contain;
}



.isologo-container {
  position: absolute;
  margin: 0px 200px 360px 0px;
  z-index: +1;
  opacity: 20%;
}

.isologo-hospital {
  width: 200px;
}



/* Por defecto: formato móvil */
.card {
  /* background-color: #ffff; */
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  /* box-shadow: 0 20px 35px rgba(0, 0, 0, 1.0); */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90%;
  z-index: +2;
}

.card img {
  width: 220px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.card-content ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.card-content li {
  margin-bottom: 6px;
}

.footer {
    justify-content: center;
    position: absolute;
    bottom: 0%;
    width: 100%;
  text-align: center;
  padding: 10px 10px;
  font-size: 14px;
  color: #666;
  background-color: #f1f1f1;
  opacity: 70%;
}

/* Escritorio: a partir de 768px */
@media (min-width: 900px) {
  .card {
    display: flex;
    flex-direction: row;
    text-align: left;
    align-items: center;
    max-width: 700px;
    /* background-color: red; */
  }

  .card img {
    margin-right: 30px;
    margin-bottom: 0;
    /* background-color: green; */
  }

  .card-content {
    align-items: flex-start;
    /* background-color: aqua; */
  }

  .isologo-container {
    position: absolute;
    margin: 0px 700px 150px 0px;
    z-index: +1;
    opacity: 20%;
  }

    .isologo-hospital {
    width: 200px;
  }
}
