/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   SEÇÕES
========================= */
.secao {
  margin-bottom: 60px;
}

.secao h2 {
  margin-bottom: 8px;
}

.subtitulo {
  color: #6b7280;
  margin-bottom: 25px;
}

/* =========================
   DESTAQUES
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cards .card-comercio {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.cards img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.cards .info {
  padding: 15px;
}

.cards h3 {
  margin-bottom: 8px;
}

/* =========================
   UTILIDADE
========================= */
.utilidade-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.util-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* =========================
   ANUNCIE
========================= */
.anuncie {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.anuncie h2 {
  margin-bottom: 10px;
}

.anuncie p {
  margin-bottom: 20px;
}
/* =========================
   AJUSTES FINOS
========================= */

/* Tipografia geral */
h1, h2, h3 {
  line-height: 1.3;
}

p {
  line-height: 1.6;
}

/* Espaçamento melhor entre seções */
main.container {
  padding-top: 50px;
}

/* Links "ver mais" */
.ver-mais {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.ver-mais:hover {
  text-decoration: underline;
}

/* Card hover suave */
.cards .card-comercio {
  transition: transform 0.2s, box-shadow 0.2s;
}

.cards .card-comercio:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.eventos-preview {
  display: grid;
  gap: 12px;
}

.evento-preview {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* =========================
  /* =========================
   BOTÕES DO HERO (UNIFICADOS)
========================= */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* AÇÃO PRINCIPAL */
.btn-hero.primary {
  background: #ffffff;
  color: #1e40af;
}

.btn-hero.primary:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

/* AÇÃO SECUNDÁRIA */
.btn-hero.secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-hero.secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
/* =========================
   CARROSSEL HOME
========================= */
.carousel-section {
  background: #f4f6f9;
  padding: 40px 0;
}

.carousel {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 18px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Navegação */
.carousel .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel .prev { left: 15px; }
.carousel .next { right: 15px; }

/* Mobile */
@media (max-width: 768px) {
  .slide img {
    height: 240px;
  }
}
/* =========================
   ORGULHO DO BAIRRO
========================= */
.orgulho-preview {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  padding: 70px 20px;
  margin-top: 60px;
}

.orgulho-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.orgulho-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.orgulho-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

/* Botão especial (não comercial) */
.btn-orgulho {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #fb923c;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-orgulho:hover {
  background: #f97316;
  transform: translateY(-2px);
}
/* =========================
   VIVER A PEDRA - HOME
========================= */
.viver-home {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 80px 20px;
  margin: 60px 0;
}

.viver-home-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.viver-home-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.viver-home-content p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-viver-home {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: #38bdf8;
  color: #020617;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-viver-home:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
}
/* =========================
   ANIMAÇÃO NO SCROLL
========================= */
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-anim.aparecer {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   BOTÃO FLUTUANTE - CARDÁPIO
========================= */
.btn-flutuante-cardapio {
  position: fixed;
  bottom: 500px;
  right: 24px;
  background: #fb923c;
  color: #fff;
  padding: 18px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

/* visível */
.btn-flutuante-cardapio.visivel {
  opacity: 1;
  transform: translateY(0);
  animation: pulseSuave 2.5s ease-out infinite;
}


/* hover */
.btn-flutuante-cardapio:hover {
  background: #f97316;
}

/* mobile: um pouco maior */
@media (max-width: 768px) {
  .btn-flutuante-cardapio {
    bottom: 90px;
    right: 16px;
    padding: 18px 26px;
    font-size: 1.1rem;
  }
}

@keyframes pulseSuave {
  0% {
    box-shadow: 0 0 0 0 rgba(251,146,60, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(251,146,60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251,146,60, 0);
  }
}
