.tarInson{
  max-width: 100%; 
  overflow-x: auto;  
}

.tituloInson{
  font-size: 28px;
  font-weight: bold;
}

.subtituloInson{
  font-size: 18px;
  padding-bottom: 30px;
}

#panelPrincipal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  row-gap: 30px;
  column-gap: 40px;
  margin-right: 50px;
  position: relative;
}

.itemInson{
  border: 1px solid #ccc;
  /*padding: 10px;*/
  /*text-align: center;*/
  border-radius: 8px;
  width: 250px;
  height: 170px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.itemInson:hover {
    box-shadow: 0 0 4px #0066ff;  
}

.otrosTarjeta {
  flex: 0 0 calc(25% - 16px);
  height: calc(100% + 185px);
  align-self: stretch;
}

.emptyInson {
  background: transparent;
  border: none;
}

.divImgInson{
  padding: 20px;
}

.imgInson{
  height: 60px;
  display: block;
}

.imgInson:hover{
  animation: pulse 1.5s infinite ease-in-out;
  transform-origin: center center;

}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4); /* Ligeramente más grande */
  }
  100% {
    transform: scale(1);
  }
}

#resumenTarifInson{
    height: 360px;
    border: 1px solid #ccc;
    padding: 30px;
    width: 300px;
}

#precioTarif{
    font-weight: bold;
    font-size: 55px;
}

.inputDatosTomador{
  padding: 4%;
  font-size: 16px !important;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
}

.inputDatosTomador:hover {
    box-shadow: 0 0 4px #0066ff;  
}

.inputDatosTomador:focus {
  border: 2px solid #0066ff !important;
  /*box-shadow: 0 0 4px #0066ff;*/
  outline: none;
}

.divSeleccionado {
  border: 2px solid #0066ff;
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
