/* piquenique.css */
:root {
  --color-dark: #3b2a05;
  --color-light: #ffd9a4;
  --color-white: #ffffff;
  --color-black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rancho', cursive;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  padding-top: 80px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: var(--color-light);
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Rancho', cursive;
  font-size: 2rem;
  color: var(--color-dark);
  text-decoration: none;
}

.menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.menu a:hover {
  color: var(--color-black);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu ul {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* SECTIONS */
section {
  padding: 1rem 0;
}

h2 {
  font-family: 'Vanilla Whale', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

/* GALERIA */
#galeria .fotos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

#galeria img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* CESTAS */
#cestas .lista-cestas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cesta {
  background: var(--color-light);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.cesta h3 {
  margin-bottom: 0.5rem;
}

.cesta p {
  font-family: 'Rancho', cursive;
  margin-bottom: 2px;
  text-align: center;
}

.cesta span {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.btn-montar {
  display: block;
  margin: 1rem auto 0;
}

/* COMO RESERVAR */
#reservar .reservar-text {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

#reservar .reservar-btn-wrap {
  text-align: center;
}

.btn-reservar-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
}

/* DIFERENCIAIS */
#diferenciais .diferenciais-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

#diferenciais .diff-item {
  background: var(--color-light);
  padding: 1rem;
  border-radius: 4px;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  #diferenciais .diferenciais-list {
    grid-template-columns: 1fr;
  }
}

/* CONTATO */
#contato .contato-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

#contato .contato-info p {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.btn-contato {
 display: block;             /* para usar margin auto */
  width: fit-content;         /* ocupa só o espaço do conteúdo */
  padding: 0.4rem 0.8rem;     /* ajuste de espaçamento interno */
  font-size: 1rem;            /* tamanho da fonte */
  text-align: center;         /* centraliza o texto dentro do botão */
  margin: 0.5rem auto 0;  
}

.map-embed iframe {
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 4px;
}

#contato .contato-info p {
  margin-bottom: 0.5rem;
  text-align: center;
}

.btn-contato {
  padding: 0.5rem 1rem;
  display: block;
  margin: 0 auto;
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 4px;
}

/* RODAPÉ */
footer {
  background: var(--color-light);
  text-align: center;
  padding: 2rem 0;
}

.social-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  list-style: none;
}

.social-list a {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.social-list a:hover {
  color: var(--color-black);
}

footer p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
