/* GUIDE TO REGISTER CLUB CONMIGO / GUIDE TO PLAY PUNTO AMIGO */
.guide-section {
	padding: 60px 0;
}

.guide-section.alternate {
	background-color: var(--white);
	border-radius: var(--border-radius);
	padding: 60px 40px;
	box-shadow: var(--shadow);
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.flex-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flex-steps .step-card {
	flex: 1 1 300px;
	max-width: 400px;
}

.step-card {
	background: var(--white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	position: relative;
	padding-top: 50px;
	transition: var(--transition);
	border-top: 4px solid transparent;
}

.step-card:hover {
	transform: translateY(-5px);
}

.highlight-step {
	border-top-color: #001367;
	background: linear-gradient(to bottom, rgba(0, 19, 103, 0.02), #ffffff);
}

.step-image {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
	position: absolute;
	top: -20px;
	left: 30px;
	width: 50px;
	height: 50px;
	background: #001367;
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	box-shadow: 0 4px 10px rgba(0, 19, 103, 0.3);
}

.highlight-step .step-number {
	transform: scale(1.1);
}

.step-content h4 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: var(--text-color);
}

.step-content p {
	color: #666;
	line-height: 1.6;
}
