




/* ─────────────────────────────────────────────────────────────────────────── */
/* Benefits Band (Beneficios Band) */
/* ─────────────────────────────────────────────────────────────────────────── */
.single-tier-1-band {
    position: relative;
    background: linear-gradient(135deg, #eff5ff 0%, #dfeeff 100%);
    border-top: 1px solid rgba(38, 95, 241, 0.1);
    border-bottom: 1px solid rgba(38, 95, 241, 0.08);
    overflow: hidden;
}

.single-tier-1-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 86%, rgba(255, 255, 255, 0.45) 100%);
    pointer-events: none;
}

.single-tier-1-band__track {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.single-tier-1-band__list {
    display: flex;
    gap: 3rem;
    padding: 1.1rem 0;
    list-style: none;
    margin: 0;
    animation: band-scroll 30s linear infinite;
    white-space: nowrap;
}

.single-tier-1-band__list li {
    position: relative;
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 0.95rem;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #1746b7;
    box-shadow: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.single-tier-1-band__list li::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 1.35rem;
    border-radius: 50%;
    vertical-align: middle;
    background: rgba(38, 95, 241, 0.28);
    box-shadow: 0 0 0 4px rgba(38, 95, 241, 0.08);
}

.single-tier-1-band__list li:hover {
    color: #0d2f80;
    opacity: 1;
    transform: none;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* Tier 1 Section Base */
/* ─────────────────────────────────────────────────────────────────────────── */
.fe-single--tier1 {
    --fe-tier1-title-color: #1f2a37;
    --fe-tier1-title-font-size: 28px;
    --fe-tier1-title-line-height: 36px;
    --fe-tier1-card-border: #dce6ff;
    --fe-tier1-card-text: #6b7280;
}

.fe-tier1-section {
    padding: 4.5rem 0;
}

.fe-tier1-section__container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 16px;
}

.fe-tier1-section__title {
    margin: 0 0 2.5rem;
    color: var(--fe-tier1-title-color);
    text-align: center;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--fe-tier1-title-font-size);
    font-style: normal;
    font-weight: 600;
    line-height: var(--fe-tier1-title-line-height);
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* Tier 1 - Costo oculto */
/* ─────────────────────────────────────────────────────────────────────────── */
.fe-tier1-section--costos {
    background: #ffffff;
}

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

.fe-tier1-costos__card {
    display: flex;
    min-height: 220px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid var(--fe-tier1-card-border);
    background: #fff;
}

.fe-tier1-costos__card-eyebrow {
    color: #1f2a37;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.fe-tier1-costos__card-title {
    color: #1f2a37;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.fe-tier1-costos__card-text {
    margin: 0;
    color: var(--fe-tier1-card-text);
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

@media (max-width: 991px) {
    .fe-tier1-section {
        padding: 3.5rem 0;
    }

    .fe-tier1-costos__card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .fe-tier1-section {
        padding: 3rem 0;
    }

    .fe-tier1-section__title {
        margin-bottom: 2rem;
        font-size: 24px;
        line-height: 32px;
    }

    .fe-tier1-costos__grid {
        grid-template-columns: 1fr;
    }

    .fe-tier1-costos__card {
        min-height: 0;
        padding: 28px 24px;
    }

    .fe-tier1-costos__card-text {
        font-size: 15px;
        line-height: 28px;
    }
}

	/* ─────────────────────────────────────────────────────────────────────────── */
	/* Tier 1 - Pasos */
	/* ─────────────────────────────────────────────────────────────────────────── */
	.fe-tier1-section--pasos {
		background: #ffffff;
		padding-top: 0;
		padding-bottom: 72px;
	}

	.fe-tier1-pasos__grid {
		display: flex;
		flex-direction: row;
		align-items: stretch;
		justify-content: center;
		gap: 20px;
	}

	.fe-tier1-pasos__card {
		width: calc((100% - 40px) / 3);
		display: flex;
		padding: 24px 20px;
		flex-direction: column;
		align-items: center;
		border-radius: 12px;
		border: 1px solid #e1e9f4;
		background: #fff;
		text-align: center;
		min-width: 0;
	}

	.fe-tier1-pasos__number {
		width: 34px;
		height: 34px;
		margin-bottom: 24px;
		border-radius: 999px;
		background: #265ff1;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		text-align: center;
		font-family: Poppins, Arial, sans-serif;
		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 20px;
		flex-shrink: 0;
	}

	.fe-tier1-pasos__card-title {
		margin: 0 0 8px;
		color: #1f2a37;
		text-align: center;
		font-family: Poppins, Arial, sans-serif;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 24px;
	}

	.fe-tier1-pasos__card-text {
		margin: 0;
		color: #6b7280;
		text-align: center;
		font-family: Inter, Arial, sans-serif;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px;
		overflow-wrap: break-word;
		word-break: break-word;
	}

	@media (max-width: 991px) {
		.fe-tier1-section--pasos {
			padding-bottom: 56px;
		}

		.fe-tier1-pasos__grid {
			gap: 16px;
		}

		.fe-tier1-pasos__card {
			width: calc((100% - 32px) / 3);
			padding: 24px 16px;
		}
	}

	@media (max-width: 768px) {
		.fe-tier1-section--pasos {
			padding-bottom: 40px;
		}

		.fe-tier1-pasos__grid {
			flex-direction: column;
			gap: 16px;
		}

		.fe-tier1-pasos__card {
			width: 100%;
		}

		.fe-tier1-pasos__number {
			margin-bottom: 20px;
		}

		.fe-tier1-pasos__card-text {
			font-size: 15px;
			line-height: 24px;
		}
	}

/* ─────────────────────────────────────────────────────────────────────────── */
/* Tier 1 - CTA Banner */
/* ─────────────────────────────────────────────────────────────────────────── */
.fe-tier1-section--cta-banner {
	padding-top: 0;
	padding-bottom: 72px;
	background: #ffffff;
}

.fe-tier1-cta-banner {
	position: relative;
	overflow: hidden;
	padding: 36px 48px;
	border-radius: 28px;
	background: #000d59;
	isolation: isolate;
}

.fe-tier1-cta-banner::before,
.fe-tier1-cta-banner::after {
	content: '';
	position: absolute;
	width: 132px;
	height: 132px;
	background-image: url('data:image/svg+xml;utf8,<svg width="264" height="264" viewBox="0 0 264 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.18"><path d="M238.008 78.3636V17.1599H147.638H86.4348V78.3636V122.944V184.299H147.638H238.008V122.944H147.638V78.3636H238.008Z" fill="%23FFFFFF"/><path d="M86.4348 184.303H25.0801V245.658H86.4348V184.303Z" fill="%23FFFFFF"/></g></svg>');
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: -1;
}

.fe-tier1-cta-banner::before {
	top: -22px;
	left: -18px;
}

.fe-tier1-cta-banner::after {
	right: -18px;
	bottom: -22px;
	transform: rotate(180deg);
}

.fe-tier1-cta-banner__content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	position: relative;
	z-index: 1;
}

.fe-tier1-cta-banner__title {
	margin: 0;
	color: #ffffff;
	font-family: Poppins, Arial, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
}

.fe-tier1-cta-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 12px;
	background: #3468f5;
	color: #ffffff;
	font-family: Poppins, Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 18px rgba(52, 104, 245, 0.24);
}

