/* ==========================================================================
   GELOU SORVETES - REVITALIZED PREMIUM STYLESHEET
   Design & Direction: Agency Grade (G3N Standard)
   ========================================================================== */

/* --- 1. CSS VARIABLES & DESIGN TOKENS --- */
:root {
  /* Brand Core Navy / Dark Shades (Identity Anchor) */
  --navy-950: #030a19;
  --navy-900: #06142a;
  --navy-850: #081a36;
  --navy-800: #09203b;
  --navy-700: #102d52;
  --navy-rgb: 3, 10, 25;

  /* Brand Vibrant Accents (Ciano, Magenta, Roxo, Amarelo) */
  --cyan-500: #00cfee;
  --cyan-400: #33ddf6;
  --cyan-600: #00a6c7;
  --cyan-rgb: 0, 207, 238;
  --cyan-gradient: linear-gradient(135deg, #33ddf6 0%, #00cfee 100%);
  --cyan-subtle: rgba(0, 207, 238, 0.12);

  --blue-500: #058be5;
  --blue-600: #036ec0;

  --magenta-500: #ed1688;
  --magenta-600: #d80f76;
  --magenta-700: #b50b61;
  --magenta-rgb: 237, 22, 136;
  --magenta-gradient: linear-gradient(135deg, #ff2a9b 0%, #ed1688 60%, #d80f76 100%);
  --magenta-subtle: rgba(237, 22, 136, 0.12);

  --purple-500: #8c37d3;
  --purple-gradient: linear-gradient(135deg, #a855f7 0%, #8c37d3 100%);

  --yellow-400: #ffd326;
  --yellow-500: #f5b700;
  --yellow-gradient: linear-gradient(135deg, #ffe066 0%, #ffd326 100%);

  /* WhatsApp & Status */
  --whatsapp: #20cf70;
  --whatsapp-dark: #1ab863;
  --whatsapp-glow: rgba(32, 207, 112, 0.4);
  --status-open: #10b981;
  --status-closed: #ef4444;

  /* Neutral Surfaces & Backgrounds */
  --bg-body: #ffffff;
  --bg-dark: var(--navy-900);
  --bg-dark-deep: var(--navy-950);
  --bg-card-dark: var(--navy-800);
  --bg-card-light: #ffffff;
  --ice-50: #f8fafc;
  --ice-100: #edf4f8;
  --ice-200: #dfe8ef;
  --white: #ffffff;

  /* Typography Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #c5cfdf;
  --text-white: #ffffff;
  --text-white-muted: #c5cfdf;

  /* Borders & Dividers */
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-cyan: rgba(0, 207, 238, 0.35);
  --border-magenta: rgba(237, 22, 136, 0.35);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(3, 10, 25, 0.05);
  --shadow-md: 0 8px 24px rgba(3, 10, 25, 0.08);
  --shadow-lg: 0 16px 40px rgba(3, 10, 25, 0.12);
  --shadow-xl: 0 24px 60px rgba(3, 10, 25, 0.18);
  --shadow-magenta: 0 10px 30px rgba(237, 22, 136, 0.35);
  --shadow-cyan: 0 10px 30px rgba(0, 207, 238, 0.3);
  --shadow-whatsapp: 0 10px 30px rgba(32, 207, 112, 0.4);

  /* Typography Families */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Dimensions & Spacing */
  --header-height: 84px;
  --header-height-mobile: 70px;
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. CSS RESET & GLOBAL BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-body);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* Focus Accessibility */
:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- 3. LAYOUT CONTAINERS & SECTION RHYTHM --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Section Rhythm Themes */
.section-white {
  background-color: #FFFFFF;
}

.section-ice {
  background-color: var(--ice-100);
}

.section-ice-light {
  background-color: var(--ice-50);
}

.section-dark {
  background: var(--navy-900);
  color: var(--text-white);
}

.section-dark-deep {
  background: var(--navy-950);
  color: var(--text-white);
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(2, 119, 189, 0.08);
  border: 1px solid rgba(2, 119, 189, 0.25);
  border-radius: var(--radius-full);
  color: #0277bd;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-badge.cyan {
  background: rgba(2, 119, 189, 0.08);
  border-color: rgba(2, 119, 189, 0.25);
  color: #0277bd;
}

.section-badge.dark-cyan,
.section-dark .section-badge {
  background: rgba(0, 200, 239, 0.15);
  border-color: rgba(0, 200, 239, 0.4);
  color: var(--cyan-400);
}

.section-badge.dark-magenta {
  background: rgba(2, 119, 189, 0.12);
  border-color: rgba(2, 119, 189, 0.3);
  color: #0277bd;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-dark .section-title,
.section-dark-deep .section-title {
  color: var(--text-white);
}

.section-title span.highlight-magenta,
.section-title span.highlight-cyan,
.section-title span.highlight-blue {
  color: #0277bd; /* Deep readable blue for white/light background sections */
}

.section-dark .section-title span.highlight-magenta,
.section-dark .section-title span.highlight-cyan,
.section-dark .section-title span.highlight-blue,
.section-dark-deep .section-title span.highlight-magenta,
.section-dark-deep .section-title span.highlight-cyan,
.section-dark-deep .section-title span.highlight-blue {
  color: var(--cyan-400); /* Luminous bright cyan on dark navy background */
}

.section-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.section-dark .section-description,
.section-dark-deep .section-description {
  color: var(--text-white-muted);
}

/* --- 4. BUTTONS & CTAS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: var(--magenta-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-magenta);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(239, 33, 140, 0.45);
  color: #FFFFFF;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-cyan {
  background: var(--cyan-gradient);
  color: var(--navy-950);
  box-shadow: var(--shadow-cyan);
}

.btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 200, 239, 0.45);
  color: var(--navy-950);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2ED87B 0%, #1EBE5D 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

.btn-glass-hero {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-glass-hero:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--cyan-400);
  color: var(--cyan-400);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-outline-dark:hover {
  border-color: var(--cyan-600);
  color: var(--cyan-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.92rem;
}

.btn-lg {
  min-height: 56px;
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- 5. HEADER & NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(3, 10, 25, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(3, 10, 25, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(0, 207, 238, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  transition: transform var(--transition-fast);
}

.logo-link:hover .logo-img {
  transform: scale(1.03);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: #c5cfdf;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyan-500);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header-wpp {
  background: var(--whatsapp);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(32, 207, 112, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-header-wpp:hover {
  background: #1ab863;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 207, 112, 0.5);
  color: #FFFFFF;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  gap: 6px;
  z-index: 1100;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 320px;
  height: 100vh;
  background: var(--navy-950);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
  border-left: 1px solid rgba(0, 207, 238, 0.2);
  z-index: 1050;
  padding: 90px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 25, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--cyan-400);
}

.mobile-menu-footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- 6. HERO SECTION (DEEP NAVY THEME - FIDELITY DESIGN) --- */
.hero-section {
  position: relative;
  background: var(--navy-950);
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 90px;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-ambient-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.light-cyan {
  width: 520px;
  height: 520px;
  background: var(--cyan-500);
  top: 15%;
  left: -8%;
}

.light-magenta {
  width: 580px;
  height: 580px;
  background: var(--magenta-500);
  top: 10%;
  right: -5%;
}

.light-water-reflection {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: radial-gradient(ellipse at 70% 100%, rgba(0, 207, 238, 0.2) 0%, rgba(237, 22, 136, 0.12) 40%, transparent 80%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.22fr;
  align-items: center;
  gap: 36px;
}

/* Hero Content (Left Column) */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-factory-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--cyan-400);
  background: rgba(3, 10, 25, 0.7);
  margin-bottom: 20px;
  width: fit-content;
}

.factory-badge-star {
  color: var(--yellow-400);
  font-size: 14px;
  line-height: 1;
}

.factory-badge-text {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--yellow-400);
  text-transform: uppercase;
}

.hero-headline,
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-price-pill-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--magenta-500);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  padding: 8px 24px;
  border-radius: 14px;
  margin-top: 14px;
  box-shadow: 0 8px 24px rgba(237, 22, 136, 0.4);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-notch-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 440px;
  margin: 18px 0 16px;
  position: relative;
}

.notch-line-left,
.notch-line-right {
  flex: 1;
  height: 2px;
  background: var(--cyan-400);
}

.notch-chevron {
  width: 12px;
  height: 6px;
  border-left: 2.5px solid var(--cyan-400);
  border-bottom: 2.5px solid var(--cyan-400);
  transform: rotate(-45deg);
  margin: -3px 4px 0;
  flex-shrink: 0;
}

.hero-flavors-highlight {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 900;
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero-subtext {
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}

.btn-hero-primary {
  background: var(--magenta-500);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  min-height: 54px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(237, 22, 136, 0.38);
  border: none;
  transition: all var(--transition-fast);
}

.btn-hero-primary .btn-icon-pouch {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-hero-primary:hover {
  background: var(--magenta-600);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(237, 22, 136, 0.52);
  color: #FFFFFF;
}

.btn-hero-secondary {
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-hero-secondary .btn-icon-down {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: #FFFFFF;
}

.btn-hero-secondary:hover .btn-icon-down {
  transform: translateY(3px);
}

/* Differentials Capsule Bar */
.hero-differentials-capsule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  background: rgba(9, 32, 59, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 207, 238, 0.35);
  box-shadow: 0 8px 24px rgba(3, 10, 25, 0.4);
  width: fit-content;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.diff-check-icon {
  width: 18px;
  height: 18px;
  color: var(--cyan-500);
  flex-shrink: 0;
}

.diff-dot {
  color: var(--magenta-500);
  font-size: 0.5rem;
  line-height: 1;
}

/* Hero Visual Showcase (Right Column) */
.hero-visual-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

/* Luminous Halo (Circular split ring cyan & magenta) */
.hero-luminous-halo {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  border: 3.5px solid transparent;
  background:
    linear-gradient(var(--navy-950), var(--navy-950)) padding-box,
    linear-gradient(135deg, #00cfee 0%, #058be5 35%, #8c37d3 65%, #ed1688 100%) border-box;
  box-shadow:
    0 0 35px rgba(0, 207, 238, 0.45),
    0 0 45px rgba(237, 22, 136, 0.45),
    inset 0 0 25px rgba(0, 207, 238, 0.2),
    inset 0 0 25px rgba(237, 22, 136, 0.2);
  animation: haloPulse 4s ease-in-out infinite alternate;
}

@keyframes haloPulse {
  0% {
    box-shadow: 0 0 25px rgba(0, 207, 238, 0.35), 0 0 35px rgba(237, 22, 136, 0.35);
  }

  100% {
    box-shadow: 0 0 45px rgba(0, 207, 238, 0.65), 0 0 55px rgba(237, 22, 136, 0.65);
  }
}

/* Popsicle composition */
.hero-products-composition {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatHeroPopsicle 5s ease-in-out infinite;
}

.hero-showcase-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(3, 10, 25, 0.85));
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 42%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 42%, transparent 72%);
  background: radial-gradient(circle, rgba(0, 200, 239, 0.12) 0%, rgba(239, 33, 140, 0.08) 50%, transparent 75%);
  content-visibility: auto;
}

.hero-pedestal-light {
  position: absolute;
  bottom: -10px;
  left: 15%;
  right: 15%;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 207, 238, 0.35) 0%, rgba(237, 22, 136, 0.25) 50%, transparent 80%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

@keyframes floatHeroPopsicle {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }
}

/* Real HTML Price Tag Card */
.hero-price-tag-card {
  position: absolute;
  bottom: 45px;
  right: 12px;
  z-index: 5;
  width: 105px;
  background: #06142a;
  border: 2.5px solid var(--magenta-500);
  border-radius: 14px;
  padding: 14px 8px 12px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 22px rgba(237, 22, 136, 0.35);
  animation: floatPriceCard 4.5s ease-in-out infinite 0.5s;
}

.price-tag-notch {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--navy-950);
  border: 2px solid var(--magenta-500);
  border-radius: 50%;
}

.price-tag-string {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 18px;
  background: rgba(237, 22, 136, 0.7);
}

.price-tag-currency {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cyan-500);
  line-height: 1;
  margin-bottom: 2px;
}

