/* --- CSS FORMATADO COM www.freeformatter.com --- */
:root {
	--bg-color: #FFFBF7;
	--bg-secondary-color: #FFFFFF;
	--text-color: #5c5c5c;
	--heading-color: #333333;
	--primary-color: #D4A3A0;
	--primary-hover-color: #C38E8A;
	--border-color: #f0e6e6;
	--card-bg: #FFFFFF;
	--shadow-light: rgba(0, 0, 0, 0.04);

	/* FONTES */
	--font-heading: 'Lora', serif;
	--font-body: 'Poppins', sans-serif;
}

[data-theme="dark"] {
	--bg-color: #1F1D2B;
	--bg-secondary-color: #252836;
	--text-color: #D1D1D1;
	--heading-color: #FFFFFF;
	--border-color: #3a3a4c;
	--card-bg: #252836;
	--shadow-light: rgba(0, 0, 0, 0.2);
}

/* --- RESET & BASE --- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background-color: var(--bg-color);
	color: var(--text-color);
	transition: background-color 0.4s, color 0.4s;
	line-height: 1.7;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 100px 0;
	text-align: center;
}

h1,
h2,
h3 {
	font-family: var(--font-heading);
	color: var(--heading-color);
}

h1 {
	font-size: 4rem;
	line-height: 1.2;
	font-style: italic;
}

h2 {
	font-size: 2.8rem;
	margin-bottom: 20px;
}

h3 {
	font-size: 1.6rem;
	margin-bottom: 15px;
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
}

.subtitle {
	font-size: 1.1rem;
	color: var(--text-color);
	opacity: 0.8;
	margin-top: -15px;
	margin-bottom: 50px;
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: #fff;
	padding: 15px 40px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 50px;
	transition: background-color 0.3s, transform 0.2s;
	margin-top: 20px;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: var(--primary-hover-color);
	transform: translateY(-3px);
}

/* --- HEADER --- */
header {
	position: fixed;
	width: 100%;
	z-index: 1000;
	background-color: var(--bg-color);
	box-shadow: 0 2px 15px var(--shadow-light);
	transition: background-color 0.4s, box-shadow 0.4s;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo {
	font-family: var(--font-heading);
	font-size: 2.2rem;
	color: var(--heading-color);
	font-weight: 600;
	font-style: italic;
}

.logo span {
	color: var(--primary-color);
}

nav ul {
	list-style: none;
	display: flex;
	gap: 35px;
}

nav a {
	color: var(--text-color);
	font-weight: 500;
	position: relative;
	padding-bottom: 5px;
	transition: color 0.3s;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease-out;
}

nav a:hover::after {
	width: 100%;
}

nav a:hover {
	color: var(--primary-color);
}

.theme-button {
	background: none;
	border: 1px solid var(--border-color);
	color: var(--text-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.theme-button:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/* --- HERO SECTION --- */
#inicio {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.pexels.com/photos/7664093/pexels-photo-7664093.jpeg');
	height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: #fff;
}

.hero-text {
	max-width: 650px;
	margin: 0 auto;
}

.hero-text h1 {
	color: #fff;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-text p {
	font-size: 1.2rem;
	margin: 25px 0 40px;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* --- ABOUT SECTION --- */
#sobre {
	background-color: var(--bg-secondary-color);
}

#sobre .container {
	display: flex;
	align-items: center;
	gap: 70px;
	text-align: left;
}

.about-image {
	flex: 1;
}

.about-image img {
	width: 100%;
	max-width: 400px;
	border-radius: 15px;
}

.about-text {
	flex: 1.5;
}

.about-text h2 {
	text-align: left;
	margin-bottom: 10px;
	font-style: italic;
}

.about-text h3 {
	font-family: var(--font-body);
	font-size: 1.4rem;
	color: var(--primary-color);
	text-transform: none;
	margin-bottom: 25px;
}

/* --- SERVICES SECTION --- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.service-card {
	background-color: var(--card-bg);
	padding: 40px 30px;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	box-shadow: 0 8px 25px var(--shadow-light);
	transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px var(--shadow-light);
}

.icon-wrapper {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background-color: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.service-card h3 {
	color: var(--primary-color);
}

.price {
	display: block;
	margin-top: 20px;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-color);
	opacity: 0.9;
}

/* --- GALLERY SECTION --- */
#galeria {
	background-color: var(--bg-secondary-color);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
	filter: brightness(1.1);
}

/* --- CONTACT SECTION --- */
.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 40px 0 50px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.1rem;
	color: var(--text-color);
}

.info-item i {
	font-size: 1.4rem;
	color: var(--primary-color);
	width: 25px;
	text-align: center;
}

.whatsapp-btn {
	background-color: #25D366;
	margin-top: 10px;
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.whatsapp-btn:hover {
	background-color: #1DA851;
}

/* --- FOOTER --- */
footer {
	background-color: var(--heading-color);
	color: #e0e0e0;
	padding: 50px 0;
	text-align: center;
}

.social-links a {
	color: #e0e0e0;
	font-size: 1.5rem;
	margin: 0 15px;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--primary-color);
}

footer p {
	margin-top: 25px;
	font-size: 0.9rem;
	opacity: 0.7;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	#sobre .container {
		flex-direction: column;
		gap: 40px;
	}

	.about-text {
		text-align: center;
	}

	.about-text h2 {
		text-align: center;
	}
}

@media (max-width: 768px) {
	header nav {
		display: none;
	}

	h1 {
		font-size: 2.5rem;
	}
}