:root {
	--cds-navy-950: #07182e;
	--cds-navy-900: #0a203c;
	--cds-navy-800: #113869;
	--cds-turquoise-500: #05c0c0;
	--cds-turquoise-300: #35d7d2;
	--cds-surface: #f4f8fb;
	--cds-surface-2: #eaf2f7;
	--cds-text: #17243a;
	--cds-muted: #627185;
	--cds-white: #ffffff;
	--cds-border: #dce7ef;
	--cds-shadow: 0 24px 65px rgba(7, 24, 46, 0.11);
	--cds-shell: 1240px;
}

.cds-section,
.cds-section *,
.cds-section *::before,
.cds-section *::after {
	box-sizing: border-box;
}

.cds-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	color: var(--cds-text);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cds-shell {
	width: min(calc(100% - 40px), var(--cds-shell));
	margin-inline: auto;
}

.cds-section h1,
.cds-section h2,
.cds-section h3,
.cds-section p {
	margin-top: 0;
}

.cds-section h1,
.cds-section h2,
.cds-section h3 {
	color: inherit;
	font-family: Manrope, Inter, "Segoe UI", sans-serif;
	letter-spacing: -0.035em;
}

.cds-section h2 {
	max-width: 900px;
	margin-bottom: 24px;
	font-size: clamp(2.1em, 4vw, 4em);
	line-height: 1.07;
}

.cds-section p {
	color: var(--cds-muted);
	font-size: 1em;
	line-height: 1.75;
}

.cds-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--cds-navy-800);
	font-size: 0.78em;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cds-eyebrow::before {
	width: 27px;
	height: 2px;
	border-radius: 99px;
	background: var(--cds-turquoise-500);
	content: "";
}

.cds-eyebrow--light {
	color: rgba(255, 255, 255, 0.76);
}

.cds-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.cds-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 13px;
	font-size: 0.94em;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cds-button:hover,
.cds-button:focus {
	transform: translateY(-2px);
	text-decoration: none;
}

.cds-button:focus-visible {
	outline: 3px solid rgba(5, 192, 192, 0.35);
	outline-offset: 3px;
}

.cds-button--primary {
	color: var(--cds-navy-950);
	background: var(--cds-turquoise-500);
	box-shadow: 0 18px 40px rgba(5, 192, 192, 0.2);
}

.cds-button--primary:hover,
.cds-button--primary:focus {
	color: var(--cds-navy-950);
	background: var(--cds-turquoise-300);
}

.cds-button--outline {
	color: var(--cds-white);
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.05);
}

.cds-button--dark {
	color: var(--cds-white);
	background: var(--cds-navy-950);
}

.cds-button--outline-dark {
	color: var(--cds-navy-950);
	border-color: rgba(7, 24, 46, 0.24);
	background: rgba(255, 255, 255, 0.2);
}

/* Hero */
.cds-hero {
	padding: clamp(88px, 9vw, 145px) 0 0;
	color: var(--cds-white);
	background:
		radial-gradient(circle at 80% 22%, rgba(5, 192, 192, 0.15), transparent 30%),
		linear-gradient(135deg, #061428 0%, #0a2445 52%, #0d315b 100%);
}

.cds-hero__shape {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.cds-hero__shape--one {
	top: -200px;
	right: -120px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(53, 215, 210, 0.13);
	box-shadow:
		0 0 0 70px rgba(53, 215, 210, 0.03),
		0 0 0 140px rgba(53, 215, 210, 0.02);
}

.cds-hero__shape--two {
	bottom: 40px;
	left: -120px;
	width: 320px;
	height: 320px;
	background: rgba(5, 192, 192, 0.08);
	filter: blur(90px);
}

.cds-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
	gap: clamp(55px, 8vw, 120px);
	align-items: center;
}

.cds-hero__content {
	padding-bottom: 70px;
}

.cds-hero h1 {
	max-width: 760px;
	margin-bottom: 27px;
	color: var(--cds-white);
	font-size: clamp(3em, 5.6vw, 5.7em);
	line-height: 1;
}

.cds-hero__content > p {
	max-width: 690px;
	margin-bottom: 33px;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(1.04em, 1.4vw, 1.2em);
}

.cds-hero__visual {
	display: grid;
	place-items: center;
	padding-bottom: 70px;
}

.cds-service-map {
	position: relative;
	width: min(520px, 92%);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
}

.cds-service-map::before,
.cds-service-map::after {
	position: absolute;
	inset: 14%;
	border: 1px dashed rgba(53, 215, 210, 0.22);
	border-radius: 50%;
	content: "";
}

.cds-service-map::after {
	inset: 29%;
	border-style: solid;
}

.cds-service-map__core {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 155px;
	height: 155px;
	place-content: center;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(53, 215, 210, 0.2), rgba(255, 255, 255, 0.04));
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
	text-align: center;
	transform: translate(-50%, -50%);
}

