﻿/* ============================================================
   MR. CROSS BIER — Creative Brewery Layout
   Cervejaria Artesanal · Marau-RS
   Brand Colors:
     Dark BG:      #0a0a0a / #111111 / #181818
     Brand Green:  #029040  (CTA / destaque)
     Green Dark:   #026e30
     Gold:         #c8a96e  (decorativo)
     Text:         #e8e8e8
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:         #0a0a0a;
  --clr-bg-2:       #111111;
  --clr-surface:    #161616;
  --clr-surface-2:  #1f1f1f;
  --clr-surface-3:  #2a2a2a;
  --clr-border:     #2e2e2e;
  --clr-border-lt:  #3a3a3a;
  --clr-text:       #e8e8e8;
  --clr-text-muted: #888888;
  --clr-white:      #f5f5f5;

  /* Brand */
  --clr-green:      #029040;
  --clr-green-dark: #026e30;
  --clr-green-glow: rgba(2,144,64,0.35);
  --clr-green-soft: rgba(2,144,64,0.12);
  --clr-gold:       #c8a96e;
  --clr-gold-dark:  #a8893e;
  --clr-wapp:       #25d366;

  --font-heading:  'Cinzel', serif;
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --transition: 0.3s ease;
  --shadow-card: 0 6px 32px rgba(0,0,0,0.55);
  --shadow-green: 0 4px 24px var(--clr-green-glow);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
p     { color: var(--clr-text-muted); }
strong{ color: var(--clr-text); }

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

.section { padding: 96px 0; }

/* ── Tipografia shared ────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--clr-green);
  border: 1px solid rgba(2,144,64,0.35);
  background: rgba(2,144,64,0.07);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* Dentro do grid 2-col do delivery, o título fica à esquerda.
   Em telas menores, o 1024px breakpoint centraliza automaticamente. */
.section-header-left {
  margin-bottom: 36px;
  text-align: left;
}
.section-header-left .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* ── Botoes ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg    { padding: 15px 34px; font-size: 0.95rem; }
.btn-xl    { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm    { padding: 9px 20px;  font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--clr-green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--clr-green-dark);
  box-shadow: 0 6px 32px var(--clr-green-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--clr-green);
  border: 2px solid var(--clr-green);
}
.btn-outline-green:hover {
  background: var(--clr-green);
  color: #fff;
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.btn-nav-cta { padding: 9px 20px; font-size: 0.82rem; }

/* Instagram — gradiente oficial */
.btn-insta {
  background: transparent;
  color: #e1306c;
  border: none;
  position: relative;
  isolation: isolate;
}

/* Borda gradiente via pseudo-elemento + mask */
.btn-insta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  padding: 2px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}

/* Ícone do Instagram com gradiente */
.btn-insta .fa-instagram {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-insta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(220,39,67,0.45);
  transform: translateY(-2px);
}

.btn-insta:hover .fa-instagram {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #fff;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 48px; width: auto; object-fit: contain;
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-green);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--clr-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--clr-bg);
  overflow: hidden;
}

.hero-bg-logo {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.hero-bg-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.06;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(2,144,64,0.08) 0%, transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,0) 60%, var(--clr-bg) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 28px 40px;
  width: 100%;
}

.hero-text { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-title-line1 {
  display: block;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--clr-white);
}

.hero-title-line2 {
  display: block;
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--clr-green);
  text-shadow: 0 0 60px var(--clr-green-glow);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-logo-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-ring {
  position: relative;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(2,144,64,0.12) 0%, transparent 70%);
  border: 1px solid rgba(2,144,64,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 4s ease-in-out infinite;
}

.hero-logo-ring::before {
  content: '';
  position: absolute; inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(2,144,64,0.15);
  animation: spin-slow 30s linear infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 40px var(--clr-green-glow); }
  50%       { box-shadow: 0 0 80px rgba(2,144,64,0.5); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-logo-main {
  width: 75%; height: auto; object-fit: contain;
  filter: drop-shadow(0 4px 32px rgba(2,144,64,0.4));
}

.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 24px 28px;
}

.hero-stat {
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--clr-green);
  letter-spacing: 1px;
}