.price-tag-value {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.price-tag-divider {
  width: 75%;
  height: 2px;
  background: var(--yellow-400);
  margin: 7px auto 5px;
  border-radius: 1px;
}

.price-tag-unit {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 900;
  color: var(--yellow-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes floatPriceCard {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

/* --- 7. CLEAN SECTION TRANSITION --- */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 207, 238, 0.4) 30%, rgba(237, 22, 136, 0.4) 70%, transparent 100%);
  z-index: 10;
}

/* --- 8. FLAVORS CATALOG SECTION (PREMIUM ICE-CREAM ARTISAN THEME) --- */
#sabores {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FD 30%, #F0F5FC 100%);
  position: relative;
  overflow: hidden;
}

#sabores::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 239, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#sabores::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 33, 140, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.flavors-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
}

.flavor-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 20px rgba(9, 21, 45, 0.04);
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tab-btn:hover {
  color: var(--navy-900);
  background: rgba(0, 200, 239, 0.08);
}

.tab-btn.active {
  background: var(--navy-900);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(9, 21, 45, 0.25);
}

.flavor-search-box {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.search-input {
  width: 100%;
  padding: 14px 22px 14px 52px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  background: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-primary);
  outline: none;
  box-shadow: 0 4px 18px rgba(9, 21, 45, 0.04);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-input:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(0, 200, 239, 0.18), 0 8px 24px rgba(0, 200, 239, 0.12);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--cyan-600);
  pointer-events: none;
}

