/* ===================================================
   GranilPiso 2026 - Estilo Global
   ==================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

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,
button {
	-webkit-tap-highlight-color: transparent;
}

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;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.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);
}

.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,
.btn-primary:focus,
.btn-primary:active {
	background: white;
	border-color: white;
	color: #005FA1;
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.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;
}

.services-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.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-clickable {
	cursor: pointer;
}

.card-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	object-position: center center;
	background: #e0e0e0;
	display: block;
}

.services-grid .card-image {
	height: 188px;
}

.granilite-card-image {
	object-position: center 24%;
	filter: contrast(1.02) saturate(1.03);
}

.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-title a {
	color: inherit;
	text-decoration: none;
}

.card-title a:hover {
	text-decoration: none;
}

.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;
	}

	.services-grid {
		max-width: 100%;
	}

	.services-grid .card-image {
		height: 176px;
	}
}

@media (max-width: 480px) {
	.card-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.services-grid .card-image {
		height: 182px;
	}
}

/* ===================================================
   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;
}

.footer-dev {
	margin-top: 0.5rem !important;
	opacity: 0.85;
}

.footer-dev a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	vertical-align: middle;
}

/* 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-intro {
	max-width: 720px;
	margin: -1rem auto 0;
	text-align: center;
	font-size: 17px;
	line-height: 1.8;
	color: #5f6f82;
}

.contact-card {
	background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
	padding: 2rem;
	border-radius: 22px;
	text-align: center;
	border: 1px solid rgba(0, 95, 161, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	box-shadow: 0 18px 40px rgba(7, 53, 95, 0.08);
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, #0074C1 0%, #1aa94c 100%);
	opacity: 0.95;
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 46px rgba(7, 53, 95, 0.14);
	border-color: rgba(0, 95, 161, 0.22);
}

.contact-card h3 {
	color: #005FA1;
	font-size: 22px;
	margin-bottom: 0.9rem;
}

.contact-card-badge {
	width: 58px;
	height: 58px;
	margin: 0 auto 1rem;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	background: linear-gradient(135deg, rgba(0, 116, 193, 0.12) 0%, rgba(26, 169, 76, 0.14) 100%);
	box-shadow: inset 0 0 0 1px rgba(0, 95, 161, 0.08);
}

.contact-card-badge-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.contact-card a {
	color: #005FA1;
	text-decoration: none;
	font-weight: bold;
}

.contact-card a:hover {
	text-decoration: underline;
}

.hero-whatsapp-btn {
	padding: 16px 28px;
	border-radius: 999px;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0.2px;
	box-shadow: 0 14px 30px rgba(26, 169, 76, 0.28);
	backdrop-filter: blur(4px);
}

.hero-whatsapp-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex-shrink: 0;
}

.contact-highlight {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.8;
	color: #005FA1;
	margin-bottom: 0.8rem;
}

.contact-highlight-whatsapp a {
	color: #149344;
}

.whatsapp-card {
	background: linear-gradient(180deg, #ffffff 0%, #f3fff7 100%);
	border-color: rgba(26, 169, 76, 0.22);
}

.location-card {
	background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
	border-color: rgba(0, 95, 161, 0.16);
}

.location-link {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1rem 1.1rem;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(0, 95, 161, 0.08) 0%, rgba(26, 169, 76, 0.08) 100%);
	border: 1px solid rgba(0, 95, 161, 0.14);
	text-decoration: none;
	margin-bottom: 0.9rem;
}

.location-link:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 95, 161, 0.12);
}

.location-address {
	display: block;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.5;
	color: #005FA1;
}

.location-helper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.4rem;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #1aa94c;
}

.contact-meta {
	font-size: 14px;
	line-height: 1.7;
	color: #5f6f82;
}

.contact-action-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.8rem;
	padding: 12px 20px;
	border-radius: 999px;
	background: rgba(26, 169, 76, 0.1);
	color: #149344;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.contact-action-link:hover {
	text-decoration: none;
	background: rgba(26, 169, 76, 0.16);
	color: #0f6a30;
}

.social-card {
	background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.social-row {
	display: flex;
	gap: 0.85rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.social-pill {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(0, 95, 161, 0.12);
	box-shadow: 0 12px 24px rgba(0, 95, 161, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-pill:hover {
	transform: translateY(-4px);
	text-decoration: none;
	box-shadow: 0 18px 28px rgba(0, 95, 161, 0.14);
	border-color: rgba(26, 169, 76, 0.28);
}

.social-pill img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.support-card {
	background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
}

.support-tags {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.support-tags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(0, 95, 161, 0.08);
	color: #005FA1;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.contato-cta {
	margin-top: 3rem;
	padding: 2.4rem;
	border-radius: 26px;
	text-align: center;
	background: linear-gradient(135deg, #f7fbff 0%, #eef8f2 100%);
	border: 1px solid rgba(0, 95, 161, 0.1);
	box-shadow: 0 18px 40px rgba(0, 95, 161, 0.08);
}

.contato-cta h3 {
	color: #005FA1;
	margin-top: 0;
	margin-bottom: 0.8rem;
	font-size: 34px;
	line-height: 1.2;
}

.contato-cta p {
	margin-bottom: 1.5rem;
	font-size: 17px;
	line-height: 1.8;
	color: #4f6072;
}

.contact-cta-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.contact-cta-whatsapp {
	min-width: 250px;
	padding: 16px 26px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 800;
}

.contact-cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: 16px 24px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(0, 95, 161, 0.18);
	box-shadow: 0 12px 24px rgba(0, 95, 161, 0.08);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.contact-cta-secondary:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 16px 28px rgba(0, 95, 161, 0.12);
}

.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;
	}

	.contact-intro {
		font-size: 16px;
		line-height: 1.7;
	}

	.contact-card {
		border-radius: 20px;
	}

	.hero-whatsapp-btn {
		width: min(100%, 320px);
		padding: 15px 22px;
		font-size: 16px;
	}

	.location-link {
		padding: 0.95rem;
	}

	.location-address {
		font-size: 16px;
	}

	.contato-cta {
		padding: 1.7rem;
		border-radius: 22px;
	}

	.contato-cta h3 {
		font-size: 28px;
	}

	.contato-cta p {
		font-size: 15px;
	}

	.contact-cta-actions {
		flex-direction: column;
		align-items: center;
	}

	.contact-cta-whatsapp,
	.contact-cta-secondary {
		width: 100%;
		max-width: 340px;
	}

	.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;
	}

	.contact-card h3 {
		font-size: 20px;
	}

	.contact-card-badge {
		width: 52px;
		height: 52px;
		font-size: 24px;
	}

	.contact-card-badge-icon {
		width: 26px;
		height: 26px;
	}

	.hero-whatsapp-btn {
		width: 100%;
		max-width: 290px;
		font-size: 15px;
		padding: 14px 18px;
	}

	.hero-whatsapp-icon {
		width: 22px;
		height: 22px;
	}

	.location-address {
		font-size: 15px;
	}

	.location-helper {
		font-size: 12px;
	}

	.social-pill {
		width: 50px;
		height: 50px;
		border-radius: 16px;
	}

	.social-pill img {
		width: 26px;
		height: 26px;
	}

	.support-tags span {
		font-size: 11px;
	}

	.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%;
	text-align: center;
}

.lb-content img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 6px;
	transition: transform .3s ease;
	cursor: zoom-in;
}

.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,
.lb-next {
	top: 50%;
	transform: translateY(-50%);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-zoom { bottom: 20px; right: 20px; font-size: 20px; }

#lbCounter {
	display: inline-block;
	margin-top: 12px !important;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45);
	font-size: 13px;
	letter-spacing: 0.2px;
}

@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; }
}

/* ===================================================
   REFINOS GERAIS MOBILE
   ==================================================== */

