/* Estilos Personalizados - Distribuidora e Disk Cerveja Tô Loko */
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:wght@400;500;600;700;800;900&family=Titan+One&display=swap');

:root {
  --bg-night-deep: #040B24;
  --bg-night-blue: #051C66;
  --royal-blue: #0A38B8;
  --chopp-yellow: #FFCC00;
  --bubblegum-pink: #FF3B77;
  --white-pure: #FFFFFF;
}

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-night-deep);
  color: var(--white-pure);
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(10, 56, 184, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(255, 59, 119, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255, 204, 0, 0.12) 0%, transparent 40%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Tipografia */
.font-titan {
  font-family: 'Titan One', cursive;
}

.font-paytone {
  font-family: 'Paytone One', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* Efeito Cartoon Text Shadows */
.cartoon-title {
  text-shadow: 2px 2px 0px #000000, 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.cartoon-title-lg {
  text-shadow: 3px 3px 0px #000000, 5px 5px 0px rgba(0, 0, 0, 0.7);
}

.cartoon-title-pink {
  color: var(--bubblegum-pink);
  text-shadow: 2px 2px 0px #000000, 4px 4px 0px rgba(0, 0, 0, 0.85);
}

.cartoon-title-yellow {
  color: var(--chopp-yellow);
  text-shadow: 2px 2px 0px #000000, 3px 3px 0px rgba(0, 0, 0, 0.85);
}

.cartoon-title-stroke {
  -webkit-text-stroke: 1.5px #000000;
  text-shadow: 3px 3px 0px #000000;
}

/* Sombras Pop-Art Neo-Brutalist Cartoon */
.pop-shadow {
  box-shadow: 4px 4px 0px 0px #000000;
}

.pop-shadow-sm {
  box-shadow: 2px 2px 0px 0px #000000;
}

.pop-shadow-lg {
  box-shadow: 6px 6px 0px 0px #000000;
}

.pop-shadow-yellow {
  box-shadow: 4px 4px 0px 0px var(--chopp-yellow);
}

.pop-shadow-pink {
  box-shadow: 4px 4px 0px 0px var(--bubblegum-pink);
}

/* Botões Pop Interativos com Feedback */
.pop-btn {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  user-select: none;
}

.pop-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px 0px #000000;
}

.pop-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px #000000;
}

/* Brilho Neon */
.neon-glow-pink {
  filter: drop-shadow(0 0 12px rgba(255, 59, 119, 0.6));
}

.neon-glow-yellow {
  filter: drop-shadow(0 0 12px rgba(255, 204, 0, 0.6));
}

/* Animações */
@keyframes floatBob {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

.animate-float {
  animation: floatBob 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Transições entre telas */
.view-section {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.view-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #040B24;
}

::-webkit-scrollbar-thumb {
  background: #0A38B8;
  border-radius: 9999px;
  border: 1px solid #FFCC00;
}

::-webkit-scrollbar-thumb:hover {
  background: #FF3B77;
}

/* Barra de Rolagem Horizontal Invisível mas Funcional para Chips */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card hover animation */
.card-scale {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card-scale:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px 0px #000000;
}

/* PWA Standalone Fix for Safe Areas (iPhone Notch/Bottom Bar) */
@supports (padding: max(0px)) {
  .safe-area-bottom {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .safe-area-top {
    padding-top: max(12px, env(safe-area-inset-top));
  }
}

/* Fotos e Previews do CMS */
.product-photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid var(--chopp-yellow);
  background-color: var(--bg-night-blue);
  box-shadow: 2px 2px 0px 0px #000000;
}

.product-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-photo-img:hover {
  transform: scale(1.05);
}

/* Destaque Exclusivo: O Melhor Gin de 10 de Anápolis */
.gin-de-10-card {
  position: relative;
  background: linear-gradient(135deg, #0A38B8 0%, #172554 100%);
  border: 3px solid #FFCC00 !important;
  box-shadow: 0 0 22px rgba(255, 204, 0, 0.45), 5px 5px 0px 0px #000000 !important;
}

.gin-de-10-card:hover {
  box-shadow: 0 0 28px rgba(255, 59, 119, 0.6), 6px 6px 0px 0px #000000 !important;
}

@keyframes goldPulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(255, 204, 0, 0.6), 4px 4px 0px 0px #000000;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 59, 119, 0.8), 4px 4px 0px 0px #000000;
    transform: scale(1.02);
  }
}

.animate-gold-pulse {
  animation: goldPulse 2.5s infinite ease-in-out;
}

.gin-de-10-badge {
  background: linear-gradient(90deg, #FFCC00 0%, #FF3B77 100%);
  color: #000000;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
  font-family: 'Titan One', cursive;
  letter-spacing: 0.05em;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px 0px #000000;
}


