/* ==========================================================================
   CAIÇARA DRINKERIA & HEADSHOP - EXACT PIXEL-PERFECT STYLESHEET
   Matching reference image layout_mockup.png 100%
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  --fixed-header-height: 110px;
  --bg-ocean-top: #008cd4;
  --bg-ocean-mid: #009fe3;
  --bg-ocean-dark: #0067b8;
  --bg-ocean-deep: #004e9c;
  --bg-dark-pill: #0b1220;
  --bg-dark-hover: #16223b;
  --bg-card: #ffffff;
  
  --text-white: #ffffff;
  --text-dark-navy: #0b1220;
  --text-gray-desc: #475569;
  --color-tag-blue: #0284c7;

  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hero-title: 'Bebas Neue', 'Manrope', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 10px 30px rgba(11, 18, 32, 0.4);

  --header-height-desktop: 84px;
  --header-height-mobile: 70px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  background-color: var(--bg-ocean-mid);
  color: var(--text-white);
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #007bc4 0%, #00a3e8 20%, #009fe3 50%, #0067b8 80%, #040a1a 100%);
  overflow-x: hidden;
  position: relative;
  font-size: 15px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #007bc4;
}
::-webkit-scrollbar-thumb {
  background: #0b1220;
  border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.5;
  font-weight: 500;
  font-size: 0.95rem;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
  min-height: 44px;
  min-width: 44px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 36px;
  }
}

/* Button Variants */
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-dark-pill);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.35);
  transition: all 0.25s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark-pill:hover {
  background: var(--bg-dark-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 18, 32, 0.5);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.88rem;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  width: 100%;
  border: none;
  text-transform: uppercase;
}

.btn-whatsapp-green:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.order-badge-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #00ace9;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 11px;
}
