/* ========================================
   VIP MEMBERSHIP - MODERN CARD DESIGN FIX
   2 CARDS POR HILERA
   ======================================== */

/* Container principal */
.vip-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 25px 10px;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Tarjeta VIP */
.vip-card {
	background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	transition: all 0.3s ease;
	width: calc(50% - 20px);
	max-width: 230px;
	min-width: 210px;
	margin: 10px;
	position: relative;
	box-sizing: border-box;
}

.vip-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
}

.vip-card-inner {
	position: relative;
	z-index: 1;
}

/* Header con imagen */
.vip-card-header {
	background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
	padding: 18px 10px 12px;
	text-align: center;
	position: relative;
}

.vip-image-container {
	margin: 0 auto 10px;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
	border-radius: 50%;
	padding: 8px;
	box-sizing: border-box;
}

.vip-image {
	width: 110px;
	height: 110px;
	max-width: 110px;
	max-height: 110px;
	object-fit: contain;
	filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-6px);
	}
}

.vip-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.3);
}

.vip-card-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Body */
.vip-card-body {
	padding: 14px 12px;
	background: rgba(0,0,0,0.2);
}

.vip-package-info {
	text-align: center;
	margin-bottom: 10px;
}

.vip-days {
	display: inline-block;
	background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
	padding: 6px 14px;
	border-radius: 25px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid rgba(255,255,255,0.1);
}

/* Precio */
.vip-price-container {
	text-align: center;
	margin: 12px 0;
	padding: 12px 0;
	border-top: 1px solid rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vip-price {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: #00d4ff;
	line-height: 1;
	text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.vip-currency {
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255,255,255,0.7);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 5px;
}

/* Beneficios mini */
.vip-benefits-mini {
	margin-top: 12px;
}

.vip-benefit-item {
	display: flex;
	align-items: center;
	padding: 5px 0;
	color: rgba(255,255,255,0.9);
	font-size: 11px;
	column-gap: 8px;
}

.vip-benefit-item i {
	color: #00ff88;
	font-size: 12px;
	flex-shrink: 0;
}

.vip-benefit-more {
	text-align: center;
	padding: 6px 0;
	color: rgba(255,255,255,0.5);
	font-size: 11px;
	font-style: italic;
}

/* Footer con botón */
.vip-card-footer {
	padding: 12px;
	text-align: center;
	background: rgba(0,0,0,0.15);
}

.btn-vip-buy {
	display: inline-block;
	width: 100%;
	padding: 10px 14px;
	background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
	box-sizing: border-box;
}

.btn-vip-buy:hover {
	background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
	box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
	transform: translateY(-2px);
	color: #fff !important;
	text-decoration: none;
}

.btn-vip-buy:active {
	transform: translateY(0);
}

/* Colores por tipo de VIP */
.vip-type-1 {
	border-top: 4px solid #cd7f32;
}

.vip-type-1 .vip-card-title {
	color: #ffa06c;
}

.vip-type-2 {
	border-top: 4px solid #c0c0c0;
}

.vip-type-2 .vip-card-title {
	color: #dcdcdc;
}

.vip-type-3 {
	border-top: 4px solid #ffd700;
}

.vip-type-3 .vip-card-title {
	color: #ffbb38;
}

.vip-type-4 {
	border-top: 4px solid #63ffbb;
}

.vip-type-4 .vip-card-title {
	color: #63ffbb;
}

/* ========================================
   RESPONSIVE TABLET / MOBILE
   ======================================== */

@media (max-width: 768px) {
	.vip-container {
		padding: 20px 5px;
	}

	.vip-card {
		width: calc(50% - 10px);
		max-width: 165px;
		min-width: 145px;
		margin: 5px;
		border-radius: 14px;
	}

	.vip-card-header {
		padding: 12px 6px 8px;
	}

	.vip-image-container {
		width: 85px;
		height: 85px;
		padding: 5px;
		margin-bottom: 8px;
	}

	.vip-image {
		width: 75px;
		height: 75px;
		max-width: 75px;
		max-height: 75px;
	}

	.vip-card-title {
		font-size: 12px;
		letter-spacing: 1px;
	}

	.vip-card-body {
		padding: 10px 8px;
	}

	.vip-days {
		font-size: 10px;
		padding: 5px 10px;
	}

	.vip-price-container {
		margin: 10px 0;
		padding: 10px 0;
	}

	.vip-price {
		font-size: 20px;
	}

	.vip-currency {
		font-size: 9px;
		letter-spacing: 1px;
	}

	.vip-benefit-item {
		font-size: 10px;
		padding: 4px 0;
	}

	.vip-benefit-more {
		font-size: 10px;
	}

	.vip-card-footer {
		padding: 8px;
	}

	.btn-vip-buy {
		font-size: 10px;
		padding: 8px 10px;
	}
}

/* Celulares muy chicos */
@media (max-width: 420px) {
	.vip-card {
		width: calc(50% - 8px);
		max-width: 150px;
		min-width: 135px;
		margin: 4px;
	}

	.vip-image-container {
		width: 75px;
		height: 75px;
	}

	.vip-image {
		width: 68px;
		height: 68px;
		max-width: 68px;
		max-height: 68px;
	}

	.vip-card-title {
		font-size: 11px;
	}

	.vip-price {
		font-size: 18px;
	}
}

/* ========================================
   LEGACY SUPPORT
   ======================================== */

.panel-vip {
	display: none !important;
}

.btn-vip {
	display: inline-block;
	padding: 10px 20px;
	background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
	color: #fff !important;
	font-weight: 600;
	border: none;
	border-radius: 25px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-vip:hover {
	background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
	color: #fff !important;
	text-decoration: none;
}