@media (max-width: 768px) {
	html,
	body {
		overflow-x: hidden;
	}

	.container {
		padding: 0 16px;
	}

	.section {
		padding: 56px 16px;
	}

	.hero {
		min-height: 420px;
	}

	.hero-content {
		padding: 12px;
	}

	.hero h1 {
		font-size: clamp(28px, 7.2vw, 38px);
		line-height: 1.25;
	}

	.hero p {
		font-size: 16px;
		line-height: 1.6;
	}

	.hero-simple {
		padding: 64px 16px;
	}

	.hero-simple h1 {
		font-size: clamp(30px, 8vw, 40px);
	}

	.hero-simple p {
		font-size: 17px;
		margin-bottom: 1.4rem;
	}

	.section-title {
		font-size: clamp(28px, 7vw, 34px);
		margin-bottom: 2.2rem;
		padding-bottom: 1rem;
	}

	.card-grid {
		gap: 1rem;
	}

	.card-body {
		padding: 1.1rem;
	}

	.card-title {
		font-size: 22px;
	}

	.card-text {
		font-size: 15px;
		line-height: 1.6;
	}

	.cta-box {
		padding: 1.4rem;
	}

	.contact-grid {
		gap: 1rem;
	}

	.contact-card {
		padding: 1.2rem;
	}

	.footer-content {
		gap: 1.2rem;
	}

	.footer-social {
		flex-wrap: wrap;
	}

	.footer-social a {
		width: 34px;
		height: 34px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.8rem;
	}

	.gallery-item img {
		height: 130px;
	}

	.lb-close,
	.lb-prev,
	.lb-next,
	.lb-zoom {
		padding: 8px 10px;
	}

	.lb-close {
		top: 12px;
		right: 12px;
		font-size: 28px;
	}

	.lb-prev {
		left: 8px;
		font-size: 22px;
		top: 50%;
	}

	.lb-next {
		right: 8px;
		font-size: 22px;
		top: 50%;
	}

	.lb-zoom {
		bottom: 12px;
		right: 12px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}

	.section {
		padding: 48px 12px;
	}

	.navbar {
		padding: 0.75rem 0;
	}

	.navbar-container {
		padding: 0 12px;
	}

	.navbar-menu {
		top: 56px;
		padding: 0.8rem;
	}

	.navbar-menu a {
		font-size: 13px;
		line-height: 1.4;
		padding: 6px 0;
	}

	.hero {
		min-height: 380px;
	}

	.hero-buttons,
	.hero-actions {
		width: 100%;
	}

	.hero-buttons .btn,
	.hero-actions .btn,
	.hero-actions .btn-outline-light {
		width: 100%;
		max-width: 360px;
	}

	.btn {
		padding: 12px 18px;
		font-size: 13px;
		letter-spacing: 0.2px;
	}

	.btn-lg {
		padding: 12px 18px;
		font-size: 14px;
	}

	.section-title {
		font-size: 26px;
	}

	.card-title {
		font-size: 20px;
	}

	.card-text {
		font-size: 14px;
	}

	.list-check li {
		padding-left: 24px;
	}

	.footer-column {
		font-size: 13px;
	}

	.footer-contact a {
		font-size: 13px;
		line-height: 1.5;
	}

	.gallery-item img {
		height: 115px;
	}

	.lb-content {
		max-width: 94%;
		max-height: 78%;
	}

	.lb-content img.zoomed {
		transform: scale(1.35);
	}

	.lb-close,
	.lb-prev,
	.lb-next,
	.lb-zoom {
		min-width: 44px;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.lb-close {
		top: 10px;
		right: 10px;
	}

	.lb-zoom {
		bottom: 10px;
		right: 10px;
	}

	#lbCounter {
		font-size: 12px;
		padding: 3px 9px;
	}

	.section-diferenciais .card > div {
		padding: 1.2rem !important;
	}

	.section-diferenciais .card > div > div {
		font-size: 38px !important;
		margin-bottom: 0.6rem !important;
	}

	.section-cta-home {
		padding: 44px 12px !important;
	}

	.section-cta-home h2 {
		font-size: 26px !important;
		line-height: 1.25;
	}

	.section-cta-home p {
		font-size: 15px !important;
		line-height: 1.6;
	}

	.section-cta-home .btn {
		width: 100%;
		max-width: 340px;
	}

	.contato-cta {
		padding: 1.2rem !important;
		margin-top: 2rem !important;
	}

	.contato-cta h3 {
		font-size: 23px;
	}

	.contato-cta p {
		font-size: 15px;
		line-height: 1.6;
	}

	.phone-list a {
		display: inline-block;
		line-height: 1.75;
	}

	.contato-cta .btn-primary {
		display: block !important;
		width: 100%;
		max-width: 340px;
		margin: 0 auto;
	}

	.social-row {
		flex-wrap: wrap;
		gap: 0.6rem !important;
	}

	.social-row a img {
		width: 36px !important;
		height: 36px !important;
	}
}

