/* RESET */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body { height: 100%; }

body {
	background: #0b0b0b;
	color: #eee;
	font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
	line-height: 1.5;
}

.container {
	width: min(1100px, 92%);
	margin: auto;
}

/* HEADER FIXO COM LOGO GRANDE */
.site-header {
	height: 80px; /* altura fixa */
	padding: 0 20px; /* só padding horizontal */
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid rgba(255,255,255,0.03);
	background: #0b0b0b;
	transition: all 0.2s ease;
}

.site-header.scrolled {
	background: rgba(11,11,11,0.95);
	box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.header-inner {
	display: flex;
	align-items: center; /* centraliza verticalmente */
	justify-content: space-between;
	height: 100%; /* usa a altura fixa do header */
	padding: 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.brand img {
	max-height: 60px;
	width: auto;
	object-fit: contain;
}

.brand-text {
	color: #f5f5f5;
	font-weight: 700;
	letter-spacing: 0.6px;
}

.brand-text span {
	color: #d6a81a;
}

.main-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.main-nav a {
	color: #ddd;
	text-decoration: none;
	font-weight: 500;
}

.btn-whatsapp {
	background: #d6a81a;
	color: #0b0b0b;
	padding: 10px 16px;
	border-radius: 24px;
	text-decoration: none;
	font-weight: 700;
	white-space: nowrap;
}

/* HERO */
.hero {
	position: relative;
	min-height: 72vh;
	display: flex;
	align-items: center;
}

section {
	scroll-margin-top: 100px;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at right, rgba(214,168,26,0.06) 0%, rgba(0,0,0,0.7) 40%),
		linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.7));
	pointer-events: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.hero-copy .accent {
	color: #d6a81a;
}

.hero-copy .lead {
	color: #e6e6e6;
	opacity: 0.9;
	margin-bottom: 18px;
}

.btn {
	display: inline-block;
	text-decoration: none;
	padding: 12px 26px;
	border-radius: 32px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary {
	background: #d6a81a;
	color: #0b0b0b;
	border-radius: 24px;
	box-shadow: 0 14px 28px rgba(214, 168, 26, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
	transform: translateY(-1px);
	box-shadow: 0 18px 32px rgba(214, 168, 26, 0.34);
	filter: brightness(1.06);
}

.hero-image img {
	width: 100%;
	border-radius: 18px;
	display: block;
	box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.hero-copy {
	max-width: 680px;
}

.hero-copy h1 {
	font-size: clamp(2.4rem, 4vw, 4.8rem);
	line-height: 1.05;
}

.hero-content {
	display: grid;
	grid-template-columns: 1.1fr minmax(340px, 760px);
	gap: 36px;
	align-items: center;
	width: 100%;
}

.hero-image {
	display: grid;
	place-items: center;
}

/* CARDS */
.section {
	padding: 64px 0;
}

.cards-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.loading-placeholder {
	grid-column: 1 / -1;
	color: #ccc;
	text-align: center;
	padding: 40px 0;
	font-size: 18px;
}

.card {
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border: 1px solid rgba(214,168,26,0.06);
	padding: 18px;
	border-radius: 8px;
	box-shadow: 0 6px 30px rgba(0,0,0,0.6);
	display: flex;
	flex-direction: column;
}

.card-media img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 6px;
}

.card-body {
	padding: 14px 4px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.card-body h3 {
	color: #fff;
	font-size: 18px;
}

.price {
	color: #ddd;
	font-weight: 600;
}

.btn-secondary {
	background: linear-gradient(180deg, #f0c84a, #d6a81a);
	color: #0b0b0b;
	padding: 10px 18px;
	border-radius: 26px;
	text-align: center;
	width: fit-content;
	margin-top: 6px;
}

/* ABOUT */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 30px;
	align-items: center;
}

.about-text h2 {
	font-size: 26px;
	margin-bottom: 10px;
}

.about-media img {
	width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(214,168,26,0.06);
}

/* CONTACT */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 24px;
	align-items: start;
}

/* social links below contact info */
.social-links {
	margin-top: 8px;
}

.social-links a {
	color: #d6a81a;
	text-decoration: none;
	font-weight: 600;
	margin-right: 8px;
}

/* SERVICES */
.services-list {
	list-style: none;
	color: #ddd;
	margin-top: 16px;
}

.services-list li {
	margin-bottom: 10px;
	font-size: 18px;
}

.contact-list {
	list-style: none;
	color: #ddd;
}

.contact-list li {
	margin-bottom: 10px;
}

.contact-map img {
	width: 100%;
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,0.04);
}

/* FOOTER */
.site-footer {
	border-top: 1px solid rgba(255,255,255,0.03);
	padding: 20px 0;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	color: #bfbfbf;
	font-size: 14px;
}

.socials a {
	color: #bfbfbf;
	margin-left: 12px;
	text-decoration: none;
}

.hero {
	position: relative;
	min-height: 72vh;
	display: flex;
	align-items: center;
	padding: 40px 0;
}

.contact-map {
	min-height: 320px;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 320px;
}

@media (max-width: 1000px) {
	.container {
		width: min(1100px, 96%);
	}

	.header-inner {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 14px;
	}

	.hero-content {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		text-align: center;
		margin: 0 auto;
	}

	.hero-image {
		min-height: 320px;
	}

	.cards-row {
		grid-template-columns: repeat(2,1fr);
	}

	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.site-header {
		height: auto;
		padding: 16px 20px;
	}

	.header-inner {
		padding: 0;
	}

	.main-nav a {
		margin: 0;
		padding: 10px 8px;
	}

	.hero-copy h1 {
		font-size: 2.4rem;
	}

	.hero-image {
		min-height: 260px;
	}

	.cards-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.hero {
		min-height: auto;
		padding: 28px 0;
	}

	.hero-copy {
		text-align: center;
	}

	.hero-copy h1 {
		font-size: 2rem;
	}

	.btn,
	.btn-whatsapp {
		width: 100%;
	}

	.hero-copy,
	.hero-image {
		width: 100%;
	}

	.hero-image {
		min-height: 240px;
	}
}

@media (max-width: 800px) {
	.hero-copy h1 {
		font-size: 42px;
	}

	.hero-copy .lead {
		font-size: 17px;
	}

	.main-nav {
		justify-content: center;
		gap: 12px;
	}

	.btn-whatsapp {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 700px) {
	.site-header {
		height: auto;
		padding: 16px 20px;
	}

	.header-inner {
		padding: 0;
	}

	.main-nav a {
		margin: 0;
		padding: 10px 8px;
	}

	.hero-copy h1 {
		font-size: 34px;
	}

	.hero-image {
		min-height: 280px;
	}

	.cards-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.hero {
		min-height: auto;
		padding: 32px 0;
	}

	.hero-copy h1 {
		font-size: 30px;
	}

	.btn,
	.btn-whatsapp {
		width: 100%;
	}

	.hero-copy,
	.hero-image {
		width: 100%;
	}

	.hero-image {
		min-height: 240px;
	}
}
