@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
  position: relative;
  height: 100%;
}

header{
  padding: 0.5rem;
}

body {
  background: #eee;
  font-family: Inter, Helvetica;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 90vh;
  padding-top: 10px;
  padding-bottom: 20px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 450px;
  height: 83vh;
  background-color: #faf7f7;
  border-radius: 20px;
  box-shadow: 10px 10px 5px 0px rgba(180, 180, 180, 0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(180, 180, 180, 0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(180, 180, 180, 0.75);
  padding: 2em 1em;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.card-image {
  height: 45%;
  border-radius: 20px;
  padding: 3px;
  margin-bottom: 1em;
}

.card-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.card_content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card_title {
  font-size: 23px;
  font-weight: bold;
  position: relative;
  top: .05rem;
  color: #3ba0b7;
  text-align: center;
}

.card_name {
  color: red;
}

.card_text {
  text-align: justify;
  font-size: 15px;
  padding: 0.5rem;
  color:#222222;
  line-height: 25px;
}

.card_text span{
  font-weight: 600;
}

.card_btn {
  position: relative;
  background-color: #3d7fa4;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  padding: .5em;
  border-radius: .5em;
  margin-bottom: 210px;
  cursor: pointer;
  z-index: 100;

}

.card_btn:hover{
  border: solid 1px #3d7fa4;
  color: #3d7fa4;
  background: #fff;

}

@media (max-width: 992px) {
  .swiper-slide{
    width: 90vw;
  }
}




#preloader {
	background: #FFF;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

#pre-status, .preload-placeholder {
	background-image:url(../images/gifts/preloader.gif);
	background-position: center;
	background-repeat: no-repeat;
	height: 296px;
	width: 296px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.preload-placeholder {
	background: none;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* Media query para dispositivos móviles */
@media only screen and (max-width: 768px) {
  #pre-status, .preload-placeholder {
    height: 148px;
    width: 148px;
    background-size: cover;
  }
}


