/* =========================
   HERO
========================= */
.viver-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.viver-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.viver-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* =========================
   INTRO
========================= */
.viver-intro {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
}

/* =========================
   EXPERIÊNCIAS
========================= */
.viver-experiencias {
  margin-bottom: 70px;
}

.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.experiencia {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.experiencia h3 {
  margin-bottom: 8px;
}

/* =========================
   GALERIA
========================= */
.viver-galeria {
  margin-bottom: 80px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.galeria-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

/* =========================
   CONVITE
========================= */
.viver-convite {
  background: #fff7ed;
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 60px;
}

.viver-convite h2 {
  margin-bottom: 10px;
}

.viver-convite p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.btn-viver {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background: #fb923c;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-viver:hover {
  background: #f97316;
  transform: translateY(-2px);
}
/* =========================
   MAPA CONTEMPLATIVO
========================= */
.viver-mapa {
  margin-bottom: 80px;
  text-align: center;
}

.viver-mapa p {
  margin-bottom: 25px;
  color: #555;
}

.mapa-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.mapa-container iframe {
  width: 100%;
  height: 360px;
  border: none;
}
/* =========================
   ORGULHO INTEGRADO
========================= */
.viver-orgulho {
  margin-bottom: 80px;
}

.viver-orgulho > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.orgulho-mini {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.1);
}

.orgulho-mini img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}
.mapa-texto {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}
.mapa-pontos {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #444;
}
/* =========================
   MENU MOBILE SIMPLES
========================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* desktop */
.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* mobile */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .menu.aberto {
    transform: translateX(0);
  }

  .menu a {
    width: 100%;
    padding: 14px 10px;
    color: #0f172a;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
  }
}

