/* ---------- Sistema de tarjetas ---------- */
.itsp-card {
	background: #ffffff;
	border: 1px solid rgba(30, 42, 56, 0.06);
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(30, 42, 56, 0.04), 0 8px 24px rgba(30, 42, 56, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.itsp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 8px rgba(30, 42, 56, 0.06), 0 16px 32px rgba(30, 42, 56, 0.1);
}

/* ---------- Círculo de ícono ---------- */
.itsp-icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #E8F3F4;
	color: #12838C;
	flex-shrink: 0;
}
.itsp-icon-circle svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.itsp-icon-circle.is-large {
	width: 56px;
	height: 56px;
}
.itsp-icon-circle.is-large svg {
	width: 28px;
	height: 28px;
}
.itsp-icon-circle.is-navy {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

/* ---------- Chips compactos de servicio ---------- */
.itsp-chip {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.itsp-chip .itsp-icon-circle {
	width: 40px;
	height: 40px;
}
.itsp-chip .itsp-icon-circle svg {
	width: 20px;
	height: 20px;
}
.itsp-chip-label {
	font-weight: 600;
	font-size: 0.95rem;
	color: #1E2A38;
	line-height: 1.3;
}

/* ---------- Botón fantasma (secundario) ---------- */
.wp-block-button.is-style-itsp-ghost .wp-block-button__link {
	background: transparent;
	color: #1E2A38;
	border: 2px solid #C8D2D5;
	box-shadow: none;
}
.wp-block-button.is-style-itsp-ghost .wp-block-button__link:hover {
	background: transparent;
	border-color: #1E2A38;
	color: #1E2A38;
}
.wp-block-button.is-style-itsp-ghost-light .wp-block-button__link {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	box-shadow: none;
}
.wp-block-button.is-style-itsp-ghost-light .wp-block-button__link:hover {
	background: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

/* ---------- Hero: composición de tarjetas flotantes ---------- */
.itsp-hero-visual {
	position: relative;
	min-height: 420px;
}
.itsp-hero-visual::before {
	content: "";
	position: absolute;
	inset: -10%;
	background:
		radial-gradient(circle at 30% 20%, rgba(18, 131, 140, 0.16), transparent 55%),
		radial-gradient(circle at 75% 70%, rgba(30, 42, 56, 0.12), transparent 55%);
	filter: blur(4px);
	z-index: 0;
}
.itsp-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(30, 42, 56, 0.14);
	padding: 1rem 1.25rem;
	z-index: 1;
	animation: itsp-float 6s ease-in-out infinite;
}
.itsp-float-card strong {
	display: block;
	font-size: 0.95rem;
	color: #1E2A38;
}
.itsp-float-card span {
	display: block;
	font-size: 0.8rem;
	color: #5B6B74;
}
.itsp-float-card.is-1 { top: 6%; left: 4%; transform: rotate(-3deg); animation-delay: 0s; }
.itsp-float-card.is-2 { top: 40%; left: 32%; transform: rotate(2deg); animation-delay: 1.5s; }
.itsp-float-card.is-3 { top: 72%; left: 6%; transform: rotate(-2deg); animation-delay: 3s; }

@keyframes itsp-float {
	0%, 100% { margin-top: 0; }
	50% { margin-top: -10px; }
}

@media (max-width: 782px) {
	.itsp-hero-visual { min-height: 320px; }
	.itsp-float-card { position: static; margin-bottom: 1rem; animation: none; transform: none !important; }
	.itsp-hero-visual::before { display: none; }
}
