
.menu-header {
  display: flex
;
    justify-content: space-between;
    align-items: center;
    background: #106b34;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.menu-header .logo {
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0; /* evita encolher */
}

/* REMOVE margin-left:auto do botão */
.menu-toggle {
  display: none; /* padrão: escondido no desktop */
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* mostrar só no mobile */
  }
}

.menu-nav {
  display: flex;
  gap: 15px;
  margin-left: 20px; /* espaço entre logo e nav */
  flex-wrap: wrap; /* evita overflow */
}

.menu-nav a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.menu-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* ativar botão no mobile */
  }

  .menu-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #222;
    padding: 10px 0;
    z-index: 999;
  }

  .menu-nav.show {
    display: flex;
  }

  .menu-nav a {
    padding: 12px 20px;
    font-size: 1rem;
  }
}
.menu-nav a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.logo-area img {
  height: 29px;
  width: auto;
  padding: 0px 4px;
}
.site-title {
  font-size: 2.0rem;
  font-weight: bold;
  color: white;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}

.fotos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 20px 0;
}

.fotos img {
  max-width: 90vw;
  height: auto;
  border-radius: 12px;
  
  
}

.fotos img:hover {
  transform: scale(1.03);
}
* {
  box-sizing: border-box;
  max-width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

.titulo-rifa {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  color: #333;
  margin: 20px auto;
  padding: 15px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  letter-spacing: 1px;
  max-width: 90%;
}
.menu-header .logo img {
  height: 40px; /* Ajuste o tamanho conforme necessário */
  width: auto;
}

.rifa-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.rifa-card:hover {
  transform: translateY(-6px);
}

.imagem-wrapper {
  position: relative;
}

.imagem-wrapper img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.btn-sobre-img {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e8b57;
  color: white;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-sobre-img:hover {
  background: #1f6b40;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ffe600;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 2;
}

.rifa-info {
  padding: 20px;
  text-align: center;
}

.rifa-info h2 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.rifa-info p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}
.rifa-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  height: 100%;
}

.rifa-info {
  text-align: center;
  padding: 16px;
  background-color: #f9f9f9;
}

.rifa-info h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.valor-cota {
  font-size: 16px;
  font-weight: 600;
  color: #2e8b57;
}

.btn-detalhes {
  display: block;
  width: 100%;
  background-color: #2e8b57;
  color: white;
  text-align: center;
  padding: 14px 0;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
  border-top: 1px solid #ccc;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.btn-detalhes:hover {
  background-color: #1f6b40;
}
