//* --- Fontes e cores base --- */
:root {
  --verde: #7b9b6e;
  --bege: #f4f1ec;
  --castanho: #4a3f35;
  --branco: #ffffff;
}

/* --- Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Corpo --- */
html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bege);
  color: var(--castanho);
  line-height: 1.6;
  overflow: hidden; /* impede scroll */
}

/* --- Hero section --- */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.content {
  position: relative;
  z-index: 2;
  color: var(--branco);
  padding: 0 1.5rem;
  max-width: 700px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: var(--verde);
  color: var(--branco);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #67865c;
}

/* --- Rodapé sobreposto --- */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background: rgba(123, 155, 110, 0.8); /* leve transparência verde */
  color: var(--branco);
  font-size: 0.9rem;
  z-index: 2;
}