.cds-service-map__core span {
	color: var(--cds-turquoise-300);
	font-size: 0.7em;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cds-service-map__core strong {
	color: var(--cds-white);
	font-size: 1.35em;
}

.cds-map-item {
	position: absolute;
	display: grid;
	min-width: 115px;
	gap: 7px;
	place-items: center;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 14px;
	color: var(--cds-white);
	background: rgba(7, 24, 46, 0.76);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	font-size: 0.76em;
	font-weight: 800;
	backdrop-filter: blur(14px);
}

.cds-map-item svg {
	width: 24px;
	height: 24px;
	color: var(--cds-turquoise-300);
}

.cds-map-item--one {
	top: 4%;
	left: 50%;
	transform: translateX(-50%);
}

.cds-map-item--two {
	top: 23%;
	right: -4%;
}

.cds-map-item--three {
	right: -4%;
	bottom: 23%;
}

.cds-map-item--four {
	bottom: 4%;
	left: 50%;
	transform: translateX(-50%);
}

.cds-map-item--five {
	bottom: 23%;
	left: -4%;
}

.cds-map-item--six {
	top: 23%;
	left: -4%;
}

.cds-hero__strip {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 0;
	border-radius: 22px 22px 0 0;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(18px);
}

.cds-hero__strip div {
	display: grid;
	gap: 4px;
	padding: 22px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cds-hero__strip div:last-child {
	border-right: 0;
}

.cds-hero__strip strong {
	color: var(--cds-white);
	font-size: 0.9em;
}

.cds-hero__strip span {
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.73em;
}

/* Overview */
.cds-overview {
	padding: clamp(90px, 9vw, 140px) 0;
	background: var(--cds-white);
}

.cds-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(60px, 8vw, 120px);
}

.cds-overview__lead {
	max-width: 730px;
	margin-bottom: 32px;
	font-size: 1.1em;
}

.cds-overview__cards {
	display: grid;
	gap: 14px;
}

.cds-overview__cards article {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 19px;
	border: 1px solid var(--cds-border);
	border-radius: 17px;
	background: #fbfdff;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cds-overview__cards article:hover {
	transform: translateY(-3px);
	border-color: rgba(5, 192, 192, 0.35);
	box-shadow: var(--cds-shadow);
}

.cds-overview__cards i {
	display: grid;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 13px;
	color: var(--cds-navy-800);
	background: rgba(5, 192, 192, 0.13);
}

.cds-overview__cards svg {
	width: 23px;
	height: 23px;
}

.cds-overview__cards div {
	display: grid;
	gap: 4px;
}

.cds-overview__cards strong {
	font-size: 1em;
}

.cds-overview__cards span {
	color: var(--cds-muted);
	font-size: 0.84em;
	line-height: 1.55;
}

/* Catalog */
.cds-catalog {
	padding: clamp(90px, 9vw, 145px) 0;
	background: var(--cds-surface);
}

.cds-heading {
	margin-bottom: 50px;
}

.cds-heading--center {
	max-width: 860px;
	margin-inline: auto;
	text-align: center;
}

.cds-heading--center h2,
.cds-heading--center p {
	margin-inline: auto;
}

.cds-catalog__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.cds-service-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 0.6fr);
	gap: 26px;
	min-height: 360px;
	padding: 30px;
	border: 1px solid var(--cds-border);
	border-radius: 24px;
	background: var(--cds-white);
	box-shadow: 0 12px 34px rgba(7, 24, 46, 0.04);
	transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.cds-service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(5, 192, 192, 0.38);
	box-shadow: var(--cds-shadow);
}