/* Flavor Cards Grid (Compact & Easy to Scan) */
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.flavor-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 18px 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 16px rgba(9, 21, 45, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 270px;
}

.flavor-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(25px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.flavor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(9, 21, 45, 0.08), 0 0 0 1px var(--flavor-color, var(--cyan-500));
  border-color: transparent;
}

.flavor-card:hover .flavor-card-glow {
  opacity: 0.22;
  transform: scale(1.3);
}

/* Card Header: Badge + Price */
.flavor-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.flavor-badge-pill {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--flavor-bg-light, #F1F5F9);
  color: var(--flavor-color, var(--magenta-600));
}

.flavor-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: rgba(239, 33, 140, 0.08);
  border: 1px solid rgba(239, 33, 140, 0.2);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.flavor-price-cur {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--magenta-600);
}

.flavor-price-val {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--magenta-600);
  line-height: 1;
}

.flavor-price-unit {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-left: 1px;
}

/* Visual Illustration / Popsicle Avatar */
.flavor-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px 0 12px;
  position: relative;
  z-index: 2;
}

.flavor-avatar-box {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease;
}

.flavor-card:hover .flavor-avatar-box {
  transform: scale(1.08) rotate(3deg);
}

.flavor-emoji {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
}

.flavor-stick {
  position: absolute;
  bottom: -8px;
  width: 12px;
  height: 10px;
  background: #D4A373;
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.18);
  z-index: -1;
}

/* Card Body */
.flavor-body {
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.flavor-meta-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.flavor-cat-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.flavor-cat-tag.cat-frutas {
  background: rgba(0, 200, 239, 0.1);
  color: var(--cyan-600);
}

.flavor-cat-tag.cat-cremosos {
  background: rgba(7, 142, 232, 0.1);
  color: var(--blue-600);
}

.flavor-cat-tag.cat-classicos {
  background: rgba(145, 56, 210, 0.1);
  color: var(--purple-500);
}

.flavor-cat-tag.cat-especiais {
  background: rgba(239, 33, 140, 0.1);
  color: var(--magenta-600);
}

.flavor-taste-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.flavor-name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.flavor-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

/* Card Footer Action Button */
.flavor-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  z-index: 2;
}

.flavor-order-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.order-btn-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.order-btn-icon-wrap svg {
  width: 14px;
  height: 14px;
}

.order-btn-text {
  flex-grow: 1;
  text-align: left;
  margin-left: 8px;
  font-size: 0.82rem;
}

.order-btn-arrow {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.flavor-order-btn:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #FFFFFF;
}

.flavor-order-btn:hover .order-btn-icon-wrap {
  background: #FFFFFF;
  color: var(--whatsapp);
}

.flavor-order-btn:hover .order-btn-arrow {
  color: #FFFFFF;
  transform: translateX(3px);
}

.flavors-expand-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.flavors-bottom-cta {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* Empty State */
.flavors-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 24px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1.5px dashed var(--border-light);
  box-shadow: var(--shadow-sm);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.empty-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 24px;
}

/* Expansion & Action Row */
.flavors-expand-row {
  text-align: center;
  margin-bottom: 48px;
}

.flavors-bottom-cta {
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
  padding: 42px 36px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(9, 21, 45, 0.06);
  border: 1.5px solid rgba(0, 200, 239, 0.25);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.flavors-bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-400), var(--magenta-500));
}

/* --- 9. FESTAS & EVENTOS (DEEP NAVY CONTRAST THEME) --- */
.events-section {
  background: radial-gradient(circle at 10% 20%, rgba(239, 33, 140, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 200, 239, 0.12) 0%, transparent 40%),
    var(--navy-900);
  color: var(--text-white);
}

.events-section .section-title {
  color: #FFFFFF;
}

