/* ===================================================
   GranilPiso 2026 - Estilo Global
   ==================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', 'Open Sans', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	line-height: 1.7;
	color: #2c3e50;
	background: #fafbfc;
}

a {
	color: #005FA1;
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: #003d6b;
	text-decoration: underline;
}

/* ===================================================
   HEADER / NAVBAR
   ==================================================== */

.navbar {
	background: linear-gradient(135deg, #005FA1 0%, #0074C1 100%);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 4px 20px rgba(0, 95, 161, 0.15);
}

.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand {
	font-size: 24px;
	font-weight: 700;
	color: white;
	text-decoration: none;
}

.navbar-brand:hover {
	color: #fff;
	text-decoration: none;
}

.navbar-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.navbar-menu a {
	color: white;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s;
}

.navbar-menu a:hover {
	color: #fff;
	text-decoration: none;
	border-bottom: 2px solid #1aa94c;
}

.navbar-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

@media (max-width: 768px) {
	.navbar-toggle {
		display: block;
	}

	.navbar-menu {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: #003d6b;
		padding: 1rem;
		gap: 1rem;
	}

	.navbar-menu.active {
		display: flex;
	}
}

/* ===================================================
   HERO BANNER
   ==================================================== */

.hero {
	background-image: url('../images/patio-fulget.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 30, 60, 0.35);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 20px;
	animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	letter-spacing: -1px;
}

.hero p {
	font-size: 22px;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-weight: 500;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 16px 36px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
	background: linear-gradient(135deg, #1aa94c 0%, #158a3d 100%);
	color: white;
	border-color: transparent;
}

.btn-whatsapp:hover {
	background: linear-gradient(135deg, #158a3d 0%, #0f6a30 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(26, 169, 76, 0.3);
	transform: translateY(-2px);
}
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(26, 169, 76, 0.3);
}

.btn-primary {
	background: white;
	color: #005FA1;
	border-color: white;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
	font-weight: 800;
}

.btn-primary:hover {
	background: #f0f0f0;
	border-color: #f0f0f0;
	color: #005FA1;
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,95,161, 0.2);
}

.btn-lg {
	padding: 16px 48px;
	font-size: 18px;
	width: 100%;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===================================================
   CONTAINER & SECTIONS
   ==================================================== */

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 80px 20px;
}

.section-title {
	text-align: center;
	font-size: 42px;
	font-weight: 800;
	background: linear-gradient(135deg, #005FA1 0%, #0074C1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 3.5rem;
	position: relative;
	padding-bottom: 1.5rem;
	letter-spacing: -1px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: #1aa94c;
	border-radius: 2px;
}

/* ===================================================
   CARDS / PRODUTOS
   ==================================================== */

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgba(0, 95, 161, 0.05);
}

.card:hover {
	transform: translateY(-12px);
	box-shadow: 0 16px 40px rgba(0, 95, 161, 0.2);
}

.card-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	background: #e0e0e0;
	display: block;
}

.card-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-title {
	font-size: 24px;
	font-weight: 800;
	background: linear-gradient(135deg, #005FA1 0%, #0074C1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.card-text {
	color: #2c3e50;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 1rem;
	flex: 1;
}
}

.card-link {
	color: #1aa94c;
	font-weight: 700;
	transition: all 0.3s ease;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.card-link:hover {
	color: #158a3d;
	text-decoration: none;
	transform: translateX(4px);
}

/* ===================================================
   RESPONSIVIDADE - CARDS
   ==================================================== */

@media (max-width: 768px) {
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 480px) {
	.card-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ===================================================
   HERO SIMPLES (para páginas)
   ==================================================== */

.hero-simple {
	background: linear-gradient(135deg, #005FA1 0%, #0074C1 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 95, 161, 0.15);
}

.hero-simple h1 {
	font-size: 48px;
	margin-bottom: 1rem;
	font-weight: 800;
	letter-spacing: -1px;
}

.hero-simple p {
	font-size: 20px;
	margin-bottom: 2rem;
	font-weight: 500;
}

/* ===================================================
   FOOTER
   ==================================================== */

footer {
	background: #005FA1;
	color: rgba(255, 255, 255, 0.95);
	padding: 2.5rem 20px 1.5rem;
	margin-top: 80px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 1.5rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.footer-column {
	font-size: 14px;
	line-height: 1.8;
}

.footer-column h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 0.5rem;
	color: rgba(255, 255, 255, 1);
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	padding: 0.3rem 0;
	margin: 0;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.9);
	transition: color 0.3s ease;
	text-decoration: none;
}

.footer-column a:hover {
	color: #1aa94c;
	text-decoration: none;
}

.footer-contact {
	margin-bottom: 1rem;
}

.contact-item {
	padding: 0.3rem 0;
	margin: 0;
}

.contact-item a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #1aa94c;
}

.footer-social {
	display: flex;
	gap: 0.8rem;
	margin-top: 1rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	color: white;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
	background: #1aa94c;
	border-color: #1aa94c;
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.footer-bottom p {
	margin: 0;
}

/* Responsividade Footer */
@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	footer {
		padding: 2rem 15px 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 0.5rem;
}

.footer-column a {
	color: #fff;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-column a:hover {
	color: #1aa94c;
	text-decoration: none;
}

/* ===================================================
   UTILITIES
   ==================================================== */

.text-center {
	text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.text-muted {
	color: #999;
}

.cta-box {
	background: linear-gradient(135deg, rgba(26, 169, 76, 0.08) 0%, rgba(0, 116, 193, 0.08) 100%);
	padding: 2.5rem;
	border-radius: 12px;
	border-left: 5px solid #1aa94c;
	margin-top: 2rem;
	backdrop-filter: blur(10px);
}

.list-check li {
	padding: 10px 0;
	padding-left: 30px;
	position: relative;
}

.list-check li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #1aa94c;
	font-weight: bold;
}

/* ===================================================
   RESPONSIVO
   ==================================================== */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.contact-card {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #e0e0e0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 95, 161, 0.1);
}

.contact-card h3 {
	color: #005FA1;
	font-size: 18px;
	margin-bottom: 1rem;
}

.contact-card a {
	color: #005FA1;
	text-decoration: none;
	font-weight: bold;
}

.contact-card a:hover {
	text-decoration: underline;
}

.hero-contact {
	position: relative;
	height: 400px;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/ChatGPT Image 22 de jan. de 2026, 00_41_27.png') center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
}

.hero-contact h1 {
	font-size: 48px;
	margin-bottom: 0.5rem;
	animation: slideInDown 0.6s ease;
}

.hero-contact p {
	font-size: 20px;
	margin-bottom: 2rem;
	animation: slideInUp 0.6s ease;
}

@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hero-contact {
		height: 300px;
	}

	.hero-contact h1 {
		font-size: 32px;
	}

	.hero-contact p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.contact-grid {
		gap: 1rem;
	}

	.contact-card {
		padding: 1.5rem;
	}

	.hero-contact h1 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 32px;
	}

	.hero p {
		font-size: 16px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 0.5rem;
	}

	.btn {
		padding: 12px 24px;
		font-size: 14px;
	}

	.btn-lg {
		padding: 14px 32px;
		font-size: 16px;
	}

	.section-title {
		font-size: 28px;
	}

	.hero-simple h1 {
		font-size: 32px;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.navbar-menu a {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.navbar-container {
		padding: 0 10px;
	}

	.navbar-brand {
		font-size: 20px;
	}

	.hero h1 {
		font-size: 24px;
	}

	.hero p {
		font-size: 14px;
	}

	.section-title {
		font-size: 24px;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}
}

/* ===================================================
   GALERIA / LIGHTBOX (Fulget)
   ==================================================== */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.gallery-item {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
	background: #fff;
}

.gallery-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	cursor: zoom-in;
	transition: transform .35s ease;
}

.gallery-item img:hover {
	transform: scale(1.03);
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.85);
	z-index: 9999;
}

.lightbox.open {
	display: flex;
}

.lb-content {
	max-width: 90%;
	max-height: 90%;
}

.lb-content img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 6px;
	transition: transform .3s ease;
}

.lb-content img.zoomed {
	transform: scale(1.6);
	cursor: zoom-out;
}

.lb-close, .lb-prev, .lb-next, .lb-zoom {
	position: absolute;
	background: rgba(255,255,255,0.06);
	border: none;
	color: #fff;
	font-size: 28px;
	padding: 10px 14px;
	border-radius: 6px;
	cursor: pointer;
}

.lb-close { top: 20px; right: 20px; background: rgba(255,255,255,0.06); font-size: 32px; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-zoom { bottom: 20px; right: 20px; font-size: 20px; }

@media (max-width: 768px) {
	.gallery-item img { height: 140px; }
	.lb-content { max-width: 96%; max-height: 86%; }
}

@media (max-width: 480px) {
	.gallery-item img { height: 120px; }
}

