/* ==========================================================================
   Start — "¿Cómo deseas empezar?"
   Mobile-first
   ========================================================================== */

/* --- Section --- */
.start {
	position: relative;
	padding: 85px 0;
	overflow: hidden;
	background-color: #003EC3;
}

/* --- Background: imagen con opacidad --- */
.start__bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/bg empezar.png');
	background-size: cover;
	background-position: center;
	opacity: 0.05;
	z-index: 0;
}

.start > .container {
	position: relative;
	z-index: 1;
}

/* --- Title --- */
.start__title {
	font-family: var(--font-primary);
	font-size: 30px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0%;
	color: #FFFFFF;
	text-align: center;
	margin: 0 0 32px;
}

/* --- Grid --- */
.start__grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* --- Card --- */
.start__card {
	background: #FFFFFF;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* --- Card Image --- */
.start__card-image {
	width: 100%;
	aspect-ratio: 538 / 269;
	overflow: hidden;
}

.start__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- Card Body --- */
.start__card-body {
	padding: 16px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

/* --- Card Title --- */
.start__card-title {
	font-family: var(--font-primary);
	font-size: 24px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0%;
	color: #03336A;
	margin: 0;
}

/* --- Card Text --- */
.start__card-text {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 135%;
	letter-spacing: 0%;
	color: #444444;
	margin: 0;
}

/* --- Card Button --- */
.start__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	background: #0798F9;
	color: #FFFFFF;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	border-radius: 48px;
	text-decoration: none;
	align-self: stretch;
	transition: background 0.3s ease;
}

.start__card-btn:hover {
	background: #0680d4;
	color: #FFFFFF;
}

/* ==========================================================================
   Tablet — min-width: 768px
   ========================================================================== */

@media (min-width: 768px) {

	.start {
		padding: 56px 0;
	}

	.start__title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.start__grid {
		flex-direction: row;
		gap: 24px;
	}

	.start__card {
		flex: 1;
	}
}

/* ==========================================================================
   Desktop — min-width: 1024px
   ========================================================================== */

@media (min-width: 1024px) {

	.start {
		padding: 64px 0;
	}

	.start__title {
		font-size: 36px;
	}

	.start__card-body {
		align-items: flex-start;
		text-align: left;
	}

	.start__card-btn {
		align-self: flex-start;
	}

	.start__card-title {
		font-size: 22px;
	}

	.start__card-text {
		font-size: 15px;
	}
}