.events-section .section-description {
  color: var(--text-white-muted);
}

.events-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: start;
}

.events-info {
  display: flex;
  flex-direction: column;
}

.occasions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.occasion-card {
  background: var(--navy-800);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}

.occasion-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-400);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.occasion-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 200, 239, 0.15);
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.occasion-text {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* Interactive Calculator Card */
.calculator-card {
  background: #FFFFFF;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--border-light);
  position: sticky;
  top: 100px;
}

.calc-header {
  margin-bottom: 24px;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.calc-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
}

.calc-value-display {
  color: var(--magenta-600);
  font-weight: 900;
}

.calc-range {
  width: 100%;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--ice-100);
  outline: none;
  accent-color: var(--magenta-500);
  cursor: pointer;
}

.calc-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: var(--ice-50);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.calc-select:focus {
  border-color: var(--cyan-500);
}

.calc-results-box {
  background: var(--ice-50);
  border: 2px dashed rgba(0, 207, 238, 0.4);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.calc-result-header {
  text-align: center;
}

.calc-result-sublabel {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.calc-result-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--magenta-600);
  line-height: 1;
}

/* Strategic Unit Price Highlight Card */
.calc-unit-price-card {
  background: #FFFFFF;
  border: 1.8px solid var(--cyan-500);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 18px rgba(0, 207, 238, 0.15);
  transition: all var(--transition-fast);
}

.unit-price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.unit-price-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy-900);
  white-space: nowrap;
}

.unit-price-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0078a0;
  background: rgba(0, 207, 238, 0.14);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.unit-price-val-display {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #0088a8;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Total Investment Display */
.calc-total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(9, 32, 59, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.calc-total-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

.calc-total-amount {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--magenta-600);
}

.calc-result-hint {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  text-align: center;
}

/* --- 10. COMO PEDIR - 3 ETAPAS (SOFT BLUE-ICE THEME) --- */
.steps-section {
  background-color: var(--ice-100);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 48px;
}

/* Desktop Connecting Line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-500) 0%, var(--magenta-500) 100%);
  z-index: 1;
}

.step-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px 30px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-500);
}

.step-badge-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--cyan-400);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.step-card:nth-child(2) .step-badge-number {
  border-color: var(--magenta-500);
}

.step-card:nth-child(3) .step-badge-number {
  border-color: var(--yellow-400);
}

.step-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--ice-100);
  color: var(--cyan-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  margin-top: 8px;
}

.step-card:nth-child(2) .step-icon-box {
  color: var(--magenta-600);
  background: var(--magenta-subtle);
}

.step-card:nth-child(3) .step-icon-box {
  color: var(--blue-600);
  background: rgba(7, 142, 232, 0.12);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.order-notice-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.order-notice-icon {
  width: 32px;
  height: 32px;
  color: var(--cyan-600);
  flex-shrink: 0;
}

.order-notice-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.55;
}

/* --- 11. QUALIDADE & ECONOMIA (PURE WHITE EDITORIAL THEME) --- */
.quality-section {
  background-color: #FFFFFF;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quality-media {
  position: relative;
}

.quality-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #FFFFFF;
}

.quality-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.quality-floating-stat {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--navy-900);
  color: #FFFFFF;
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1.5px solid var(--cyan-500);
  display: flex;
  align-items: center;
  gap: 16px;
}

.quality-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cyan-gradient);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-stat-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
}

.quality-stat-label {
  font-size: 0.84rem;
  color: var(--text-white-muted);
}

.quality-content-box {
  display: flex;
  flex-direction: column;
}

.quality-features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.quality-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.quality-feature-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cyan-subtle);
  color: var(--cyan-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.quality-feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.quality-feature-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- 12. GALERIA VISUAL (DEEP NAVY MOSAIC THEME) --- */
.gallery-section {
  background: var(--navy-950);
  color: var(--text-white);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: var(--navy-850);
  cursor: pointer;
}

.gallery-item.item-featured {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 9, 20, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* Lightbox Modal */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 20, 0.9);
  backdrop-filter: blur(10px);
}

