/* ============================================
   SVC 03 — SENALES SINTOMAS
   Widget: webc-03-senales-sintomas
   ============================================ */

.svc-senales {
	padding: var(--webc__section-padding-y);
	background-color: var(--webc__color-primary-light);
}

.svc-senales__container {
	max-width: 960px;
	margin: 0 auto;
}

.svc-senales__titulo {
	font-family: var(--webc__font-display);
	font-size: var(--webc__font-size-2xl);
	font-weight: var(--webc__font-weight-bold);
	color: var(--webc__color-primary);
	margin: 0 0 var(--webc__spacing-xl) 0;
	text-align: center;
	line-height: var(--webc__line-height-tight);
}

.svc-senales__lista {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--webc__spacing-xl) 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--webc__spacing-md) var(--webc__spacing-xl);
}

.svc-senales__item {
	display: flex;
	align-items: flex-start;
	gap: var(--webc__spacing-md);
	font-family: var(--webc__font-text);
	font-size: var(--webc__font-size-base);
	color: var(--webc__color-secondary);
	line-height: var(--webc__line-height-normal);
}

.svc-senales__bullet {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--webc__color-primary);
	color: var(--webc__color-white);
	flex-shrink: 0;
	margin-top: 2px;
}

.svc-senales__bullet svg {
	width: 14px;
	height: 14px;
}

.svc-senales__texto {
	flex: 1;
}

.svc-senales__texto--enlace {
	color: var(--webc__color-primary);
	text-decoration: underline;
	text-decoration-color: var(--webc__color-accent);
	text-underline-offset: 3px;
	transition: color 0.3s ease;
}

.svc-senales__texto--enlace:hover {
	color: var(--webc__color-primary-dark);
}

.svc-senales__cuando {
	max-width: 760px;
	margin: 0 auto;
	padding: var(--webc__spacing-lg) var(--webc__spacing-2xl);
	background-color: var(--webc__color-white);
	border-radius: 8px;
	box-shadow: var(--webc__shadow-sm);
}

.svc-senales__cuando-titulo {
	font-family: var(--webc__font-display);
	font-size: var(--webc__font-size-lg);
	font-weight: var(--webc__font-weight-bold);
	color: var(--webc__color-primary);
	margin: 0 0 var(--webc__spacing-md) 0;
	line-height: var(--webc__line-height-tight);
}

.svc-senales__cuando-texto {
	font-family: var(--webc__font-text);
	font-size: var(--webc__font-size-base);
	color: var(--webc__color-text);
	line-height: var(--webc__line-height-normal);
	margin: 0;
}

@media (max-width: 767px) {
	.svc-senales__lista {
		grid-template-columns: 1fr;
		gap: var(--webc__spacing-md);
	}
}
