:root {
	--home-header-height: 680px;
}

#home-container {
	background-image: url("../images/fondo-header.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: var(--home-header-height);
	position: relative;
	padding: 40px 20px;
}

#home-container > div {
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
}

#main-image {
	max-width: 500px;
	width: 100%;
	height: auto;
}

#slogan {
	color: var(--color-text);
	font-size: 32px;
	line-height: 1.2;
	margin: 20px 0;
	font-weight: 700;
	text-align: center;
	text-transform: none;
}

#home-container .height-6 {
	max-width: 200px;
	width: 100%;
	height: auto;
}

@media all and (max-width: 1250px) {
	#home-container {
		height: 640px;
		padding: 35px 20px;
	}

	#main-image {
		max-width: 450px;
	}

	#slogan {
		font-size: 30px;
	}

	#home-container .height-6 {
		max-width: 180px;
	}
}

@media all and (max-width: 1050px) {
	#home-container {
		height: 600px;
		padding: 30px 20px;
	}

	#main-image {
		max-width: 400px;
	}

	#slogan {
		font-size: 28px;
	}

	#home-container .height-6 {
		max-width: 160px;
	}
}

@media all and (max-width: 850px) {
	#home-container {
		height: 600px;
		padding: 25px 15px;
	}

	#main-image {
		max-width: 350px;
	}

	#slogan {
		font-size: 26px;
	}

	#home-container .height-6 {
		max-width: 140px;
	}
}

@media all and (max-width: 710px) {
	#home-container {
		height: 550px;
		padding: 20px 15px;
	}

	#main-image {
		max-width: 300px;
	}

	#slogan {
		font-size: 28px;
	}

	#home-container .height-6 {
		max-width: 120px;
	}
}

@media all and (max-width: 550px) {
	#home-container {
		height: 500px;
		padding: 15px 10px;
	}

	#main-image {
		max-width: 250px;
	}

	#slogan {
		font-size: 24px;
		margin: 15px 0;
	}

	#home-container .height-6 {
		max-width: 100px;
	}
}

@media all and (max-width: 450px) {
	#home-container {
		height: 450px;
		padding: 10px;
	}

	#main-image {
		max-width: 220px;
	}

	#slogan {
		font-size: 18px;
		margin: 10px 0;
	}

	#home-container .height-6 {
		max-width: 90px;
	}
}

/* CTA Buttons Section */
.cta-buttons-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	max-width: 85%;
	width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

.cta-button-link {
	flex: 1;
	max-width: 400px;
	text-decoration: none;
}

.cta-button {
	width: auto;
	height: 124px;
}

.cta-buttons-container .cta-button {
	width: 100%;
}

.cta-button-primary {
	background-color: var(--color-primary);
	color: var(--color-button-text);
}

.cta-button-primary:hover:not(:disabled) {
	background-color: var(--color-primary-dark);
}

.cta-button-secondary {
	background-color: var(--color-primary);
	color: var(--color-button-text);
}

.cta-button-secondary:hover:not(:disabled) {
	background-color: var(--color-primary-dark);
}

/* Responsive styles for CTA buttons */
@media all and (max-width: 850px) {
	.cta-buttons-container {
		gap: 20px;
	}
}

@media all and (max-width: 710px) {
	.cta-buttons-container {
		flex-direction: column;
		gap: 20px;
		padding: 15px;
	}

	.cta-button-link {
		width: 100%;
		max-width: 100%;
	}
}