/* --- CSS FORMATADO COM www.freeformatter.com --- */
:root {
	/* TEMA CLARO (PADRÃO) */
	--bg-color: #ffffff;
	--bg-secondary-color: #fcfcfc;
	--text-color: #333333;
	--heading-color: #222222;
	--primary-color: #ff5722;
	--primary-hover-color: #e64a19;
	--border-color: #e0e0e0;
	--card-bg: #ffffff;
	--shadow-light: rgba(0, 0, 0, 0.05);

	/* FONTES */
	--font-heading: 'Montserrat', sans-serif;
	--font-body: 'Poppins', sans-serif;
}

[data-theme="dark"] {
	/* TEMA ESCURO */
	--bg-color: #1a1a1a;
	--bg-secondary-color: #2c2c2c;
	--text-color: #e0e0e0;
	--heading-color: #ffffff;
	--border-color: #444444;
	--card-bg: #333333;
	--shadow-light: rgba(0, 0, 0, 0.3);
}

/* --- 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.6;
}

.container {
	max-width: 1200px;
	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);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

h1 {
	font-size: 4.5rem;
	line-height: 1.1;
}

h2 {
	font-size: 3rem;
	margin-bottom: 20px;
}

h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.subtitle {
	font-size: 1.2rem;
	color: var(--text-color);
	opacity: 0.8;
	margin-top: -10px;
	margin-bottom: 50px;
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: #fff;
	padding: 15px 35px;
	font-weight: 600;
	text-transform: uppercase;
	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);
}

.secondary-btn {
	background-color: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.secondary-btn:hover {
	background-color: var(--primary-color);
	color: #fff;
}

/* --- HEADER --- */
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: var(--bg-color);
	box-shadow: 0 3px 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: 90px;
}

.logo {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	color: var(--heading-color);
	font-weight: 800;
}

.logo span {
	color: var(--primary-color);
}

nav ul {
	list-style: none;
	display: flex;
	gap: 35px;
}

nav a {
	color: var(--text-color);
	font-weight: 500;
	font-size: 1.1rem;
	position: relative;
	padding-bottom: 5px;
	transition: color 0.3s;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--primary-color);
	transition: width 0.3s ease-out;
}

nav a:hover::after,
nav a.active::after {
	width: 100%;
}

nav a:hover,
nav a.active {
	color: var(--primary-color);
}

.theme-button {
	background: none;
	border: 1px solid var(--border-color);
	color: var(--text-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.theme-button:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.menu-toggle-btn {
	display: none;
	background: none;
	border: none;
	color: var(--heading-color);
	font-size: 1.8rem;
	cursor: pointer;
	z-index: 1100;
}


/* --- HERO SECTION --- */
#inicio {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1556688/pexels-photo-1556688.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
	height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: #fff;
	padding-top: 90px;
}

.hero-text {
	max-width: 800px;
	margin: 0 auto;
}

.hero-text h1 {
	font-size: 5.5rem;
	color: #fff;
	margin-bottom: 25px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text p {
	font-size: 1.4rem;
	margin-bottom: 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: 500px;
	border-radius: 15px;
	box-shadow: 0 15px 40px var(--shadow-light);
}

.about-text {
	flex: 1.2;
}

.about-text h2 {
	text-align: left;
	margin-bottom: 10px;
}

.about-text h3 {
	font-family: var(--font-body);
	font-size: 1.6rem;
	color: var(--primary-color);
	text-transform: none;
	margin-bottom: 30px;
}

/* --- MENU SECTION --- */
#cardapio {
	background-color: var(--bg-color);
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.menu-item {
	background-color: var(--card-bg);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	box-shadow: 0 10px 30px var(--shadow-light);
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.menu-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px var(--shadow-light);
}

.menu-item img {
	width: 100%;
	max-height: 200px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 25px;
}

.menu-item h3 {
	font-size: 2rem;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.menu-item p {
	font-size: 1rem;
	color: var(--text-color);
	flex-grow: 1;
}

.menu-item .price {
	display: block;
	margin-top: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 25px;
}

.add-to-cart-btn {
	background-color: var(--primary-color);
	color: #fff;
	padding: 12px 25px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
	display: flex;
	align-items: center;
	gap: 10px;
}

.add-to-cart-btn i {
	font-size: 1.1rem;
}

.add-to-cart-btn:hover {
	background-color: var(--primary-hover-color);
	transform: translateY(-2px);
}

.full-menu-link {
	margin-top: 60px;
}

/* --- TESTIMONIALS SECTION --- */
#testemunhos {
	background-color: var(--bg-secondary-color);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.testimonial-card {
	background-color: var(--card-bg);
	padding: 40px;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	box-shadow: 0 8px 25px var(--shadow-light);
	text-align: left;
	position: relative;
}

.testimonial-card .quote-icon {
	font-size: 3rem;
	color: var(--primary-color);
	opacity: 0.1;
	position: absolute;
	top: 20px;
	left: 25px;
}

.testimonial-card p {
	font-style: italic;
	color: var(--text-color);
	margin-bottom: 30px;
	font-size: 1.05rem;
	position: relative;
	z-index: 1;
}

.client-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}

.client-info img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--primary-color);
}

.client-info span {
	font-weight: 600;
	color: var(--heading-color);
	font-size: 1.1rem;
}

/* --- CONTACT SECTION --- */
#contato {
	background-color: var(--bg-color);
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 40px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.2rem;
	color: var(--text-color);
}

.info-item i {
	font-size: 1.8rem;
	color: var(--primary-color);
}

.whatsapp-btn {
	background-color: #25D366;
	margin-top: 40px;
	padding: 15px 40px;
	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.8rem;
	margin: 0 18px;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--primary-color);
}

footer p {
	margin-top: 30px;
	font-size: 0.95rem;
	opacity: 0.8;
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
	h1 {
		font-size: 3.5rem;
	}

	h2 {
		font-size: 2.5rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	section {
		padding: 80px 0;
	}

	#sobre .container {
		flex-direction: column;
		gap: 40px;
	}

	.about-text {
		text-align: center;
	}

	.about-text h2,
	.about-text h3 {
		text-align: center;
	}
}

@media (max-width: 768px) {
	header .container {
		height: 80px;
	}

	.logo {
		font-size: 2rem;
	}

	/* Estilos do Menu Mobile */
	.menu-toggle-btn {
		display: block;
	}

	nav.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		/* Começa fora da tela */
		width: 70%;
		height: 100vh;
		background-color: var(--bg-secondary-color);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.4s ease-in-out;
		z-index: 1050;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	nav.main-nav.active {
		right: 0;
		/* Menu visível */
	}

	nav.main-nav ul {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	nav.main-nav a {
		font-size: 1.5rem;
	}

	h1,
	.hero-text h1 {
		font-size: 2.8rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	p,
	.subtitle {
		font-size: 1rem;
	}

	#inicio {
		padding-top: 80px;
	}

	.hero-text {
		padding: 0 10px;
	}

	.menu-grid {
		grid-template-columns: 1fr;
	}

	.contact-info {
		flex-direction: column;
		align-items: center;
		gap: 25px;
	}

	.info-item {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	section {
		padding: 60px 0;
	}

	h1,
	.hero-text h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero-text p {
		font-size: 1.1rem;
	}

	.btn {
		padding: 12px 28px;
		font-size: 0.9rem;
	}

	.menu-item {
		padding: 20px;
	}

	.testimonial-card {
		padding: 30px 25px;
	}
}