.cds-service-card__top {
	grid-column: 1 / -1;
}

.cds-service-card__top i {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 26px;
	place-items: center;
	border-radius: 17px;
	color: var(--cds-navy-800);
	background: linear-gradient(135deg, rgba(5, 192, 192, 0.18), rgba(17, 56, 105, 0.08));
}

.cds-service-card__top svg {
	width: 29px;
	height: 29px;
}

.cds-service-card h3 {
	margin-bottom: 12px;
	font-size: 1.35em;
}

.cds-service-card p {
	margin-bottom: 0;
	font-size: 0.92em;
}

.cds-service-card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cds-service-card li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	color: var(--cds-muted);
	font-size: 0.8em;
	line-height: 1.45;
}

.cds-service-card li span {
	display: grid;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 7px;
	color: var(--cds-navy-950);
	background: rgba(5, 192, 192, 0.16);
	font-size: 0.65em;
	font-weight: 900;
}

.cds-service-card > a {
	align-self: end;
	justify-self: end;
	display: inline-flex;
	gap: 7px;
	align-items: center;
	color: var(--cds-navy-800);
	font-size: 0.84em;
	font-weight: 800;
	text-decoration: none;
}

/* Modes */
.cds-modes {
	padding: clamp(95px, 10vw, 150px) 0;
	color: var(--cds-white);
	background:
		radial-gradient(circle at 78% 25%, rgba(5, 192, 192, 0.14), transparent 30%),
		linear-gradient(135deg, #07182e 0%, #0e315c 100%);
}

.cds-modes h2 {
	color: var(--cds-white);
}

.cds-modes__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.cds-modes__grid article {
	min-height: 280px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(14px);
}

.cds-modes__number {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 45px;
	place-items: center;
	border-radius: 50%;
	color: var(--cds-navy-950);
	background: var(--cds-turquoise-500);
	font-size: 0.82em;
	font-weight: 900;
}

.cds-modes h3 {
	margin-bottom: 13px;
	color: var(--cds-white);
	font-size: 1.3em;
}

.cds-modes p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9em;
}

/* Why */
.cds-why {
	padding: clamp(90px, 9vw, 145px) 0;
	background: var(--cds-white);
}

.cds-why__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(60px, 8vw, 120px);
}

.cds-why__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.cds-why__items article {
	display: flex;
	gap: 15px;
	padding: 22px;
	border: 1px solid var(--cds-border);
	border-radius: 18px;
	background: #fbfdff;
}

.cds-why__items i {
	display: grid;
	flex: 0 0 45px;
	width: 45px;
	height: 45px;
	place-items: center;
	border-radius: 13px;
	color: var(--cds-navy-800);
	background: rgba(5, 192, 192, 0.13);
}

.cds-why__items svg {
	width: 23px;
	height: 23px;
}

.cds-why__items h3 {
	margin-bottom: 8px;
	font-size: 1em;
}

.cds-why__items p {
	margin-bottom: 0;
	font-size: 0.82em;
	line-height: 1.55;
}

/* CTA */
.cds-cta {
	padding: clamp(78px, 8vw, 115px) 0;
	color: var(--cds-navy-950);
	background: linear-gradient(125deg, #08bdbd 0%, #35d7d2 50%, #65e3dc 100%);
}

.cds-cta__shape {
	position: absolute;
	border: 1px solid rgba(7, 24, 46, 0.1);
	border-radius: 50%;
}

.cds-cta__shape--one {
	top: -160px;
	right: -80px;
	width: 420px;
	height: 420px;
	box-shadow:
		0 0 0 60px rgba(7, 24, 46, 0.025),
		0 0 0 120px rgba(7, 24, 46, 0.015);
}

.cds-cta__shape--two {
	bottom: -150px;
	left: -100px;
	width: 330px;
	height: 330px;
	background: rgba(255, 255, 255, 0.08);
}

.cds-cta__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) auto;
	gap: 70px;
	align-items: center;
}

