#section-portada {
  overflow: clip;
  img.background {
    width: 100%;
    height: 100svh;
    object-fit: cover !important;
  }
  video {
    width: 100dvw;
  }
}
#section-info {
  padding-block: 10ch;
  .titulo {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
  }
  .descripcion {
    font-size: 25px;
    line-height: 1.5;
  }
  .detalles {
    margin-top: 6ch;
  }
}
#controls {
  padding-bottom: 120px;
  display: flex;
  width: 100%;

  .btn-prev {
    &:hover {
      gap: 1rem !important;
    }
  }
  .btn-next {
    &:hover {
      gap: 1rem !important;
    }
  }
}
.contacto-btn {
  border: 2px solid black;
  border-radius: 30px;
  padding: 14px 30px;
  text-align: center;
  &:hover {
    background: black;
    color: white;
  }
}
#section-media {

}
/* Media queries */
@media (max-width: 768px) {
  #section-portada {
    img.background {
      width: 100%;
      height: 90svh;
      object-fit: cover !important;
    }
  }
  #section-info {
    padding-block: 6ch;
    .detalles {
      margin-top: 2ch;
      font-size: 20px;
    }
    .descripcion {
      font-size: 20px;
      line-height: 1.5;
    }
  }
  #section-media {
    *:has(img) {
      height: fit-content;
      display: flex;
      flex-direction: column;
    }
  }
  #controls {
    margin-top: 20px !important;
    justify-content: center;
    .row {
      & > div {
        padding: 0;
      }
    }
    .btn-prev, .btn-next {
      font-size: 18px;
    }
  }
  .contacto-btn {
    border: 2px solid black;
    border-radius: 30px;
    padding: 14px 30px;
    text-align: center;
    margin-inline: auto;
    display: flex;
    width: fit-content;
    margin-top: 20px;
  }
}