.hero-stat span {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.hero-stat-divider { width: 1px; height: 36px; background: var(--clr-border); }

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--clr-green);
  padding: 10px 0;
  user-select: none;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PRODUTOS ─────────────────────────────────────────────── */
.produtos-section { background: var(--clr-bg); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.produto-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.produto-card.animate-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease,
              box-shadow var(--transition), border-color var(--transition);
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: var(--clr-border-lt);
}

.produto-header-band {
  background: var(--band-clr, var(--clr-green));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.produto-style-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}

.produto-header-band > i { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.produto-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.produto-icon-wrap {
  width: 64px; height: 64px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--clr-gold);
}

.produto-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.produto-info p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 12px; }

.produto-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}

.produto-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-green);
  background: var(--clr-green-soft);
  border: 1px solid rgba(2,144,64,0.25);
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.produto-abv { font-size: 0.72rem; color: var(--clr-text-muted); letter-spacing: 1px; }

.produto-notas { display: flex; flex-direction: column; gap: 4px; }

.produto-notas li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--clr-text-muted);
}
.produto-notas li i { font-size: 0.4rem; color: var(--clr-green); }

.produtos-cta { text-align: center; margin-top: 52px; }

/* ── PROCESSO STRIP ───────────────────────────────────────── */
.processo-strip {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 36px 0;
}

.processo-title {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 24px;
}

.processo-steps {
  display: flex; align-items: center;
  justify-content: center;
  gap: 20px; flex-wrap: wrap;
}

.processo-step {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
  min-width: 100px;
}

.processo-step i    { font-size: 1.5rem; color: var(--clr-gold); }
.processo-step span { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--clr-text-muted); }

.processo-step:hover         { border-color: var(--clr-green); background: var(--clr-green-soft); }
.processo-step--highlight    { border-color: var(--clr-green); background: var(--clr-green-soft); }
.processo-step--highlight i  { color: var(--clr-green); }
.processo-step--highlight span { color: var(--clr-green); }

.processo-arrow { color: var(--clr-border-lt); font-size: 0.8rem; }

/* ── DELIVERY ─────────────────────────────────────────────── */
.delivery-section {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.delivery-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18vw;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 8px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}

.delivery-cta-card {
  background: var(--clr-green);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-green), 0 12px 48px rgba(0,0,0,0.5);
  position: relative; overflow: hidden;
}

.delivery-cta-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

.delivery-cta-logo {
  width: 80px; height: 80px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.delivery-cta-logo img { width: 100%; height: 100%; object-fit: contain; }

.delivery-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 0.9;
  letter-spacing: 1px;
}

.delivery-cta-card p { color: rgba(255,255,255,0.82); font-size: 0.98rem; line-height: 1.65; }

.delivery-cta-card .btn-primary {
  background: #fff;
  color: var(--clr-green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  align-self: flex-start;
}
.delivery-cta-card .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
}

.delivery-info-col { display: flex; flex-direction: column; gap: 32px; }

.steps-vertical { display: flex; flex-direction: column; }

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

.step-num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: var(--clr-green);
  color: #fff;
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.step-content strong { display: block; font-size: 0.95rem; color: var(--clr-white); margin-bottom: 4px; }
.step-content p      { font-size: 0.88rem; margin: 0; }

.step-connector { width: 2px; height: 24px; background: var(--clr-border); margin-left: 17px; }

.delivery-pills { display: flex; flex-wrap: wrap; gap: 10px; }

.delivery-pills li {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.delivery-pills li i { color: var(--clr-green); }
.delivery-pills li:hover { border-color: var(--clr-green); color: var(--clr-white); }

/* ── CALCULADORA DE CONSUMO ───────────────────────────────── */
.calc-wrapper {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--clr-border);
  position: relative;
  z-index: 1;
}

