:root {
  --terracota: #a25c42;
  --cinza: #f7f7f7;
  --dourado: #bca065;
  --font-principal: 'Playfair Display', serif;
  --font-secundaria: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--cinza);
  color: #222;
  font-family: var(--font-secundaria);
  line-height: 1.6;
}

header {
  background: white;
  border-bottom: 1px solid #eaeaea;
  padding: 16px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 60px;
}

.container {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 64px 0 32px 0;
  background: var(--cinza);
}

.hero-logo {
  height: 120px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-principal);
  font-size: 2.4rem;
  color: var(--terracota);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta {
  background: var(--terracota);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 32px;
  transition: background 0.3s;
}
.cta:hover {
  background: var(--dourado);
  color: #222;
}

.about {
  padding: 48px 0 32px 0;
  text-align: center;
}

.about h2 {
  font-family: var(--font-principal);
  color: var(--terracota);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.gallery {
  padding: 32px 0;
}

.gallery h2 {
  text-align: center;
  font-family: var(--font-principal);
  color: var(--terracota);
  margin-bottom: 24px;
}
.gallery-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-grid img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

footer {
  background: #fff;
  border-top: 1px solid #eaeaea;
  text-align: center;
  padding: 24px 0 12px 0;
  font-size: 0.95rem;
}

footer a {
  color: var(--terracota);
  text-decoration: none;
}
