/* =====================
   BASE
===================== */

body {
  margin: 0;
  background: #f8f8f8;
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: #4b566a;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

h1 {
  color: #828271;
  font-size: 2.2em;
  margin-top: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================
   NAVBAR (ANTIGA / CERTA)
===================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #5d5336;
  z-index: 1000;
}

.navbar-container {
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.navbar-menu a:hover {
  text-decoration: underline;
}


/* =====================
   HERO / CAPA (HOME)
===================== */

.hero {
  padding: 160px 0 80px;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
}

.hero-image img {
  width: 150%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 18px;
  color: #777;
  margin-bottom: 20px;
}

.hero-text p {
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #8a7f5a;
  color: #fff;
  border-radius: 6px;
}

.btn:hover {
  opacity: 0.9;
}

.bio {
  padding: 130px 0 80px;
  background: #fff;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch; /* 🔥 mesma altura */
}

/* container da imagem */
.bio-image {
  width: 100%;
}

/* imagem obedece o container */
.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 não distorce */
  border-radius: 12px;
}

/* texto */
.bio-text h1 {
  margin-top: 0;
}

.bio-text p {
  line-height: 1.7;
  margin-bottom: 16px;
}


/* =====================
   FOOTER
===================== */

.footer {
  padding: 20px 0;
  text-align: center;
  background: #f5f5f5;
}

/* =====================
   RESPONSIVO
===================== */

@media (max-width: 768px) {

  .hero-grid,
  .bio-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }
  .campaign-card {
    padding: 25px;
  }

  .bio-text h1 {
    font-size: 28px;
  }
}
.page {
  padding-top: 20px;   /* espaço por causa da navbar fixa */
  padding-bottom: 20px;
}

/* ===== CARD DE CAMPANHA ===== */

.campaign-card {
  background: #fff;
  padding: 40px;
  margin-bottom: 50px; /* 🔥 espaço entre uma e outra */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
}
