html, body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', sans-serif;
}

body {
	background: #f5f5f5;
	overflow-x: hidden;
}

.nav_section{
	background: #ffffff;
	padding: .5rem 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav_section > a > img{
	width: 100px;
	height: auto;
}
.nav_section > a:nth-of-type(2){
	background: #16a34a;
	display: flex;
	gap: .5rem;
	align-items: center;
	padding: .8rem 2rem;
	border-radius: 2rem;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
}
.nav_section > a:nth-of-type(2) > img, .btn_whatsapp img{
	vertical-align: middle;
	width: 25px;
	height: auto;
}

/* HERO */
.hero {
	height: 60vh;
	background: url('/img/pork-sirloins.webp') center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
}

.hero_content {
	position: relative;
	max-width: 700px;
}

.hero_content h1 {
	font-size: 3rem;
	font-weight: 800;
}

.hero h1 span {
	color: #facc15;
}

.hero p {
	font-size: 1.2rem;
	max-width: 70%;
	margin: 0 auto;
	margin-top: 2rem;
	line-height: 2;
}

.btn_primary {
	display: inline-block;
	align-items: center;
	margin-top: 2rem;
	background: linear-gradient(180deg, #ff3b3b, #d90429);
	padding: 1rem 2rem;
	border-radius: 40px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
}
.btn_primary img{
	width: 20px;
	height: auto;
	vertical-align: middle;
	margin-left: .5rem;
}

/* TRUST */
.trust {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	gap: 2rem;
	font-size: 1.2rem;
}
.trust span{
	position: relative;
	display: inline-block;
	padding-left: 2rem;
}
.trust span:before{
	content: '';
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url('/img/check-mark.png');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}

/* PRODUCTS */
.products {
	padding: 60px 40px;
	text-align: center;
}

.products h2 {
	font-size: 36px;
	color: #166534;
}

.product_grid {
	margin: 0 10%;
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
}

.card {
	background: #fff;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card > img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.card_body {
	padding: 20px;
}
.card_body a{
	display: inline-block;
	padding: .8rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
}
.card_body a img{
	width: 20px;
	height: auto;
	vertical-align: middle;
	margin-left: .5rem;
}

.card h3 {
	margin-bottom: 10px;
}

.price {
	color: #d90429;
	font-size: 20px;
	font-weight: bold;
}

.btn-green {
	display: inline-block;
	margin: 1rem 0;
	background: #166534;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
}

/* HOW */
.how {
	padding: 60px;
	text-align: center;
}

.how h2 {
	color: #166534;
	font-size: 32px;
}

.steps {
	margin: 0 10%;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 4rem;
	position: relative;
}
.steps:after{
	content: '';
	display: block;
	width: 150%;
	height: 1px;
	border-top: 2px dashed #cdcdcd;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.step {
	background: #fff;
	padding: 3rem;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	z-index: 2;
}

.step p{
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 2rem;
}

.circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin: 0 auto 10px;
	font-weight: bold;
}

.red {
	background: #d90429;
}

.green {
	background: #16a34a;
}

/* CTA */
.cta {
	background: url('/img/pork-loin-chops.webp') center/cover no-repeat;
	padding: 6rem calc(10% + 60px);
	color: #fff;
}

.cta_content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	background: rgba(0,0,0,0.6);
	padding: 4rem 2rem;
	box-sizing: border-box;
	border-radius: 2rem;
}

.cta_content h2{
	font-size: 2.4rem;
	margin: 0;
}

.cta_content p{
	margin: 2rem 0;
	font-size: 1.1rem;
}

.cta_logo {
	width: 170px;
	height: auto;
}

