/* =============================================
   Casa de Carnes Predileta — style.css
   Pronto para HostGator / public_html
   ============================================= */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { hyphens: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: #0E0E0E;
}
img { display: block; max-width: 100%; }

/* ── WhatsApp flutuante ── */
.prd-float {
  display: flex !important;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}

/* ── Barra mobile ── */
.prd-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

@media (min-width: 768px) {
  .prd-bar { display: none !important; }
  .prd-float { bottom: 32px !important; }
}

/* ── Carrossel ── */
.prd-carousel { overflow: hidden; position: relative; }
.prd-carousel:hover .prd-track { animation-play-state: paused; }

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50%     { box-shadow: 0 8px 44px rgba(37,211,102,.75); }
}
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hover: cards diferenciais ── */
.card-dif {
  transition: transform .3s, box-shadow .3s;
}
.card-dif:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(122,57,72,.22);
}

/* ── Hover: imagens galeria ── */
.gal-img {
  transition: transform .5s ease;
}
.gal-img:hover { transform: scale(1.05); }

/* ── Hover: botão WhatsApp hero ── */
.btn-wa-hero {
  transition: transform .2s, box-shadow .2s;
}
.btn-wa-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.58);
}

/* ── Hover: botão localização hero ── */
.btn-loc-hero {
  transition: border-color .2s, color .2s;
}
.btn-loc-hero:hover { border-color: #7A3948; color: #7A3948; }

/* ── Hover: botão Maps (localização) ── */
.btn-map-loc {
  transition: background .2s;
}
.btn-map-loc:hover { background: #913050; }

/* ── Hover: botão WA (localização) ── */
.btn-wa-loc {
  transition: background .2s;
}
.btn-wa-loc:hover { background: #20BD5A; }

/* ── Hover: CTA final ── */
.btn-cta-final {
  transition: transform .2s, box-shadow .2s;
}
.btn-cta-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 52px rgba(0,0,0,.38);
}

/* ── Hover: links footer ── */
.lnk-footer {
  transition: color .2s;
}
.lnk-footer:hover { color: #111111; }

/* ── Animação fade-in sections ── */
.fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}
