/* ===========================
   RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #fefcf8;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   HEADER & NAV
=========================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #bfa15f; /* Dourado luxuoso */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  color: #bfa15f;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===========================
   BANNER
=========================== */
#banner {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/banner.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  color: #fff;
}

#banner .banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

#banner .banner-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-primary {
  background: #bfa15f;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #a7884f;
}

/* ===========================
   SECTIONS & CARDS
=========================== */
.wrapper {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 300px;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  display: block;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: #333;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.btn-card {
  font-weight: 600;
  color: #bfa15f;
  transition: color 0.3s;
}

.btn-card:hover {
  color: #a7884f;
}

/* ===========================
   PAGES INTERNA (IMAGEM + TEXTO)
=========================== */
.page-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: 0 auto;
}

.page-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-image {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.page-image.zoomed {
  transform: scale(1.8);
  z-index: 200;
}

.text-box {
  background: #fff8f0;
  border: 1px solid #bfa15f33; /* Dourado subtil */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: justify;
  color: #333;
}

.text-box p {
  margin-bottom: 12px;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 20px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col h3,
.footer-col h4 {
  color: #bfa15f;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col ul {
  color: #fff;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #bfa15f;
}

.footer-social a {
  display: inline-block;
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #bfa15f;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #999;
}

/* ===========================
   RESPONSIVO
=========================== */
@media screen and (max-width: 1024px) {
  .cards {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .page-content {
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}