.fe-tier1-cta-banner__button:hover,
.fe-tier1-cta-banner__button:focus-visible {
	background: #4a7af8;
	box-shadow: 0 10px 24px rgba(52, 104, 245, 0.32);
	outline: none;
}

@media (max-width: 991px) {
	.fe-tier1-section--cta-banner {
		padding-bottom: 56px;
	}

	.fe-tier1-cta-banner {
		padding: 28px 32px;
	}

	.fe-tier1-cta-banner__title {
		font-size: 22px;
		line-height: 30px;
	}
}

@media (max-width: 768px) {
	.fe-tier1-section--cta-banner {
		padding-bottom: 40px;
	}

	.fe-tier1-cta-banner {
		padding: 24px 20px;
		border-radius: 22px;
	}

	.fe-tier1-cta-banner::before,
	.fe-tier1-cta-banner::after {
		width: 96px;
		height: 96px;
		opacity: 0.14;
	}

	.fe-tier1-cta-banner__content {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.fe-tier1-cta-banner__title {
		font-size: 20px;
		line-height: 28px;
	}

	.fe-tier1-cta-banner__button {
		width: 100%;
	}
	}

/* ─────────────────────────────────────────────────────────────────────────── */
/* Tier 1 - Tabla comparativa */
/* ─────────────────────────────────────────────────────────────────────────── */
.fe-tier1-section--tabla {
	background: #ffffff;
	padding-top: 0;
	padding-bottom: 72px;
}

.fe-tier1-tabla__wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 12px;
}

