:root {
  --areia: #faf7f4;
  --areia-2: #f2ece6;
  --texto: #2e2a27;
  --suave: #6b625b;
  --acento: #b08968;
  --acento-escuro: #8c6b4f;
  --borda: #e6ded6;
  --raio: 14px;
  --max: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--texto);
  background: var(--areia);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Topo ---------- */
.topo {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 244, .85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--borda);
}

.topo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: .5px;
  color: var(--texto);
  text-decoration: none;
}
.logo span { color: var(--acento); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 80% -10%, #fff 0%, transparent 60%),
    linear-gradient(180deg, var(--areia-2), var(--areia));
  border-bottom: 1px solid var(--borda);
}

.hero-inner {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--acento-escuro);
  margin: 0 0 16px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--suave);
  margin: 0 auto 32px;
  max-width: 52ch;
}

.hero-acoes {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-nota {
  margin: 32px 0 0;
  font-size: .85rem;
  color: var(--suave);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--raio);
  background: var(--acento);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--acento);
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--acento-escuro); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--acento-escuro);
  border-color: var(--borda);
}
.btn-ghost:hover { background: #fff; }

.btn-sm { padding: 9px 18px; font-size: .9rem; }

@media (max-width: 600px) {
  .hero-acoes .btn { width: 100%; }
}

/* ---------- Instagram ---------- */
.insta {
  background: var(--areia);
  padding: 88px 0;
}

.insta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.insta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 16px;
}

.insta h2 a {
  color: var(--texto);
  text-decoration: none;
  border-bottom: 1px solid var(--acento);
  padding-bottom: 2px;
  transition: color .2s ease;
}
.insta h2 a:hover { color: var(--acento-escuro); }



/* ---------- Rodapé ---------- */
.rodape {
  border-top: 1px solid var(--borda);
  background: var(--areia-2);
  padding: 28px 0;
  text-align: center;
  font-size: .88rem;
  color: var(--suave);
}
.rodape p { margin: 0; }
.rodape a { color: var(--acento-escuro); text-decoration: none; }
.rodape a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .insta { padding: 64px 0; }
}
