:root {
	--marrom: #3a2318;
	--ouro: #b8860b;
	--creme: #f5f0e8;
	--terracota: #8b4513;
	--bege: #e8dcc8;
	--azul-escuro: #1a2744;
	--texto: #2a1a0e;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: var(--creme);
	color: var(--texto);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	line-height: 1.8;
}

.topo {
	background: var(--marrom);
	padding: 1.2rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topo a {
	font-family: 'Cinzel', serif;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	color: var(--ouro);
	text-decoration: none;
	text-transform: uppercase;
}

.topo a:hover {
	color: #fff;
}

.hero-pacote {
	background: var(--azul-escuro);
	padding: 3rem 2rem;
	text-align: center;
}

.hero-pacote .badge {
	font-family: 'Cinzel', serif;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	color: var(--ouro);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.hero-pacote h1 {
	font-family: 'Cinzel', serif;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.hero-pacote .preco {
	font-size: 2.8rem;
	color: var(--ouro);
	font-weight: 300;
	margin: 1rem 0 0.3rem;
}

.hero-pacote .preco-obs {
	font-size: 0.9rem;
	color: #aaa;
	font-style: italic;
}

.conteudo {
	max-width: 820px;
	margin: 0 auto;
	padding: 4rem 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.pacote-img {
	width: 100%;
	display: block;
}

.desc p {
	margin-bottom: 1.2rem;
}

.desc-lista {
	list-style: none;
	margin: 1rem 0 1.5rem;
}

.desc-lista li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(58, 35, 24, 0.1);
}

.desc-lista li::before {
	content: "✓";
	color: var(--ouro);
	margin-right: 0.7rem;
}

.secao-titulo {
	font-family: 'Cinzel', serif;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ouro);
	margin-bottom: 1rem;
}

.cta {
	background: var(--marrom);
	padding: 3rem 2rem;
	text-align: center;
}

.cta p {
	color: var(--bege);
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.btn {
	display: inline-block;
	background: var(--ouro);
	color: #fff;
	font-family: 'Cinzel', serif;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 1rem 2.5rem;
	text-decoration: none;
	transition: background 0.3s;
}

.btn:hover {
	background: var(--terracota);
}

.btn-sec {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ccc;
	margin-left: 1rem;
}

.btn-sec:hover {
	border-color: var(--ouro);
	color: var(--ouro);
	background: transparent;
}

footer {
	text-align: center;
	padding: 2rem;
	background: var(--marrom);
	color: #666;
	font-size: 0.85rem;
	font-style: italic;
}

footer a {
	color: var(--ouro);
	text-decoration: none;
}

@media (max-width: 700px) {
	.conteudo {
		grid-template-columns: 1fr;
	}

	.btn-sec {
		margin-left: 0;
		margin-top: 1rem;
		display: block;
	}
}