.fishing {
	background: black;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding-top: 7rem;
	padding-bottom: 2rem;
}

.title {
	color: white;
	font-family: "DM Serif Display", serif;
	font-weight: 700;
	font-size: 7rem;
	margin-bottom: 0.5rem;
	letter-spacing: 0.1em;
	text-shadow: 0 4px 24px #0008;
}

.subtitle {
	color: #FFF;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 2rem;
	margin-bottom: 2rem;
	text-shadow: 0 2px 8px #0006;
}

.projetos-recomendados {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2.5rem;
	justify-content: center;
	align-items: stretch;
	margin: 3rem auto 2rem auto;
	width: 90%;
	max-width: 900px;
}

.gallery {
	background: #111;
	border-radius: 1.2rem;
	box-shadow: 0 2px 16px #0004;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gallery:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 8px 32px #0007;
}

.gallery img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	background: #222;
}

.desc {
	padding: 1rem;
	text-align: center;
	font-family: "Poppins", sans-serif;
	color: #4FD1C5;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

.projetos {
	display: inline-block;
	position: relative;
	color: white;
	font-size: 1.5rem;
	margin-left: 70px;
	margin-top: 70px;
	z-index: 1;
	font-family: "Poppins", sans-serif;
}

.projetos::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: black;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.projetos:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.recomendacoes {
	color: #FFF;
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 2rem;
	margin: 3rem auto 1rem auto;
	text-align: center;
	letter-spacing: 0.08em;
	text-shadow: 0 2px 8px #0006;
}

.zika {
	color: #FFF;
	text-align: right;
	position: relative;
	background: linear-gradient(120deg, #0F6292 0%, #000 100%);
	border-radius: 2rem;
	margin: 3rem auto 2rem auto;
	padding: 3rem 2rem 3rem 4rem;
	max-width: 900px;
	box-shadow: 0 2px 24px #0003;
	overflow: hidden;
}

.zika:before {
	content: '';
	background: #4FD1C5;
	opacity: 0.08;
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: 2rem;
}

.title2 {
	font-size: 2.8rem;
	font-family: "DM Serif Display", serif;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.paragraph {
	font-family: "Poppins", sans-serif;
	font-size: 1.1rem;
	padding-top: 0.5rem;
	padding-right: 0;
	position: relative;
	z-index: 1;
	color: #e0e0e0;
}

@media (max-width: 900px) {
	.title {
		font-size: 4rem;
	}

	.zika {
		padding: 2rem 1rem 2rem 1rem;
	}
}

@media (max-width: 600px) {
	.title {
		font-size: 2.2rem;
	}

	.subtitle {
		font-size: 1.1rem;
	}

	.projetos-recomendados {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.zika {
		padding: 1rem 0.5rem;
		font-size: 1rem;
	}

	.title2 {
		font-size: 1.5rem;
	}
}