/**
 * Hero Luma 3650 - Estilos
 * Custom Luma Plugin
 * Layout: mitad texto promocional | mitad embed (formulario)
 * UX mobile: apilado vertical, texto primero
 */

/* === CONTENEDOR === */
.heroluma3650 {
	background: #e8f4fc;
	padding: 48px 24px;
}

.heroluma3650__inner {
	display: flex; 
	flex-wrap: wrap;
	align-items: stretch;
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Columnas 50/50 en desktop */
.heroluma3650__col {
	flex: 1 1 0;
	min-width: 280px;
}

.heroluma3650__col--text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.heroluma3650__col--embed {
	display: flex;
	align-items: stretch;
}

/* === BADGE === */
.heroluma3650__badge {
	display: inline-block;
	background: #ff9f43;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 6px 14px;
	border-radius: 6px;
	margin-bottom: 20px;
	align-self: flex-start;
}

/* === TÍTULO === */
.heroluma3650__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	color: #1a1a1a;
	margin: 0 0 20px 0;
}

.heroluma3650__title-highlight {
	color: #25c8ff;
	display: block;
	margin-top: 4px;
}

/* === DESCRIPCIÓN === */
.heroluma3650__description {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 24px;
}

.heroluma3650__highlight {
	color: #25c8ff;
	font-weight: 600;
}

/* === BENEFICIOS === */
.heroluma3650__benefits {
	list-style: none;
	margin: 0 0 24px 0;
	padding: 0;
}

.heroluma3650__benefit {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.5;
	color: #333;
}

.heroluma3650__check {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: #25c8ff;
	border-radius: 50%;
	position: relative;
	margin-top: 2px;
}

.heroluma3650__check::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 3px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* === BONUS === */
.heroluma3650__bonuses {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.heroluma3650__bonus {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5;
}

.heroluma3650__bonus--orange {
	background: #fff3e0;
	border: 1px solid #ffe0b2;
	color: #1a1a1a;
}

.heroluma3650__bonus--orange strong {
	color: #e65100;
}

.heroluma3650__bonus--white {
	background: #fff;
	border: 1px solid #e0e0e0;
	color: #333;
}

.heroluma3650__bonus-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e65100'%3E%3Cpath d='M20 7h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v3H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2zm-6 0h-4V4h4v3z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.heroluma3650__bonus--white .heroluma3650__bonus-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e65100'%3E%3Cpath d='M20 7h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v3H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2zm-6 0h-4V4h4v3z'/%3E%3C/svg%3E");
}

/* === DISCLAIMER === */
.heroluma3650__disclaimer {
	font-size: 12px;
	color: #666;
	margin: 0;
}

/* === CARD EMBED (derecha) === */
.heroluma3650__embed-card {
	background: #1e293b;
	border-radius: 12px;
	padding: 28px 24px;
	width: 100%;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.heroluma3650__embed-notice {
	font-size: 12px;
	color: #94a3b8;
	margin: 0 0 12px 0;
}

.heroluma3650__embed-title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
}

.heroluma3650__embed-content {
	flex: 1;
	min-height: 280px;
	position: relative;
}

/* Iframe dentro del embed: ocupar todo el espacio */
.heroluma3650__embed-content iframe {
	width: 100%;
	min-height: 320px;
	border: none;
	border-radius: 8px;
}

/* Formularios embebidos */
.heroluma3650__embed-content form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.heroluma3650__embed-content input,
.heroluma3650__embed-content select,
.heroluma3650__embed-content textarea {
	width: 100%;
	padding: 12px 14px;
	background: #334155;
	border: 1px solid #475569;
	border-radius: 8px;
	color: #fff;
	font-size: 15px;
}

.heroluma3650__embed-content input::placeholder,
.heroluma3650__embed-content textarea::placeholder {
	color: #94a3b8;
}

.heroluma3650__embed-content label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.heroluma3650__embed-placeholder {
	color: #64748b;
	font-size: 14px;
	text-align: center;
	padding: 40px 20px;
	border: 2px dashed #475569;
	border-radius: 8px;
	margin: 0;
}

.heroluma3650__embed-footer {
	font-size: 11px;
	color: #64748b;
	margin: 16px 0 0 0;
}

/* === RESPONSIVE: TABLET === */
@media (max-width: 1024px) {
	.heroluma3650__inner {
		gap: 28px;
	}

	.heroluma3650__col {
		flex: 1 1 100%;
		min-width: 100%;
	}

	/* En tablet: texto primero, embed después (orden visual) */
	.heroluma3650__col--text {
		order: 1;
	}

	.heroluma3650__col--embed {
		order: 2;
	}
}

/* === RESPONSIVE: MÓVIL === */
@media (max-width: 768px) {
	.heroluma3650 {
		padding: 32px 16px;
	}

	.heroluma3650__inner {
		gap: 24px;
	}

	.heroluma3650__badge {
		font-size: 11px;
		padding: 5px 12px;
		margin-bottom: 16px;
	}

	.heroluma3650__title {
		font-size: 26px;
		margin-bottom: 16px;
	}

	.heroluma3650__description {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.heroluma3650__benefit {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.heroluma3650__bonus {
		padding: 12px 14px;
		font-size: 13px;
	}

	.heroluma3650__embed-card {
		padding: 20px 16px;
		min-height: 360px;
	}

	.heroluma3650__embed-title {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.heroluma3650__embed-content {
		min-height: 260px;
	}

	.heroluma3650__embed-content iframe {
		min-height: 280px;
	}
}

/* === MÓVIL PEQUEÑO === */
@media (max-width: 480px) {
	.heroluma3650 {
		padding: 24px 12px;
	}

	.heroluma3650__title {
		font-size: 22px;
	}

	.heroluma3650__embed-card {
		padding: 18px 14px;
	}
}

/* === ACCESIBILIDAD === */
@media (prefers-reduced-motion: reduce) {
	.heroluma3650 * {
		animation: none !important;
		transition: none !important;
	}
}
