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

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fafafa;
}
a {
  text-decoration: none; /* tira sublinhado */
  color: inherit;        /* herda a cor do texto */
}
.site-footer {
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 16px 20px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}
ul{
    padding-left: 30px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  

  
}

.logo img{
    width: 200px;
    height: auto;
    display: block;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  letter-spacing: 2px;
}

/* HERO */
.hero {
  margin-top: 120px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  background: #f5f5f3;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.hero-image {
  display: flex;
  justify-content: flex-end; /* empurra pra direita */
  align-items: center;
}

.hero-image img {
  width: 360px;      /* tamanho elegante */
  max-width: 100%;   /* não estoura */
  height: auto;      /* mantém proporção */
  object-fit: cover; /* garante encaixe */
}


.newsletter input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}

.newsletter button {
  background: #c99a5c;
  color: white;
  border: none;
  padding: 14px 20px;
  letter-spacing: 2px;
  cursor: pointer;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 120px 20px 60px;
}

.intro span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-top: 10px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 80px;
}

.card {
  position: relative;
  
}

.card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay-content {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 20px;
  text-align: center;
  max-width: 80%;
 


  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}




.overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.overlay p {
  margin-bottom: 15px;
}

.overlay button {
  background: #c99a5c;
  border: none;
  color: white;
  padding: 10px 18px;
  letter-spacing: 2px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 120px 20px;
}

.footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}
/* ===== MENU HAMBURGUER ===== */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

  /* HEADER */
  .header {
    padding: 20px 25px;
  }

  .logo img {
    width: 150px;
  }

  /* NAV MOBILE */
    nav {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;

    display: flex;              /* IMPORTANTE */
    flex-direction: column;     /* um embaixo do outro */
    align-items: flex-start;    /* alinhado à esquerda */
    padding: 40px 30px;
    gap: 25px;

    transition: 0.4s;
  }

  nav a {
    margin: 0;
    font-size: 14px;
  }

  nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    gap: 40px;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    width: 280px;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

  /* GALLERY */
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 300px;
  }

}