.gallery-modal-content {
  position: relative;
  z-index: 2010;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-modal-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.gallery-modal-caption {
  margin-top: 14px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.gallery-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
}

/* --- 13. FAQ ACCORDION (SOFT ICE THEME: #F2F7FB) --- */
.faq-section {
  background-color: #f2f7fb;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 200, 239, 0.08) 0%, rgba(239, 33, 140, 0.04) 50%, transparent 80%);
  pointer-events: none;
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(9, 21, 45, 0.03);
  transition: all var(--transition-fast);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0277bd;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(2, 119, 189, 0.4);
  box-shadow: 0 8px 20px rgba(9, 21, 45, 0.06);
}

.faq-item.active {
  border-color: rgba(2, 119, 189, 0.35);
  box-shadow: 0 8px 24px rgba(9, 21, 45, 0.08);
}

.faq-item.active::before {
  opacity: 1;
}

.faq-trigger {
  width: 100%;
  padding: 20px 26px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  color: var(--magenta-600);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-content {
  max-height: 1000px;
}

.faq-content-inner {
  padding: 0 26px 24px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- 14. LOCALIZAÇÃO & LOJA (PURE WHITE THEME: #FFFFFF) --- */
.location-section {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.location-card-info {
  background: #FFFFFF;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 32px rgba(9, 21, 45, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
}

.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 24px;
  width: fit-content;
}

.store-status-badge.open {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.store-status-badge.closed {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.location-address-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.loc-icon {
  width: 28px;
  height: 28px;
  color: var(--magenta-600);
  flex-shrink: 0;
  margin-top: 3px;
}

.loc-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.loc-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-light);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 0;
  font-size: 0.92rem;
}

.hours-table td.day {
  font-weight: 800;
  color: var(--text-primary);
}

.hours-table td.time {
  text-align: right;
  color: var(--text-secondary);
  font-weight: 600;
}

.hours-table tr.today {
  color: #0277bd;
}

.hours-table tr.today td.day,
.hours-table tr.today td.time {
  color: #0277bd;
  font-weight: 900;
}

.location-actions-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.map-embed-wrapper {
  height: 100%;
  min-height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

/* --- 15. FINAL CTA BANNER (HIGH-CONTRAST GRADIENT THEME) --- */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-950) 0%, #A80C57 50%, var(--magenta-600) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.final-cta-container {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: var(--yellow-400);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 211, 38, 0.4);
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.final-cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.65;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn-white-action {
  background: #FFFFFF;
  color: var(--navy-950);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-white-action:hover {
  background: var(--cyan-400);
  color: var(--navy-950);
  transform: translateY(-3px);
}

/* --- 16. FOOTER (DEEP NAVY / BLACK THEME) --- */
.site-footer {
  background: var(--navy-950);
  color: var(--text-white-muted);
  padding: 80px 0 34px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-bio {
  color: var(--text-white-muted);
  line-height: 1.65;
  max-width: 340px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--cyan-500);
  color: var(--navy-950);
  border-color: var(--cyan-500);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  color: var(--text-white-muted);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--cyan-400);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-white-muted);
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text-white-muted);
}

.footer-copy-line,
.footer-rights-line {
  display: inline;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-copyright {
    align-items: center;
    text-align: center;
  }

  .footer-copy-line,
  .footer-rights-line {
    display: block !important;
  }
}

.footer-g3n-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(6, 20, 42, 0.85) 0%, rgba(16, 45, 82, 0.95) 100%);
  border: 1px solid rgba(0, 200, 239, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 14px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.footer-g3n-badge:hover {
  border-color: var(--cyan-400);
  background: linear-gradient(135deg, var(--navy-950) 0%, #092C5E 100%);
  box-shadow: 0 6px 24px rgba(0, 200, 239, 0.4);
  transform: translateY(-2px);
}

.g3n-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-white-muted);
  white-space: nowrap;
}

.g3n-brand-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.g3n-logo-img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.g3n-brand-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  white-space: nowrap;
}

.g3n-divider {
  color: var(--cyan-400);
  margin: 0 2px;
  font-weight: 400;
}