.fe-tier1-tabla {
	width: 100%;
	min-width: 860px;
	border-collapse: separate;
	border-spacing: 0;
	background: #ffffff;
}

.fe-tier1-tabla__head {
	padding: 18px 32px;
	font-family: Poppins, Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.fe-tier1-tabla__head--dark {
	background: #1f2a37;
	color: #ffffff;
}

.fe-tier1-tabla__head--fluyez {
	background: #265ff1;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

.fe-tier1-tabla thead th:first-child {
	border-top-left-radius: 12px;
}

.fe-tier1-tabla thead th:last-child {
	border-top-right-radius: 12px;
}

.fe-tier1-tabla__logo {
	display: inline-block;
	width: 100px;
	height: auto;
	vertical-align: middle;
}

.fe-tier1-tabla__cell {
	padding: 16px 32px;
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	color: #3d4c60;
	text-align: left;
	vertical-align: middle;
	background: #ffffff;
	border-bottom: 1px solid #edf2f7;
}

.fe-tier1-tabla__cell--dimension {
	font-family: Inter, Arial, sans-serif;
	font-weight: 400;
	color: #3d4c60;
	width: 24%;
}

.fe-tier1-tabla__cell--fluyez {
	font-weight: 600;
	color: #265ff1;
}

.fe-tier1-tabla tbody tr:nth-child(even) .fe-tier1-tabla__cell,
.fe-tier1-tabla tbody tr:nth-child(even) .fe-tier1-tabla__cell--dimension {
	background: #f4f7fb;
}

.fe-tier1-tabla tbody tr:last-child .fe-tier1-tabla__cell,
.fe-tier1-tabla tbody tr:last-child .fe-tier1-tabla__cell--dimension {
	border-bottom: none;
}

@media (max-width: 991px) {
	.fe-tier1-section--tabla {
		padding-bottom: 56px;
	}

	.fe-tier1-tabla {
		min-width: 760px;
	}

	.fe-tier1-tabla__head,
	.fe-tier1-tabla__cell {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 768px) {
	.fe-tier1-section--tabla {
		padding-bottom: 40px;
	}

	.fe-tier1-tabla {
		min-width: 680px;
	}

	.fe-tier1-tabla__head {
		padding: 16px;
		font-size: 15px;
		line-height: 22px;
	}

	.fe-tier1-tabla__cell {
		padding: 14px 16px;
		font-size: 15px;
		line-height: 22px;
	}

	.fe-tier1-tabla__logo {
		width: 84px;
	}
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* Tier 1 - Info cards estáticas */
/* ─────────────────────────────────────────────────────────────────────────── */
.fe-tier1-section--info-cards {
	padding-top: 0;
	padding-bottom: 88px;
	background: #ffffff;
}

.fe-tier1-info-cards__grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 24px;
}

.fe-tier1-info-card {
	width: calc((100% - 72px) / 4);
	min-height: 300px;
	padding: 28px 24px 24px;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(38, 126, 241, 0.14) 0%, rgba(0, 53, 89, 0.05) 20%, rgba(255, 255, 255, 0) 44%),
		linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	overflow: hidden;
	transition: box-shadow 0.25s ease;
	isolation: isolate;
}

.fe-tier1-info-card__media {
	height: 140px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	margin-bottom: 12px;
}

.fe-tier1-info-card__image {
	width: 150px;
	height: 150px;
	object-fit: contain;
	filter: drop-shadow(0 18px 30px rgba(38, 95, 241, 0.10));
	transform: translate(16px, -8px);
	transition: transform 0.25s ease;
	user-select: none;
	pointer-events: none;
}

.fe-tier1-info-card:hover .fe-tier1-info-card__image {
	transform: translate(16px, -8px) scale(1.04);
}

.fe-tier1-info-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 10px;
	min-width: 0;
}

.fe-tier1-info-card__title {
	margin: 0;
	color: #1f2a37;
	font-family: Poppins, Arial, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
}

.fe-tier1-info-card__text {
	margin: 0;
	color: #3d4c60;
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

@media (max-width: 1200px) {
	.fe-tier1-info-card {
		width: calc((100% - 24px) / 2);
	}
}

@media (max-width: 768px) {
	.fe-tier1-section--info-cards {
		padding-bottom: 40px;
	}

	.fe-tier1-info-cards__grid {
		gap: 16px;
	}

	.fe-tier1-info-card {
		width: 100%;
		min-height: 0;
		padding: 20px 18px 18px;
		border-radius: 20px;
	}

	.fe-tier1-info-card__media {
		height: 120px;
		margin-bottom: 8px;
	}

	.fe-tier1-info-card__image {
		width: 124px;
		height: 124px;
		transform: translate(8px, -6px);
	}

	.fe-tier1-info-card:hover .fe-tier1-info-card__image {
		transform: translate(8px, -6px) scale(1.03);
	}

	.fe-tier1-info-card__title {
		font-size: 20px;
		line-height: 28px;
	}

	.fe-tier1-info-card__text {
		font-size: 15px;
		line-height: 22px;
	}
}
/* Animación seamless: recorre exactamente 50% (hasta la mitad donde empieza el duplicado) */
@keyframes band-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ==========================================================================
   Sección Valor / Ahorro-Calc  (calculadora embedida o cards alternativas)
   ========================================================================== */

.fe-section--ahorro-calc {
	padding: 0 2rem 80px;
	background: #ffffff;
}

.fe-container--ahorro-calc {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.fe-ahorro-calc {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: space-around;
	gap: 40px;
	align-items: center;
	padding: 40px;
	border-radius: 40px;
	background: linear-gradient(251deg, #0a2ca6 0%, #265ff1 100%);
	box-shadow: 0 24px 48px rgba(10, 44, 166, 0.18);
	isolation: isolate;
}

.fe-ahorro-calc::before,
.fe-ahorro-calc::after {
	content: '';
	position: absolute;
	width: 276px;
	height: 296px;
	background-image: url('../images/logo-bg.svg');
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.5;
	pointer-events: none;
	z-index: -1;
}

.fe-ahorro-calc::before {
	top: -18px;
	left: 34%;
	transform: translateX(-50%);
}

.fe-ahorro-calc::after {
	left: -6px;
	bottom: -82px;
}

.fe-ahorro-calc__content {
	flex: 1 1 42%;
	min-width: 280px;
	padding: 8px 0 8px 4px;
	color: #ffffff;
	position: relative;
	z-index: 1;
}

.fe-ahorro-calc__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 20px;
	font-family: var(--fe-font-body);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.96);
}

.fe-ahorro-calc__eyebrow-logo {
	display: block;
	width: 72px;
	height: auto;
	flex: 0 0 auto;
}

.fe-ahorro-calc__title {
	margin: 0 0 16px;
	font-family: Poppins, sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
	color: #ffffff;
}

.fe-ahorro-calc__text {
	font-family: Poppins, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 36px;
	color: rgba(255, 255, 255, 0.92);
}

.fe-ahorro-calc__list {
	list-style: none;
	margin-top: 10px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fe-ahorro-calc__item {
	position: relative;
	padding-left: 42px;
	font-family: Poppins, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.fe-ahorro-calc__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.14) 100%),
		url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.1L5.4 9.5L11 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px 14px no-repeat;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.fe-ahorro-calc__calculator {
	flex: 1 1 50%;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.fe-ahorro-calc__calculator .fe-calc-pagos__inner {
	box-shadow: none;
}

/* CTA visible en la variante sin calculadora */
.fe-ahorro-calc__cta {
	display: inline-block;
	padding: 14px 32px;
	margin-top: 20px;
	border-radius: 8px;
	background: #000d59;
	color: #ffffff;
	font-family: var(--fe-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fe-ahorro-calc__cta:hover,
.fe-ahorro-calc__cta:focus-visible {
	background: #001480;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
	outline: none;
}

/* Columna derecha: cards numeradas (variante sin calculadora)
   ========================================================================== */

.fe-tier1-sv-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.fe-tier1-sv-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 28px 32px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.fe-tier1-sv-card__number {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--fe-font-display);
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}

.fe-tier1-sv-card__body {
	flex: 1 1 0;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
}

.fe-tier1-sv-card__title {
	margin: 0 0 8px;
	font-family: var(--fe-font-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: #ffffff;
}

.fe-tier1-sv-card__text {
	margin: 0;
	font-family: var(--fe-font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	overflow-wrap: break-word;
	word-break: break-word;
}

/* Overrides tipográficos para la variante sin calculadora
   ========================================================================== */

.fe-section--valor-alt .fe-ahorro-calc__title {
	font-family: Poppins, sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
	color: #ffffff;
}

.fe-section--valor-alt .fe-ahorro-calc__text {
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 165%;
	color: #ffffff;
}

/* Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
	.fe-section--ahorro-calc {
		padding: 0 1.5rem 64px;
	}

	.fe-ahorro-calc {
		flex-direction: column;
		gap: 28px;
		padding: 32px;
	}

	.fe-ahorro-calc::before {
		left: auto;
		right: -32px;
		transform: none;
	}

	.fe-ahorro-calc__content,
	.fe-ahorro-calc__calculator {
		flex: 1 1 100%;
		min-width: 0;
	}

	.fe-ahorro-calc__title {
		font-size: 40px;
	}

	.fe-ahorro-calc__text {
		font-size: 20px;
	}

	.fe-tier1-sv-cards {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.fe-tier1-sv-card {
		flex: 1 1 calc(50% - 10px);
	}
}

@media (max-width: 768px) {
	.fe-section--ahorro-calc {
		padding: 0 1rem 52px;
	}

	.fe-ahorro-calc {
		padding: 16px;
		border-radius: 20px;
		gap: 20px;
	}

	.fe-ahorro-calc::before,
	.fe-ahorro-calc::after {
		width: 180px;
		height: 194px;
	}

	.fe-ahorro-calc::before {
		top: -24px;
		right: -14px;
		left: auto;
		transform: none;
	}

	.fe-ahorro-calc::after {
		left: -32px;
		bottom: -90px;
	}

	.fe-ahorro-calc__title {
		font-size: 32px;
	}

	.fe-ahorro-calc__text {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.fe-ahorro-calc__item {
		font-size: 15px;
		padding-left: 38px;
	}

	.fe-tier1-sv-cards {
		flex-direction: column;
	}

	.fe-tier1-sv-card {
		flex: 1 1 auto;
		padding: 20px;
	}

	.fe-tier1-sv-card__number {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.fe-tier1-sv-card__title {
		font-size: 18px;
	}

	.fe-tier1-sv-card__text {
		font-size: 14px;
	}
}