.calc-header {
  text-align: center;
  margin-bottom: 48px;
}
.calc-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--clr-white);
  margin: 10px 0 8px;
}
.calc-main-sub {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

.calc-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.calc-controls-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.calc-label i { color: var(--clr-green); }

/* Stepper */
.calc-stepper {
  display: flex;
  align-items: stretch;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}

.calc-step {
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 1.4rem;
  line-height: 1;
  width: 52px; height: 52px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.calc-step:hover { background: var(--clr-green); color: #fff; }

.calc-num-input {
  background: none;
  border: none;
  border-left: 1px solid var(--clr-border);
  border-right: 1px solid var(--clr-border);
  color: var(--clr-white);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-align: center;
  width: 90px; height: 52px;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.calc-num-input::-webkit-inner-spin-button,
.calc-num-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Intensity buttons */
.calc-intensity-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cib {
  background: var(--clr-surface-2);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  transition: all var(--transition);
  color: var(--clr-text);
}
.cib:hover { border-color: var(--clr-green); transform: translateY(-2px); }
.cib.active { border-color: var(--clr-green); background: var(--clr-green-soft); }

.cib-icon { font-size: 1.4rem; line-height: 1; }
.cib-info { display: flex; flex-direction: column; gap: 1px; }
.cib-name { font-size: 0.88rem; font-weight: 700; color: var(--clr-white); }
.cib-lpp  { font-size: 0.76rem; color: var(--clr-green); font-weight: 600; }
.cib-desc { font-size: 0.74rem; color: var(--clr-text-muted); line-height: 1.4; margin-top: 2px; }

/* Toggle */
.calc-toggle-label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  width: fit-content;
}
.calc-toggle-wrap {
  position: relative;
  display: inline-block;
  width: 48px; height: 26px;
  flex-shrink: 0;
}
.calc-toggle-input {
  position: absolute;
  opacity: 0; width: 0; height: 0;
}
.calc-toggle-track {
  position: absolute; inset: 0;
  background: var(--clr-surface-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  transition: background var(--transition), border-color var(--transition);
}
.calc-toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--clr-text-muted);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}
.calc-toggle-input:checked ~ .calc-toggle-track {
  background: var(--clr-green);
  border-color: var(--clr-green);
}
.calc-toggle-input:checked ~ .calc-toggle-thumb {
  transform: translateX(22px);
  background: #fff;
}
.calc-toggle-text {
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: var(--clr-text-muted);
}
.calc-toggle-text strong { color: var(--clr-white); }
.calc-temp-badge {
  font-size: 0.72rem; font-weight: 700;
  color: var(--clr-green);
  background: var(--clr-green-soft);
  border: 1px solid rgba(2,144,64,0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Result column */
.calc-result-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-result-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-res-top { display: flex; flex-direction: column; gap: 6px; }

.calc-res-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-green);
  background: var(--clr-green-soft);
  border: 1px solid rgba(2,144,64,0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.calc-res-number-wrap {
  display: flex; align-items: baseline; gap: 8px; margin-top: 8px;
}
.calc-res-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 5.5rem);
  color: var(--clr-green);
  line-height: 1;
  transition: all 0.25s ease;
}
.calc-res-unit { font-size: 1.1rem; color: var(--clr-text-muted); font-weight: 500; }
.calc-res-scenario { font-size: 0.78rem; color: var(--clr-text-muted); line-height: 1.5; }

.calc-res-body { display: flex; flex-direction: column; gap: 10px; }

.calc-res-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  padding: 12px 14px;
  background: var(--clr-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  line-height: 1.5;
}
.calc-res-row i { color: var(--clr-green); margin-top: 2px; flex-shrink: 0; }
.calc-res-row strong { color: var(--clr-white); }

.calc-res-row--margin {
  border-color: rgba(2,144,64,0.3);
  background: var(--clr-green-soft);
}

.calc-cta-btn { width: 100%; justify-content: center; }

.calc-info-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(200,169,110,0.07);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.calc-info-box i { color: var(--clr-gold); margin-top: 2px; flex-shrink: 0; }
.calc-info-box strong { color: var(--clr-gold); }

/* ── A CERVEJARIA ─────────────────────────────────────────── */
.cervejaria-section { background: var(--clr-bg); }

.cervejaria-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
}

.cervejaria-header .section-title { margin-bottom: 0; }

.cervejaria-header-desc {
  max-width: 380px;
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  text-align: right;
}

.cervejaria-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 64px;
}

.cervejaria-text-col h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--clr-white);
  margin-bottom: 18px;
}
.cervejaria-text-col p { font-size: 0.96rem; line-height: 1.8; margin-bottom: 14px; }