.cds-cta__inner > div:first-child > span {
	display: block;
	margin-bottom: 15px;
	color: rgba(7, 24, 46, 0.62);
	font-size: 0.76em;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cds-cta h2 {
	max-width: 850px;
	margin-bottom: 16px;
	color: var(--cds-navy-950);
}

.cds-cta p {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(7, 24, 46, 0.7);
}

/* Reveal */
[data-cds-reveal] {
	opacity: 1;
	transform: none;
	transition: opacity 700ms ease, transform 700ms ease;
}

html.cds-reveal-ready [data-cds-reveal]:not(.is-visible) {
	opacity: 0;
	transform: translateY(24px);
}

html.cds-elementor-preview [data-cds-reveal],
body.elementor-editor-active [data-cds-reveal],
body.elementor-editor-preview [data-cds-reveal] {
	opacity: 1 !important;
	transform: none !important;
}

/* Responsive */
@media (max-width: 1100px) {
	.cds-hero__grid,
	.cds-overview__grid,
	.cds-why__grid {
		grid-template-columns: 1fr;
	}

	.cds-hero__content {
		max-width: 850px;
		padding-bottom: 20px;
	}

	.cds-service-map {
		width: min(560px, 88%);
	}

	.cds-catalog__grid {
		grid-template-columns: 1fr;
	}

	.cds-service-card {
		min-height: 0;
	}

	.cds-cta__inner {
		grid-template-columns: 1fr;
		gap: 35px;
	}
}

@media (max-width: 850px) {
	.cds-hero__strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cds-hero__strip div:nth-child(2) {
		border-right: 0;
	}

	.cds-hero__strip div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.cds-modes__grid {
		grid-template-columns: 1fr;
	}

	.cds-why__items {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.cds-shell {
		width: min(calc(100% - 28px), var(--cds-shell));
	}

	.cds-section h2 {
		font-size: clamp(2em, 10vw, 3em);
	}

	.cds-hero {
		padding-top: 72px;
	}

	.cds-hero h1 {
		font-size: clamp(2.6em, 13vw, 4.1em);
	}

	.cds-actions {
		align-items: stretch;
	}

	.cds-button {
		width: 100%;
	}

	.cds-service-map {
		width: min(390px, 94%);
	}

	.cds-service-map__core {
		width: 125px;
		height: 125px;
	}

	.cds-map-item {
		min-width: 88px;
		padding: 9px 10px;
		font-size: 0.63em;
	}

	.cds-map-item svg {
		width: 20px;
		height: 20px;
	}

	.cds-service-card {
		grid-template-columns: 1fr;
	}

	.cds-service-card__top {
		grid-column: auto;
	}

	.cds-service-card > a {
		justify-self: start;
	}

	.cds-modes__grid article {
		min-height: 0;
	}

	.cds-modes__number {
		margin-bottom: 24px;
	}
}

@media (max-width: 470px) {
	.cds-hero__strip {
		grid-template-columns: 1fr;
	}

	.cds-hero__strip div {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.cds-hero__strip div:last-child {
		border-bottom: 0;
	}

	.cds-service-map {
		width: min(315px, 96%);
	}

	.cds-map-item {
		min-width: 76px;
		padding: 7px 8px;
		font-size: 0.57em;
	}

	.cds-service-card,
	.cds-modes__grid article,
	.cds-why__items article {
		padding: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cds-section *,
	.cds-section *::before,
	.cds-section *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	[data-cds-reveal] {
		opacity: 1;
		transform: none;
	}
}


/* ============================================================
   CDBN_SERVICES_REPLICA_220
   Puente de réplica Elementor -> Bricks nativo.
   Mantiene escala, iconos, enlaces y estructura responsive.
   ============================================================ */
.cds-section {
    font-size: 16px !important;
    line-height: 1.5;
}

.cds-native-services-page,
.cds-native-services-page ~ .cds-section {
    margin: 0;
}

.cds-section .brxe-icon {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    color: inherit;
    font-size: inherit !important;
    line-height: 1 !important;
}

.cds-section .brxe-icon::before,
.cds-section .brxe-icon > i,
.cds-section .brxe-icon > svg,
.cds-section .brxe-icon svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    font-size: inherit !important;
    line-height: 1 !important;
}

.cds-map-item > .brxe-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 24px !important;
}

.cds-overview__icon,
.cds-service-card__icon,
.cds-why__icon {
    overflow: hidden;
    flex-shrink: 0;
    line-height: 1;
}

.cds-overview__icon .brxe-icon,
.cds-overview__icon.brxe-icon,
.cds-why__icon .brxe-icon,
.cds-why__icon.brxe-icon {
    width: 23px !important;
    height: 23px !important;
    min-width: 23px !important;
    min-height: 23px !important;
    font-size: 23px !important;
}

.cds-service-card__icon .brxe-icon,
.cds-service-card__icon.brxe-icon {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    font-size: 29px !important;
}

/* Bricks aplica display flex a algunos contenedores nativos. */
.cds-service-map,
.cds-service-map__core,
.cds-map-item,
.cds-hero__strip,
.cds-overview__grid,
.cds-overview__cards,
.cds-catalog__grid,
.cds-service-card,
.cds-service-card__top,
.cds-modes__grid,
.cds-why__grid,
.cds-why__items,
.cds-cta__inner,
.cds-actions {
    min-width: 0;
}

.cds-service-card > ul {
    width: 100%;
}

.cds-service-card > a {
    color: var(--cds-navy-800);
}

@media (min-width: 1201px) {
    .cds-hero__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
    }
}

@media (max-width: 700px) {
    .cds-map-item > .brxe-icon {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        font-size: 20px !important;
    }
}

/* BEGIN CDBN_SERVICES_CARD_TEXT_FIX_221
 * Corrige la colisión entre el cuadro de verificación y el texto de cada
 * beneficio. En Bricks ambos son spans; la regla anterior aplicaba el ancho
 * de 20px a los dos y comprimía el texto palabra por palabra.
 */
.cds-service-card li {
	display: grid !important;
	grid-template-columns: 20px minmax(0, 1fr) !important;
	align-items: start !important;
	column-gap: 10px !important;
	width: 100% !important;
	min-width: 0 !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
}

.cds-service-card li > span:first-child {
	display: grid !important;
	place-items: center !important;
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	max-width: 20px !important;
	margin: 1px 0 0 !important;
	padding: 0 !important;
	border-radius: 7px !important;
	color: var(--cds-navy-950) !important;
	background: rgba(5, 192, 192, 0.16) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.cds-service-card li > span:nth-child(n + 2) {
	display: block !important;
	place-items: initial !important;
	flex: 1 1 auto !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	color: var(--cds-muted) !important;
	background: transparent !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: break-word !important;
}

@media (max-width: 700px) {
	.cds-service-card li,
	.cds-service-card li > span:nth-child(n + 2) {
		font-size: 15px !important;
	}
}
/* END CDBN_SERVICES_CARD_TEXT_FIX_221 */

/* BEGIN CDBN_SERVICES_CARD_ICON_CENTER_FIX_222
 * Centra de forma geométrica los iconos superiores de las seis tarjetas.
 * La regla base dirigida a todos los elementos <i> heredaba al icono interno
 * el margen inferior, fondo y radio del contenedor, desplazándolo hacia arriba.
 */
.cds-service-card__top > .cds-service-card__icon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 58px !important;
	height: 58px !important;
	min-width: 58px !important;
	min-height: 58px !important;
	max-width: 58px !important;
	max-height: 58px !important;
	margin: 0 0 26px !important;
	padding: 0 !important;
	overflow: hidden !important;
	line-height: 1 !important;
	text-align: center !important;
}

.cds-service-card__top > .cds-service-card__icon > .brxe-icon {
	position: static !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 29px !important;
	height: 29px !important;
	min-width: 29px !important;
	min-height: 29px !important;
	max-width: 29px !important;
	max-height: 29px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--cds-navy-800) !important;
	font-size: 29px !important;
	line-height: 1 !important;
	text-align: center !important;
	transform: none !important;
}

.cds-service-card__top > .cds-service-card__icon > .brxe-icon::before,
.cds-service-card__top > .cds-service-card__icon > .brxe-icon > i,
.cds-service-card__top > .cds-service-card__icon > .brxe-icon > svg,
.cds-service-card__top > .cds-service-card__icon > .brxe-icon svg {
	display: block !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: 29px !important;
	max-height: 29px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	font-size: 29px !important;
	line-height: 1 !important;
	transform: none !important;
}
/* END CDBN_SERVICES_CARD_ICON_CENTER_FIX_222 */