/* ===================================================
   TIPOGRAFIA FINA MOBILE
   ==================================================== */

@media (max-width: 768px) {
	.section p {
		line-height: 1.65;
	}

	.section .list-check li {
		font-size: 15px;
		line-height: 1.6;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.section h3 {
		line-height: 1.35;
	}

	.vendas-intro,
	.vendas-cta p,
	.vendas-card p {
		line-height: 1.7;
	}

	.vendas-card h4 {
		font-size: 17px;
		line-height: 1.35;
	}

	.contact-card p {
		line-height: 1.65;
	}

	.contact-card h3 {
		font-size: 17px;
		line-height: 1.35;
	}

	.hero-contact p,
	.hero-simple p,
	.hero p {
		line-height: 1.55;
	}

	.footer-column p,
	.footer-contact a,
	.footer-column li a {
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.section p {
		font-size: 14px;
		line-height: 1.65;
	}

	.section .list-check li {
		font-size: 14px;
		line-height: 1.58;
	}

	.vendas-intro {
		font-size: 15px;
		line-height: 1.7;
	}

	.vendas-card p {
		font-size: 13.5px;
		line-height: 1.6;
	}

	.vendas-card h4 {
		font-size: 16px;
	}

	.contact-card h3 {
		font-size: 16px;
	}

	.contact-card p,
	.phone-list a {
		font-size: 14px;
	}

	.hero-simple p,
	.hero-contact p,
	.hero p {
		font-size: 15px;
	}

	.footer-column h4 {
		font-size: 13px;
	}

	.footer-column p,
	.footer-contact a,
	.footer-column li a {
		font-size: 13px;
		line-height: 1.58;
	}
}

/* ===================================================
   CONTRASTE HERO MOBILE
   ==================================================== */

@media (max-width: 768px) {
	.hero::before {
		background: rgba(0, 30, 60, 0.48);
	}

	.hero h1,
	.hero p {
		text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
	}

	.hero-simple {
		position: relative;
		overflow: hidden;
	}

	.hero-simple::before {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(0, 42, 79, 0.2);
		z-index: 0;
	}

	.hero-simple > .container {
		position: relative;
		z-index: 1;
	}

	.hero-simple h1,
	.hero-simple p {
		text-shadow: 0 3px 10px rgba(0, 0, 0, 0.32);
	}

	.hero-contact {
		background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/ChatGPT Image 22 de jan. de 2026, 00_41_27.png') center/cover;
	}

	.hero-contact h1,
	.hero-contact p {
		text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
	}
}

@media (max-width: 480px) {
	.hero::before {
		background: rgba(0, 30, 60, 0.56);
	}

	.hero-simple::before {
		background: rgba(0, 42, 79, 0.28);
	}

	.hero-contact {
		background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url('../images/ChatGPT Image 22 de jan. de 2026, 00_41_27.png') center/cover;
	}
}