.cervejaria-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.value-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.value-pill i       { color: var(--clr-green); font-size: 0.85rem; }
.value-pill:hover   { border-color: var(--clr-green); color: var(--clr-white); background: var(--clr-green-soft); }

.cervejaria-visual-col { display: flex; justify-content: center; }

.cervejaria-logo-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  width: 100%; max-width: 400px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.cervejaria-logo-block img { width: 100%; height: 100%; object-fit: cover; }

.location-bar {
  display: flex;
  align-items: center;
  gap: 32px; flex-wrap: wrap;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 24px;
}

.location-bar-info {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 160px;
}

.location-bar-info > i { font-size: 1.2rem; color: var(--clr-green); width: 20px; text-align: center; }

.location-bar-info div { display: flex; flex-direction: column; }
.location-bar-info strong { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; }
.location-bar-info span, .location-bar-info a { font-size: 0.82rem; color: var(--clr-text-muted); transition: color var(--transition); }
.location-bar-info a:hover { color: var(--clr-green); }

.location-map-full {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.location-map-full iframe { width: 100%; height: 100%; border: 0; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 96px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(2,144,64,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(2,144,64,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-banner-text .section-tag { margin-bottom: 16px; }

.cta-banner-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-banner-text > p { font-size: 1.05rem; max-width: 480px; margin-bottom: 28px; }

.cta-banner-contacts { display: flex; flex-wrap: wrap; gap: 20px; }

.cta-contact-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.cta-contact-item i   { font-size: 1.1rem; color: var(--clr-green); }
.cta-contact-item:hover { color: var(--clr-white); }

.cta-banner-action {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  text-align: center; min-width: 260px;
}

.cta-hint { font-size: 0.75rem; color: var(--clr-text-muted); letter-spacing: 1px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--clr-surface); }

.footer-top { border-bottom: 1px solid var(--clr-border); padding: 48px 0; }

.footer-top-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }

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

.footer-logo-img { height: 44px; width: auto; object-fit: contain; }

.footer-brand p { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--clr-text-muted); }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }

.footer-links a {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-white); }

.footer-social { display: flex; gap: 12px; margin-left: auto; }

.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--clr-text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.75rem; letter-spacing: 1px; color: var(--clr-text-muted); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--clr-wapp);
  color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ── ANIMACOES INTERSECTION OBSERVER ─────────────────────── */
