.tip-card {
  background-color: white;
  border-radius: 10px;

  display: inline-block;
  width: 310px;
  height: 300px;
  
  text-decoration: none;
  overflow: hidden;
  position: relative;

}

.tip-card-image-container {
  width: 310px;
  height: 150px;
  object-fit: cover;
  overflow: hidden;

  margin: 0px;
  padding: 0px;

  img {
    width: 310px;
    height: 150px;
    object-fit: cover;
  
    margin: 0px;
    padding: 0px;
  }
}

.tip-card:hover .tip-card-image-container {
  img {
    transition: transform 0.3s ease;
    transform: scale(1.1);
  }
}

.tip-card-image-container-complete {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 80;

  img {
    min-width: 500px;
    height: 340px;
  }
}

.tip-card:hover .tip-card-image-container-complete {
  img {
    transition: transform 0.3s ease;
    transform: scale(1.1);
  }
}

.tip-card-image-container-complete::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  z-index: 105;
}

.tip-card-infos-container {
  width: 100%;
  height: 100%;

  margin: 0px;
  padding-top: 20px;
  padding-bottom: 10px;

  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  align-items: center;
  flex-direction: column;

  row-gap: 5px;

  z-index: 100;
  position: relative;


  p {
    width: 100%;
    text-align: center;
    font-family: 'lobster';
    font-size: 25px;
    color: #094DA4;    
	  display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: clip;
    text-overflow: ellipsis;
    padding-bottom: 5px;    
    
  }
}

.tip-card-infos-container.text-white{
  p {
    color: white;
  }
}

.tip-card-date-container, #tip-card {
  color: #F49811 !important;
  font-weight: 700;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .tip-card {
    width: 400px;
    height: 340px;
  }

  .tip-card-image-container {
    width: 400px;
    height: 180px;

    img {
      width: 400px;
      height: 180px;
    }
  }

  .tip-card-infos-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}





/* Estilos para o card landscape */
.tip-card-landscape {
  align-items: center;
  display: flex;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  background-color: white;
  border-radius: 10px;
  width: 309px;
  height: 180px;
}

.tip-card-image-container-landscape {
  flex-shrink: 0;
  width: 110px;
  height: 180px;
  overflow: hidden;
}

.tip-card-image-container-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tip-card-infos-container-landscape {
  flex-shrink: 0;
  width: 199px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tip-card-infos-container-landscape p {
  font-family: 'lobster';
  font-size: 25px;
  color: #094DA4;
  text-align: center;
  width: 160px;
  height: 121px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tip-card-landscape .tip-card-date-container {
  font-size: 13px;
  font-weight: 700;
  color: #F49811;
}

/* Hover para landscape */
.tip-card-landscape:hover .tip-card-image-container-landscape img {
  transition: transform 0.3s ease;
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  /* Desktop */
  .tip-card-landscape {
    width: 699px;
    height: 150px;
  }

  .tip-card-image-container-landscape {
    width: 260px;
    height: 150px;
  }

  .tip-card-image-container-landscape img {
    width: 100%;
    height: 100%;
  }

  .tip-card-infos-container-landscape {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 439px;
    height: 150px;
    padding: 15px;
  }

  .tip-card-infos-container-landscape p {
    width: 360px;
    height: 75px;
    text-align: center;
    padding-top: 7px;
  }
}