/* --- 17. FLOATING WHATSAPP & MOBILE BAR --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.floating-whatsapp-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ED87B 0%, #1EBE5D 100%);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulseWpp 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-tooltip {
  background: var(--navy-950);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 200, 239, 0.4);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
}

@media (hover: hover) {
  .floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (hover: none) {
  .floating-whatsapp-tooltip {
    display: none !important;
  }
}

@keyframes pulseWpp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 21, 45, 0.97);
  backdrop-filter: blur(14px);
  padding: 12px 18px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 200, 239, 0.25);
  z-index: 980;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-bar-price {
  display: flex;
  flex-direction: column;
}

.mobile-bar-price span:first-child {
  font-size: 0.75rem;
  color: var(--yellow-400);
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-bar-price span:last-child {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
}

/* --- 18. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
  }

  .flavors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-height: 860px) and (min-width: 1025px) {
  .hero-section {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 24px;
  }
  .hero-title {
    font-size: clamp(3.2rem, 4.4vw, 4.8rem);
    margin-bottom: 16px;
  }
  .hero-subtext {
    margin-bottom: 24px;
    font-size: 1.15rem;
  }
  .hero-cta-buttons {
    margin-bottom: 28px;
  }
  .hero-showcase-img {
    max-width: 540px;
  }
  .hero-luminous-halo {
    width: 440px;
    height: 440px;
  }
  .hero-price-tag-card {
    bottom: 20px;
    right: 15px;
    width: 120px;
    padding: 14px 10px 10px;
  }
  .hero-price-tag-card .price-tag-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: var(--header-height-mobile);
  }

  .nav-desktop,
  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height-mobile) + 30px);
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(3.2rem, 7vw, 4.4rem);
  }

  .hero-title-white,
  .hero-title-pink {
    white-space: normal;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-buttons {
    justify-content: center;
  }

  .hero-differentials-capsule {
    margin: 0 auto;
  }

  .hero-visual-showcase {
    max-width: 540px;
    margin: 10px auto 0;
  }

  .hero-luminous-halo {
    width: 420px;
    height: 420px;
  }

  .hero-showcase-img {
    max-width: 500px;
  }

  .hero-price-tag-card {
    bottom: 25px;
    right: 20px;
    width: 115px;
    padding: 14px 10px 10px;
  }

  .hero-price-tag-card .price-tag-currency {
    font-size: 1.25rem;
  }

  .hero-price-tag-card .price-tag-value {
    font-size: 2.3rem;
  }

  .flavors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .calculator-card {
    position: static;
    max-width: 640px;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quality-features-list {
    text-align: left;
    max-width: 540px;
    margin: 28px auto 0;
  }

  .quality-media {
    max-width: 540px;
    margin: 0 auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .flavors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-header {
    z-index: 1003;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-toggle {
    z-index: 1005;
    cursor: pointer;
    pointer-events: auto;
  }

  .mobile-backdrop {
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu {
    z-index: 1002;
    pointer-events: none;
    visibility: hidden;
    transition: right 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu.open {
    visibility: visible;
    pointer-events: auto;
    right: 0;
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    min-height: 56px;
    z-index: 998;
    padding: 6px 10px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    background: #030A19;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  /* Seamless background extension for Chrome/Safari mobile address bar collapse */
  .mobile-bottom-bar::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100px;
    background: #030A19;
    pointer-events: none;
  }

  .mobile-bar-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
  }

  .mobile-bar-title {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--yellow-400);
    line-height: 1.1;
    white-space: nowrap;
  }

  .mobile-bar-subtitle {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

  .mobile-bar-subtitle small {
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--text-white-muted);
  }

  .mobile-bar-atacado {
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--cyan-400);
    white-space: nowrap;
  }

  .mobile-bottom-bar .btn-whatsapp {
    flex-shrink: 0;
    padding: 6px 8px;
    font-size: 0.7rem;
    font-weight: 800;
    gap: 3px;
    white-space: nowrap;
    border-radius: var(--radius-full);
  }

  .mobile-bottom-bar .btn-whatsapp svg {
    width: 13px;
    height: 13px;
  }

  @media (max-width: 350px) {
    .mobile-bottom-bar {
      padding: 4px 6px;
      gap: 3px;
    }
    .mobile-bar-title {
      font-size: 0.55rem;
    }
    .mobile-bar-subtitle {
      font-size: 0.64rem;
    }
    .mobile-bar-subtitle small,
    .mobile-bar-atacado {
      font-size: 0.52rem;
    }
    .mobile-bottom-bar .btn-whatsapp {
      padding: 5px 6px;
      font-size: 0.66rem;
    }
  }

  body {
    padding-bottom: 76px;
  }

  .floating-whatsapp {
    bottom: 82px;
    right: 16px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .floating-whatsapp-tooltip {
    display: none !important;
  }

  .section {
    padding: 52px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .section-badge {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  .section-title {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
    line-height: 1.12;
    word-wrap: break-word;
    overflow-wrap: normal !important;
    word-break: normal !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;
    max-width: 100%;
  }

  .no-break {
    display: inline-block;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 100%;
  }

  /* --- HERO MOBILE SPECIFIC ORDER & STYLING --- */
  .hero-section {
    padding-top: calc(var(--header-height-mobile) + 20px);
    padding-bottom: 44px;
    overflow: hidden;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    display: contents;
  }

  .hero-factory-badge {
    order: 1;
    margin: 0 auto 16px;
    background: rgba(6, 20, 42, 0.8);
    border: 1.5px solid var(--cyan-400);
  }

  .hero-title {
    order: 2;
    margin-bottom: 0;
    font-size: clamp(2rem, 8.5vw, 3rem);
    text-align: center;
    line-height: 1.06;
    font-weight: 900;
    width: 100%;
    color: #FFFFFF;
  }

  .hero-title-line {
    display: block;
    text-align: center;
    white-space: normal;
  }

  .hero-price-pill-banner {
    display: inline-flex;
    margin: 12px auto 0;
    padding: 8px 24px;
    font-size: clamp(1.25rem, 5.4vw, 1.75rem);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(237, 22, 136, 0.45);
  }

  .hero-notch-divider {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 14px;
    width: 92%;
    max-width: 360px;
  }

  .hero-flavors-highlight {
    order: 4;
    font-size: clamp(1.55rem, 6.8vw, 2.2rem);
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
  }

  .hero-subtext {
    order: 5;
    margin: 0 auto 24px;
    font-size: 0.98rem;
    line-height: 1.45;
    text-align: center;
    max-width: 330px;
    color: var(--text-white-muted);
  }

  .hero-cta-buttons {
    order: 6;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 24px;
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 700;
  }

  .hero-visual-showcase {
    order: 7;
    margin: 0 auto 22px;
    max-width: 320px;
    width: 100%;
    position: relative;
  }

  .hero-luminous-halo {
    width: 260px;
    height: 260px;
    top: 45%;
  }

  .hero-showcase-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-price-tag-card {
    bottom: 10px;
    right: 10px;
    width: 100px;
    padding: 10px 6px 8px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(239, 33, 140, 0.4);
  }

  .hero-price-tag-card .price-tag-currency {
    font-size: 0.95rem;
  }

  .hero-price-tag-card .price-tag-value {
    font-size: 2rem;
  }

  .hero-price-tag-card .price-tag-unit {
    font-size: 0.62rem;
  }

  /* Differentials capsule - 2 items on mobile */
  .hero-differentials-capsule {
    order: 6;
    width: auto;
    max-width: 100%;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 12px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin: 0 auto;
    box-sizing: border-box;
  }

  .hero-differentials-capsule .diff-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
  }

  .hero-differentials-capsule .diff-dot {
    display: inline-block;
    font-size: 0.5rem;
    color: var(--cyan-400);
    flex-shrink: 0;
  }

  /* --- FLAVORS CATALOG MOBILE REFINEMENTS --- */
  #sabores .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px !important;
  }

  #sabores .section-badge {
    margin: 0 auto 12px;
  }

  #sabores .section-description {
    text-align: center;
  }

  .flavors-section-title {
    text-align: center;
    text-transform: uppercase;
    line-height: 1.15;
  }

  .flavors-section-title .title-line-1,
  .flavors-section-title .title-line-2 {
    display: block;
    text-align: center;
  }

  .flavors-controls {
    margin-bottom: 20px;
    width: 100%;
    align-items: stretch;
  }

  .flavor-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding: 6px 20px 10px 20px;
    margin: 0 -20px;
    width: calc(100% + 40px);
    box-sizing: border-box;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .flavor-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
  }

  .tab-btn.active {
    background: var(--navy-950);
    color: #FFFFFF;
    border-color: var(--navy-950);
    box-shadow: 0 4px 14px rgba(6, 20, 42, 0.25);
  }

  .tabs-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 6px auto 14px;
  }

  .tabs-scroll-indicator .dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--border-light);
    transition: all 0.25s ease;
  }

  .tabs-scroll-indicator .dot.active {
    width: 18px;
    background: var(--cyan-500);
  }

  .flavor-search-box {
    margin-top: 12px;
    width: 100%;
  }

  .search-input {
    height: 48px;
    font-size: 16px;
    width: 100%;
  }

  /* 2 COLUMNS ON MOBILE GRID (360px, 390px, 430px) */
  .flavors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
    width: 100%;
  }

  .flavor-card {
    padding: 14px 12px 14px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    height: 100%;
  }

  .flavor-card-header {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 2px;
    min-height: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .flavor-badge-pill {
    font-size: 0.54rem !important;
    padding: 2px 4px !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 48%;
    flex-shrink: 1;
  }

  .flavor-price-pill {
    padding: 2px 5px !important;
    margin-left: auto;
    white-space: nowrap !important;
    flex-shrink: 0;
  }

  .flavor-price-cur {
    font-size: 0.58rem !important;
  }

  .flavor-price-val {
    font-size: 0.78rem !important;
    font-weight: 800;
  }

  .flavor-price-unit {
    font-size: 0.52rem !important;
  }

  .flavor-footer {
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
  }

  .flavor-add-btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 0.76rem !important;
    padding: 7px 4px !important;
    min-height: 36px !important;
    justify-content: center;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .flavor-visual-wrap {
    margin: 4px 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
  }

  .flavor-avatar-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .flavor-emoji {
    font-size: 26px;
  }

  .flavor-body {
    margin-bottom: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .flavor-meta-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-height: 38px;
    margin-bottom: 6px;
  }

  .flavor-cat-tag,
  .flavor-taste-tag {
    font-size: 0.64rem;
    padding: 2px 6px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .flavor-name {
    font-size: 0.92rem;
    line-height: 1.25;
    margin-bottom: 4px;
    font-weight: 800;
    min-height: 2.5em;
    max-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .flavor-desc {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-secondary);
    margin-bottom: 10px;
    min-height: 2.7em;
    max-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .flavor-footer {
    margin-top: auto;
  }

  .flavor-order-btn {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: var(--radius-md);
  }

  /* Flavors Bottom CTA Centering */
  .flavors-bottom-cta {
    margin: 32px auto 0;
    padding: 24px 18px;
    background: var(--ice-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .flavors-bottom-cta p {
    text-align: center;
  }

  .flavors-bottom-cta .btn {
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 320px;
    min-height: 48px;
  }

  /* --- EVENTS & CALCULATOR --- */
  .events-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .events-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .occasions-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .calculator-card {
    padding: 20px 14px;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .calc-form,
  .calc-group,
  .calc-select,
  .calc-range,
  .calc-results-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .calc-results-box {
    padding: 16px 12px;
    gap: 12px;
  }

  .calc-unit-price-card {
    padding: 10px 12px;
    gap: 6px;
  }

  .unit-price-label {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .unit-price-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    white-space: nowrap;
  }

  .unit-price-val-display {
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .calc-total-box {
    padding: 10px 12px;
  }

  .calc-total-label {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .calc-total-amount {
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .calculator-card .btn {
    white-space: normal;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
    min-height: 50px;
  }

  .calc-result-number {
    font-size: 1.8rem;
  }

  /* --- STEPS SECTION --- */
  #encomendas .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #encomendas .section-badge {
    margin: 0 auto 12px;
  }

  #encomendas .section-description {
    text-align: center;
  }

  .steps-section-title {
    text-align: center;
    text-transform: uppercase;
    line-height: 1.15;
  }

  .steps-section-title .title-line-1,
  .steps-section-title .title-line-2 {
    display: block;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card {
    padding: 20px 16px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-desc {
    font-size: 0.95rem;
  }

  /* --- QUALITY SECTION --- */
  .quality-content-box {
    margin-top: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .quality-content-box .section-badge {
    margin: 0 auto 12px;
    text-align: center;
  }

  .quality-content-box .section-title {
    text-align: center;
  }

  .quality-section-title {
    text-align: center;
    line-height: 1.15;
  }

  .quality-section-title .title-line-1,
  .quality-section-title .title-line-2 {
    display: block;
    text-align: center;
  }

  .quality-content-box .section-description {
    text-align: center;
  }

  .quality-feature-item {
    gap: 12px;
  }

  .quality-feature-title {
    font-size: 1rem;
  }

  .quality-feature-desc {
    font-size: 0.9rem;
  }

  /* --- FAQ ACCORDION & CATEGORY FORMATTING --- */
  .faq-container {
    max-width: 100%;
  }

  .faq-trigger {
    min-height: 50px;
    padding: 14px 16px;
    font-size: 0.98rem;
    font-weight: 600;
  }

  .faq-content-inner {
    padding: 0 16px 20px;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .faq-cat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
    width: 100%;
  }

  .faq-cat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    font-size: 0.92rem;
    color: var(--text-primary);
  }

  .faq-cat-badge {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: var(--radius-full);
  }

  /* --- LOCATION & MAP --- */
  .location-card-info {
    padding: 22px 16px;
  }

  .location-actions-group {
    flex-direction: column;
    gap: 10px;
  }

  .location-actions-group .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .map-embed-wrapper {
    height: 300px;
    border-radius: var(--radius-xl);
  }

  /* --- FOOTER MOBILE --- */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   ATACADO SECTION & TIERS STYLING
   ========================================================================== */
.atacado-section {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
}

.atacado-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.atacado-card {
  position: relative;
  background: var(--navy-900);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.atacado-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
  box-shadow: 0 16px 40px rgba(0, 207, 238, 0.15);
}

.atacado-card.popular {
  border-color: var(--cyan-500);
  box-shadow: var(--shadow-cyan);
  background: linear-gradient(180deg, var(--navy-850) 0%, var(--navy-900) 100%);
}

.atacado-card.best-value {
  border-color: var(--magenta-500);
  box-shadow: var(--shadow-magenta);
  background: linear-gradient(180deg, var(--navy-850) 0%, var(--navy-900) 100%);
}

.atacado-popular-ribbon {
  position: absolute;
  top: -14px;
  background: var(--cyan-gradient);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 207, 238, 0.3);
}

.atacado-card-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white-muted);
  margin-bottom: 10px;
}

.atacado-card-badge.cyan {
  color: var(--cyan-400);
}

.atacado-card-badge.magenta {
  color: #ff52b4;
}

.atacado-qty-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.atacado-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.atacado-currency {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cyan-400);
}

.atacado-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.atacado-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white-muted);
}

.atacado-card-desc {
  font-size: 0.92rem;
  color: var(--text-white-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.atacado-savings-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.atacado-savings-tag.standard {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white-muted);
}

.atacado-savings-tag.highlight {
  background: rgba(255, 211, 38, 0.12);
  border: 1px solid rgba(255, 211, 38, 0.3);
  color: var(--yellow-400);
}

.atacado-savings-tag.cyan {
  background: rgba(0, 207, 238, 0.15);
  border: 1px solid rgba(0, 207, 238, 0.4);
  color: var(--cyan-400);
}

.atacado-savings-tag.magenta {
  background: rgba(237, 22, 136, 0.15);
  border: 1px solid rgba(237, 22, 136, 0.4);
  color: #ff52b4;
}

.atacado-cta-banner {
  background: linear-gradient(135deg, rgba(6, 20, 42, 0.9) 0%, rgba(16, 45, 82, 0.9) 100%);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.atacado-cta-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.atacado-cta-desc {
  font-size: 0.98rem;
  color: var(--text-white-muted);
}

@media (max-width: 1024px) {
  .atacado-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .atacado-cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .atacado-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .atacado-card {
    padding: 24px 20px;
  }
  .atacado-cta-banner {
    padding: 24px 20px;
  }
}

/* =========================================================================
   FLAVOR ORDER BUILDER & INTERACTIVE DOCK STYLES
   ========================================================================= */
.flavor-card.has-selected {
  border-color: var(--cyan-400) !important;
  box-shadow: 0 8px 24px rgba(0, 200, 239, 0.25) !important;
}

.flavor-footer-action {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.flavor-qty-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F1F5F9;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 2px 4px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.flavor-card.has-selected .flavor-qty-bar {
  border-color: var(--cyan-400);
  background: var(--navy-950);
}

.flavor-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  border: none;
  background: #FFFFFF;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.flavor-card.has-selected .flavor-qty-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.flavor-qty-btn:hover {
  background: var(--magenta-600) !important;
  color: #FFFFFF !important;
  transform: scale(1.08);
}

.flavor-qty-btn:active {
  transform: scale(0.95);
}

.flavor-qty-val {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--navy-950);
  min-width: 20px;
  text-align: center;
}

.flavor-card.has-selected .flavor-qty-val {
  color: var(--cyan-400);
}

.flavor-add-btn {
  width: 100%;
  min-height: 38px;
  border-radius: var(--radius-full);
  background: var(--navy-950);
  color: #FFFFFF;
  border: 1px solid var(--navy-950);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.flavor-add-btn:hover {
  background: var(--magenta-600);
  border-color: var(--magenta-600);
  box-shadow: 0 4px 14px rgba(239, 33, 140, 0.35);
  transform: translateY(-2px);
}

.flavor-qty-selected-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cyan-600);
  white-space: nowrap;
  padding: 4px 8px;
  background: rgba(0, 200, 239, 0.1);
  border-radius: var(--radius-full);
}

/* --- HOW IT WORKS NOTICE BANNER --- */
.flavor-how-it-works-note {
  margin-top: 10px;
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border: 1px solid rgba(0, 200, 239, 0.3);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.note-text {
  font-size: 0.78rem;
  color: var(--navy-950);
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
}

.note-text strong {
  color: var(--cyan-600);
  font-weight: 800;
}

/* --- BUTTON OVERFLOW PREVENTIONS FOR MOBILE --- */
#calcWppBtn {
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-atacado-cta {
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .btn-atacado-cta {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
  }

  #calcWppBtn {
    font-size: 0.82rem !important;
    padding: 10px 14px !important;
  }
}

/* --- DOCK CONTAINER (Desktop & Mobile Redesign) --- */
.flavor-order-dock {
  margin: 36px auto 0;
  max-width: 960px;
  width: 100%;
  animation: slideUpFade 0.35s ease-out;
}

.dock-inner-card {
  background: linear-gradient(135deg, #071933 0%, #030D1F 100%);
  border: 1px solid rgba(0, 200, 239, 0.4);
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 20px 48px rgba(3, 13, 31, 0.35), 0 0 30px rgba(0, 200, 239, 0.15);
  color: #FFFFFF;
}

.dock-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.dock-badge-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dock-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan-400);
}

.dock-qty-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0;
}

.btn-clear-dock {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white-muted);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-clear-dock:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
  border-color: #F87171;
}

.dock-flavors-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  max-height: 140px;
  overflow-y: auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dock-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.chip-emoji {
  font-size: 0.95rem;
}

.chip-name {
  color: #FFFFFF;
}

.chip-qty {
  color: var(--yellow-400);
  font-weight: 800;
}

.chip-remove {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  margin-left: 2px;
  transition: color 0.15s ease;
}

.chip-remove:hover {
  color: #F87171;
}

.dock-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.dock-pricing-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dock-tier-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan-400);
}

.dock-total-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
}

.btn-dock-action {
  padding: 12px 24px;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* --- BOTTOM HELPER CTA (Desktop & Mobile Redesign) --- */
.flavors-bottom-cta {
  max-width: 960px;
  margin: 36px auto 0;
  padding: 28px 36px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.flavors-bottom-cta-text {
  flex-grow: 1;
}

.flavors-bottom-cta-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.flavors-bottom-cta-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.flavors-bottom-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .dock-inner-card {
    padding: 18px 16px;
    border-radius: 18px;
  }
  .dock-qty-headline {
    font-size: 1.15rem;
  }
  .dock-total-price {
    font-size: 1.25rem;
  }
  .btn-dock-action {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    padding: 12px 16px;
  }
  .flavors-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .flavors-bottom-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}