.produto-card,
.delivery-card,
.section-header,
.section-header-left,
.delivery-cta-card,
.delivery-info-col,
.cervejaria-text-col,
.cervejaria-header,
.location-bar,
.cta-banner-text,
.cta-banner-action,
.processo-strip {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.produto-card.animate-in,
.delivery-card.animate-in,
.section-header.animate-in,
.section-header-left.animate-in,
.delivery-cta-card.animate-in,
.delivery-info-col.animate-in,
.cervejaria-text-col.animate-in,
.cervejaria-header.animate-in,
.location-bar.animate-in,
.cta-banner-text.animate-in,
.cta-banner-action.animate-in,
.processo-strip.animate-in {
  opacity: 1;
  transform: none;
}

.produto-card:nth-child(1) { transition-delay: 0.05s; }
.produto-card:nth-child(2) { transition-delay: 0.15s; }
.produto-card:nth-child(3) { transition-delay: 0.25s; }
.produto-card:nth-child(4) { transition-delay: 0.35s; }

.delivery-info-col { transition-delay: 0.15s; }

/* ── RESPONSIVO 1024px ────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px; padding-bottom: 30px;
  }
  .hero-text { align-items: center; }
  .hero-subtitle { max-width: 560px; }
  .hero-logo-side { order: -1; }
  .hero-logo-ring { width: 260px; height: 260px; }

  .delivery-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Reordenar: info (título + passos) primeiro, card CTA embaixo */
  .delivery-info-col { order: -1; }

  /* Calculadora */
  .calc-card { grid-template-columns: 1fr; }
  .calc-result-col { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .calc-result-card { flex: 1; min-width: 300px; }
  .calc-info-box { flex: 1 1 100%; }

  /* Título da seção delivery centralizado quando em coluna única */
  .section-header-left { text-align: center; }

  .cervejaria-split { grid-template-columns: 1fr; gap: 40px; }
  .cervejaria-visual-col { display: none; }

  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-action { align-items: center; }
  .cta-banner-text   { text-align: center; }
  .cta-banner-contacts { justify-content: center; }

  .cervejaria-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .cervejaria-header-desc { text-align: center; max-width: 100%; }
  .cervejaria-text-col { text-align: center; }
  .cervejaria-values { justify-content: center; }
}

/* ── RESPONSIVO 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* ── Nav ── */
  .nav-links   { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger   { display: flex; }

  .nav-links.active {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-content: center; align-items: center;
    gap: 36px; z-index: 998;
  }
  .nav-links.active a { font-size: 1.3rem; letter-spacing: 3px; }

  /* ── Hero stats ── */
  .hero-stats { flex-wrap: wrap; gap: 0; justify-content: center; padding: 20px 12px; }
  .hero-stat  { padding: 10px 18px; flex: 1 1 40%; }
  .hero-stat strong { font-size: 1.25rem; }
  .hero-stat-divider { display: none; }

  /* ── Produtos ── */
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .produtos-cta  { margin-top: 36px; }

  /* ── Processo — scroll horizontal no mobile ── */
  .processo-strip { overflow: hidden; padding: 28px 0; }
  .processo-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 20px 12px;
    justify-content: flex-start;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .processo-steps::-webkit-scrollbar { display: none; }
  .processo-step  { flex-shrink: 0; min-width: 76px; padding: 12px 14px; }
  .processo-arrow { display: block; flex-shrink: 0; }

  /* ── Delivery ── */
  .delivery-cta-card { padding: 32px 24px; }
  .delivery-cta-card .btn-primary { width: 100%; justify-content: center; }
  .delivery-pills { justify-content: center; }
  .steps-vertical { max-width: 420px; margin: 0 auto; }
  /* Calculadora */
  .calc-wrapper { margin-top: 52px; padding-top: 40px; }
  .calc-card { padding: 28px 20px; gap: 28px; }
  .calc-header { margin-bottom: 32px; }
  .calc-result-col { flex-direction: column; }

  /* ── A Cervejaria ── */
  .cervejaria-text-col h3 { text-align: center; }
  .cervejaria-text-col p  { text-align: center; }

  /* ── CTA Banner ── */
  .cta-banner { padding: 64px 0; }
  .cta-banner-contacts { flex-direction: column; align-items: center; gap: 14px; }
  .cta-banner-action .btn-xl { width: 100%; justify-content: center; }

  /* ── Location ── */
  .location-bar { flex-direction: column; gap: 16px; align-items: flex-start; }
  .location-map-full { height: 260px; }

  /* ── Footer ── */
  .footer-top-inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .footer-brand { align-items: center; }
  .footer-social { margin-left: 0; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
  .footer-bottom p { font-size: 0.72rem; }
}

/* ── RESPONSIVO 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section   { padding: 52px 0; }

  /* Hero */
  .hero-logo-ring { width: 180px; height: 180px; }
  .hero-title-line1 { font-size: 2.8rem; }
  .hero-title-line2 { font-size: 4.2rem; }
  .hero-subtitle { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-stat  { flex: 1 1 100%; border-top: 1px solid var(--clr-border); padding: 12px 0; }

  /* Produtos */
  .produtos-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Processo */
  .processo-step i    { font-size: 1.2rem; }
  .processo-step span { font-size: 0.7rem; }
  .processo-step      { min-width: 68px; padding: 10px 12px; }

  /* Delivery */
  .delivery-cta-title { font-size: 2rem; }
  .delivery-bg-text   { display: none; }
  /* Calculadora */
  .calc-card { padding: 20px 16px; }
  .calc-intensity-group { grid-template-columns: 1fr; }
  .cib { flex-direction: row; align-items: center; gap: 14px; }
  .cib-desc { display: none; }

  /* Section tags e títulos */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* CTA */
  .cta-banner-action .btn-xl { font-size: 0.88rem; padding: 14px 20px; }
  .cta-hint { text-align: center; }

  /* Location */
  .location-bar { padding: 16px; }
  .location-map-full { height: 220px; }

  /* Footer */
  .footer-links { gap: 12px 18px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.3rem; }
}
