.services {
	padding: 20px;
	padding-top: 60px;
	background-color: #A0D6E2;
}
.services__content {
	max-width: 1120px;
	margin: auto;
}
.services__subtitle {
	color: #3388BF;
	font-size: 16px;
	margin-bottom: 10px;
	font-family: BanamexText-Bold;
}
.services__title {
	color: #601636;
	font-size: 30px;
	font-weight: normal;
	font-family: BanamexText-Regular;
	margin-bottom: 30px;
}
.services__title span {
	font-family: BanamexText-SemiBold;
}
.services__menu__content {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch; /* scroll suave en iOS */
  	scrollbar-width: none; /* oculta scrollbar en Firefox */
}
.services__menu {
	display: flex;
	margin-bottom: 20px;
  	width: 500px;
}

.services__menu::-webkit-scrollbar {
  display: none; /* oculta scrollbar en Chrome/Safari */
}

.services__menu__item {
	display: block;
	width: 120px;
	color: #fff;
	text-align: center;
	padding: 8px 0;
	margin: auto;
	border-radius: 20px;
	font-size: 16px;
	background-color: #FF1B44;
	opacity: 0.6;
	cursor: pointer;
}
.services__menu__item.selected {
	opacity: 1;
}

.services__list {
	display: none;
	flex-direction: column;
	grid-gap: 6px;
	margin-bottom: 30px;
}
.services__list.active {
	display: flex;
}
.services__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	border-radius: 10px;
	background-color: #fff;
}
.services__item__left {
	width: 60%;
	font-family: BanamexText-Bold;
}
.services__item__right {
	width: 40%;
	text-align: left;
	border-left: 1px dotted #000;
	padding-left: 10px;
}

.required {
	color: red;
}

@media screen and (min-width: 500px) {

	.services__title {
		width: 460px;
	}
	.services__item {
		padding: 10px 16px;
	}
	.beneficios__title {
		width: 460px;
	}

}

@media screen and (min-width: 600px) {
	
	.services__menu, 
	.services__list {
        width: 580px;
        margin: auto;
    }
    .services__menu {
    	margin-bottom: 20px;
    }

}

@media screen and (min-width: 768px) {

	.services__title {
		width: 500px;
	}
	.services__menu,
	.services__list {
		width: 600px;
		margin: auto;
	}
	.services__list {
		margin-bottom: 20px;
	}
	.services__menu {
		margin-bottom: 20px;
	}
	.services__item {
		padding: 16px 20px;
	}
	.services__item__left {
		width: 70%;
	}
	.services__item__right {
		width: 30%;
	}

}

@media screen and (min-width: 1000px) {

	.services {
		padding: 60px 20px;
	}
	.services__subtitle {
		font-size: 18px;
	}
	.services__title {
		font-size: 32px;
		margin-bottom: 60px;
	}
	.services__menu__item {
		width: 160px;
		font-size: 18px;
		padding: 12px 0;
		border-radius: 30px;
	}
	.services__menu, 
	.services__list {
		width: 740px;
	}
	.services__list {
		margin-bottom: 40px;
	}
	.services__item {
		font-size: 18px;
		padding: 16px 26px;
	}
	.services__btn {
		width: 280px;
		padding: 10px 0;
	}

}