body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #2c2c2c;
}

a { text-decoration: none; }

.navbar .nav-link {
  font-weight: 500;
  color: #333;
}
.navbar .nav-link:hover { color: var(--cor-primaria); }

.hero {
  background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
  color: #fff;
  padding: 5rem 0 6rem;
}

.hero h1 { font-weight: 700; }

.btn-primary-custom {
  background: var(--cor-primaria);
  border-color: var(--cor-primaria);
  color: #fff;
}
.btn-primary-custom:hover { filter: brightness(0.9); color: #fff; }

.badge-destaque {
  background: var(--cor-destaque);
  color: #212529;
}

.card-produto {
  border: none;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.card-produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.card-produto img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.card-produto .preco {
  color: var(--cor-primaria);
  font-weight: 700;
  font-size: 1.15rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 999;
}
.whatsapp-float:hover { color: #fff; filter: brightness(1.05); }

.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: .5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--cor-destaque);
  margin-top: .5rem;
  border-radius: 2px;
}

.roteiro-dia {
  border-left: 3px solid var(--cor-primaria);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
}

.estrelas { color: var(--cor-destaque); }