.btn_whatsapp {
	display: inline-block;
	background: #16a34a;
	padding: 12px 25px;
	border-radius: 30px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
.testimonials{
	margin: 4rem 10%;
	padding: 60px;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(3, 1fr);
	position: relative;
}
.testimony{
	background: #fff;
	padding: 3rem;
	box-sizing: border-box;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	text-align: center;
}
.testimony > img{
	width: 60px;
	padding: 10px;
	height: auto;
	background: #ebebeb;
	border-radius: 50%;
}
.testimony p{
	font-size: 1.1rem;
	font-weight: 600;
	margin: 2rem 0;
}
.stars{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	margin-bottom: 2rem;
}
.stars img{
	width: 24px;
	height: auto;
}
footer{
	background: #1e6638;
	color: #ffffff;
	padding: 4rem calc(10% + 60px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer_logo{
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 2.2rem;
	font-weight: bold;
}
.footer_logo h3{
	margin: 0;
}
.footer_logo p{
	font-size: 1.1rem;
	font-weight: 500;
	margin-top: .5rem;
}

.footer_logo img{
	width: 100px;
	height: au;
}
.footer_links p{
	margin: 1rem 0;
}
.footer_links a{
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	color: #ffffff;
}
.socials{
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.socials a{
	text-decoration: none;
	display: inline-block;
}
.socials a img{
	width: 30px;
	height: auto;
}


.hero_small {
	height: 30vh;
	background: url('/img/pork-sirloins.webp') center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

.main_content{
	padding: 4rem calc(60px + 20%);
	line-height: 2;
}
.main_content:is(ol, ul){
	margin-left: 2rem;
	padding-left: 2rem;
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

	/* GLOBAL */
	body {
		font-size: 14px;
	}

	/* NAV */
	.nav_section {
		padding: 0.5rem 5%;
		flex-direction: row;
	}

	.nav_section > a > img {
		width: 80px;
	}

	.nav_section > a:nth-of-type(2) {
		padding: 0.5rem 1rem;
		font-size: 0.85rem;
		gap: 0.3rem;
	}

	.nav_section > a:nth-of-type(2) img {
		width: 18px;
	}

	/* HERO */
	.hero {
		height: auto;
		padding: 4rem 1.5rem;
	}

	.hero_content h1 {
		font-size: 2rem;
	}

	.hero p {
		max-width: 100%;
		font-size: 1rem;
		line-height: 1.6;
		margin-top: 1rem;
	}

	.btn_primary {
		padding: 0.8rem 1.5rem;
		font-size: 0.95rem;
	}

	/* TRUST */
	.trust {
		flex-direction: column;
		gap: 0.8rem;
		font-size: 0.9rem;
	}

	.trust span {
		padding-left: 5rem;
		text-align: left;
	}

	.trust span:before {
		width: 24px;
		height: 24px;
		left: 2rem;
	}

	/* PRODUCTS */
	.products {
		padding: 40px 20px;
	}

	.products h2 {
		font-size: 26px;
	}

	.product_grid {
		grid-template-columns: 1fr;
		margin: 2rem 0;
		gap: 2rem;
	}

	.card > img {
		height: 200px;
	}

	/* HOW */
	.how {
		padding: 40px 20px;
	}

	.steps {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin: 2rem 0;
	}

	.steps:after {
		display: none;
	}

	.step {
		padding: 2rem;
	}

	/* CTA */
	.cta {
		padding: 3rem 1.5rem;
	}

	.cta_content {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
		gap: 2rem;
	}

	.cta_logo {
		width: 120px;
	}

	.cta_content h2 {
		font-size: 1.6rem;
	}

	/* TESTIMONIALS */
	.testimonials {
		grid-template-columns: 1fr;
		margin: 2rem 5%;
		padding: 20px;
		gap: 2rem;
	}

	.testimony {
		padding: 2rem;
	}

	/* FOOTER */
	footer {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
		padding: 3rem 1.5rem;
	}

	.footer_logo {
		flex-direction: column;
		font-size: 1.5rem;
	}

	.footer_logo img {
		width: 70px;
	}

	.footer_links {
		text-align: center;
	}

	.socials {
		gap: 1.5rem;
	}

	/* MAIN CONTENT (POLICY PAGES) */
	.main_content {
		padding: 2rem 1.5rem;
	}

	.main_content h2 {
		font-size: 1.5rem;
	}

}