* {
	box-sizing: border-box;
}
body {
	background-color: var(--bg-body);
	margin: 0;
	font-family: "Archivo", sans-serif;
	font-optical-sizing: auto;
	line-height: 1.5;
	color: var(--text-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--text-title);
	margin-top: 0;
	margin-bottom: var(--space-2xs);
}
p {
	margin-top: 0;
}
a {
	text-decoration: none;
}
/***HOME***/
header .logo span {
	font-size: 30px;
	font-weight: 600;
	color: var(--text-title);
}
header.light .logo span {
	color: var(--bg-body);
}
body.home .hero {
	background-image: url('../images/futbol-life-hero.webp');
	background-size: cover;
	min-height: 85vh;
	max-width: 100%;
	color: var(--bg-body);
}
body.home .hero .container {
	margin: 0;
}
body.home .hero h1 {
	color: var(--bg-body);
}
body.home .hero .camera {
	right: 50px;
	bottom: -50px;
}
.icon {
	background-color: var(--secondary);
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: var(--radius-full);
	color: var(--text-title);
	margin-bottom: var(--space-xs);
}
.feature,
.package {
	font-size: 18px;
	font-weight: 500;
}
.pricing {
	background-color: var(--tertiary-60);
}
.package .content {
	padding: var(--space-m);
}
.package.multi {
	background-color: var(--secondary-20);
}
.package.add-ons p {
	margin-bottom: 0;
}
.best-value {
	background: linear-gradient(135deg,rgba(219, 245, 71, 1) 0%, rgba(144, 238, 172, 1) 50%);
	display: flex;
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	padding: var(--space-2xs) 0;
	justify-content: center;
	font-size: 20px;
	font-weight: 600;
}
.price {
	font-size: var(--text-2xl);
	font-weight: 700;
	margin-bottom: var(--space-s);
	line-height: 1;
	color: var(--text-title);
}
.pricing .content ul {
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
}
.cta {
	background-color: var(--tertiary-60);
	font-size: 22px;
}
.cta h4 {
	font-size: var(--text-2xl);
}
.cta span {
	color: var(--tertiary-d-1);
	font-style: italic;
}
/***PAGES***/
body:not(.home) {
	background-color: var(--tertiary);
}
body:not(.home) h1 {
	font-size: var(--text-2xl);
}
body:not(.home) .hero {
	background: linear-gradient(135deg,rgba(219, 245, 71, 1) 0%, rgba(144, 238, 172, 1) 50%);
	min-height: 10px;
	color: var(--bg-body);
}
.form {
	margin: 0 auto;
}
.form .field-wrap {
	margin-bottom: var(--space-s);
}
/***VIDEOS***/
.video-info p,
.gallery-info p {
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}
.video-wrapper {
	padding-top:56.25%;
}
/***GALLERIES***/
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--space-xs);
	padding: 20px;
}
.gallery-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.gallery-item a {
	display: block;
}
.gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.download-btn {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border: none;
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(10px);
	z-index: 10;
}
.gallery-item:hover .download-btn {
	opacity: 1;
	transform: translateY(0);
}
.download-btn svg {
	width: 16px;
	height: 16px;
}
/***FOOTER***/
footer a {
	color: var(--primary-l-1);
	font-style: italic;
}
footer p {
	margin-bottom: 0;
}
/***HELPERS***/
.border-light {
	border-color: var(--border-primary);
}
/***MEDIA QUERIES***/
@media (max-width: 1024px) {
	.container {
		width: 93%;
	}
	body.home .hero {
		min-height: 52vh;
	}
	body.home .hero .camera {
		max-width: 10rem;
		right: 10px;
		bottom: -40px;
	}
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 10px;
		padding: 10px;
	}
	.gallery-item img {
		height: 150px;
	}
	.download-btn {
		opacity: 1;
		transform: translateY(0);
		font-size: 12px;
		padding: 6px 10px;
	}
	header {
		margin-left: 20px !important;
		margin-right: 20px !important;
	}
}
@media (max-width:767px) {
	.container {
		width: 88%;
	}
	body.home .hero {
		min-height: 75vh;
	}
	body.home .hero .camera {
		max-width: 8rem;
		right: 0;
		bottom: -30px;
	}
}

@media (max-width: 520px) {
	.feature {
		padding: 0 40px;
	}
	.cta {
		padding-left: 15px;
		padding-right: 15px;
	}
	.form {
		width: 75%;
	}
	header .logo span {
		font-size: 26px;
	}
}