.models-grid {
	display: grid;
	grid-gap: 1rem;
	gap: 1rem;
	margin-bottom: 2rem;
}
.model-card {
	background-color: #161616;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: all .3s 
ease;
	position: relative;
	border: 3px solid #ff0087;
}
.model-media {
	position: relative;
	height: auto;
	overflow: hidden;
	aspect-ratio: 2 / 3;
	border-radius: 12px;
	background: #000;
	width: 100%;
}
.model-image, .model-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s 
ease;
}
.model-card .model-image, .model-card .model-video {
	image-rendering: auto !important;
	-webkit-image-rendering: auto !important;
	-ms-interpolation-mode: auto !important;
}
.model-video {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 0;
}
.model-badges {
	position: absolute;
	top: .75rem;
	left: .75rem;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.model-country {
	font-size: 30px;
	line-height: 1;
}
.model-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .9), transparent);
	color: #fff;
	padding: 5rem .75rem .75rem;
	z-index: 1;
}
.model-age, .model-name {
	font-weight: 700;
	line-height: 1;
}
.model-age {
	font-size: 18px;
	color: #ac9327;
	margin: 0;
	text-shadow: none;
}
.chatea {
	font-size: 14px;
	display: block;
	margin-bottom: 3px;
	color: #ac9327;
	line-height: 1em;
	font-weight: 700;
}
.model-name {	margin: 0 8px 0 0;}
.model-name {
	font-size: 18px;
	margin: 0 8px 0 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, .8);
	color: #fff;
}
.model-caracteristicas {
	font-size: 12px;
	color: #ccc;
	margin-top: 5px;
	line-height: 1;
	display: flex;
}
.model-card:hover .model-image, .model-card:hover .model-video {
	opacity: 1;
}
.model-caracteristicas span {
	padding-right: 6px;
	border-right: 1px solid;
	margin-right: 6px;
}
.model-caracteristicas span:last-child {
	padding-right: 0;
	border-right: 0 solid;
	margin-right: 0;
}
.nsfw-banner {
	background: linear-gradient(268deg, #831c1c -14.8%, #3c003a 102.08%);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 1.5rem;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
 .nsfw-banner {
	  flex-direction: column;
	  text-align: center;
	  gap: 20px;
  }
.nsfw-banner:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .5;
	border-radius: 0;
	background: url(https://www.colormusic.cl/wp-content/themes/woodmart-child/noviasvirtuales/desktop-heart-pattern.webp);
	z-index: 0;
}
.nsfw-content {
	position: relative;
	z-index: 1;
}
.nsfw-content h2 {
	font-size: 32px;
	margin-bottom: 10px;
	color: #fff;
}
.nsfw-content p, .nsfw-banner .unlock-btn {
	font-size: 16px;
	color: #fff;
}
.nsfw-content p {margin-bottom: 0;}
.nsfw-banner .unlock-btn {
	background: linear-gradient(135deg, #ff006e, #ff4500);
	border: none;
	padding: 15px 25px;
	border-radius: 25px;
	font-weight: 700;
	cursor: pointer;
	transition: all .3s 
ease;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 1;
	font-size: 16px;
	color: #fff;
}
.nsfw-banner .unlock-btn a {color: #fff;}
.banderas_noviasv {
	display: block;
	text-align: center;
	font-size: 2rem;
}
@media (min-width: 768px) {
	.models-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.6rem;
	}
	
	
}
@media (min-width: 1280px) {
	.nsfw-banner {
		  flex-direction: row;

	  }
	.models-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1rem;
	}
	.model-info {
		padding: 7rem 2rem 2rem;
	}
	.model-name, .model-age {
		font-size: 25px;
	}
	.model-country {
		font-size: 50px;
	}
	.chatea {font-size: 17px;}
}
@media (max-width: 767px) {
	.models-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		
		gap: 0.6rem;
	}
 
  
 
  .banderas_noviasv {
	  display: block;
	  text-align: center;
	  font-size: 1.2rem;
	  margin-top: 15px;
  }
}