/* ============================================================
   LILI PIZZAS — Landing Page
   Mobile First · Brand Book V1.1
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --red:        #E51F1F;
  --red-dark:   #C01818;
  --yellow:     #F8D040;
  --orange:     #F39B2A;
  --black:      #1B1410;
  --cream:      #FBE9C2;
  --cream-dark: #F2D9A0;
  --ice-blue:   #BCE3F2;
  --deep-blue:  #1F6B8E;
  --wpp-green:  #25D366;
  --wpp-dark:   #128C7E;
  --white:      #FFFFFF;

  --font-display: 'Bowlby One SC', sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Nunito', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm:  0 2px 8px rgba(27,20,16,.12);
  --shadow-md:  0 8px 24px rgba(27,20,16,.18);
  --shadow-lg:  0 16px 48px rgba(27,20,16,.22);

  --container:  1200px;
  --gap:        clamp(1rem, 4vw, 2rem);
  --section-py: clamp(3.5rem, 8vw, 6rem);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── SVG ICONS ──────────────────────────────────────────── */
.icon-bar    { display: inline-block; width: .9rem; height: .9rem; vertical-align: middle; flex-shrink: 0; }
.icon-inline { display: inline-block; width: 1em;   height: 1em;   vertical-align: middle; margin-right: .25rem; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-white  { color: var(--white); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-wpp {
  background: var(--wpp-green);
  color: var(--white);
}
.btn-wpp:hover { background: var(--wpp-dark); }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover { background: #e8c02e; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--red); }

/* WhatsApp icon SVG inline */
.icon-wpp {
  width: 22px; height: 22px; flex-shrink: 0;
  fill: currentColor;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  box-shadow: none;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  height: 64px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 44px; width: auto; }

.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--yellow); }

.header-cta { font-size: .82rem; padding: .6rem 1.25rem; }

.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  color: var(--white);
}
.menu-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--red);
  padding: 1.5rem clamp(1rem,5vw,2.5rem);
  display: flex; flex-direction: column; gap: 1rem;
  transform: translateY(-120%);
  visibility: hidden;
  transition: transform var(--transition), visibility var(--transition);
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--red);
  min-height: max(100svh, 560px);
  padding-top: 64px;
  overflow: hidden;
  display: flex; align-items: center;
}

/* halftone overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(27,20,16,.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* sunburst */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: repeating-conic-gradient(
    from 0deg at 60% 50%,
    rgba(248,208,64,.06) 0deg 6deg,
    transparent 6deg 12deg
  );
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem;
  padding-block: clamp(2rem,6vw,4rem);
  width: 100%;
}

.hero-text { text-align: center; }

.hero-pretitle {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(0,0,0,.2);
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.hero-title span {
  color: var(--yellow);
  display: block;
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.65;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

.hero-mascote {
  width: min(280px, 80vw);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
  animation: float 4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-cue svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION BASE ───────────────────────────────────────── */
.section { padding-block: var(--section-py); }
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: .85rem;
}
.tag-red    { background: var(--red);    color: var(--white); }
.tag-yellow { background: var(--yellow); color: var(--black); }
.tag-blue   { background: var(--deep-blue); color: var(--white); }
.tag-cream  { background: var(--cream-dark); color: var(--black); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.section-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: .25rem;
}
.section-desc {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  font-weight: 600;
  color: rgba(27,20,16,.7);
  max-width: 56ch;
  margin-top: .75rem;
  line-height: 1.7;
}

/* ─── COMO FUNCIONA ──────────────────────────────────────── */
.como-funciona { background: var(--cream); }
.como-funciona .section-header { margin-bottom: 3rem; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.step-icon  { display: block; width: 1.6rem; height: 1.6rem; margin-bottom: .35rem; }
.step-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--red);
  margin-bottom: .3rem;
}
.step-desc { font-size: .9rem; font-weight: 600; color: rgba(27,20,16,.7); line-height: 1.6; }

/* ─── SERVIÇOS ───────────────────────────────────────────── */
.servicos { background: var(--white); }
.servicos .section-header { margin-bottom: 3rem; }

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.servico-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform var(--transition);
}
.servico-card:hover { transform: translateY(-4px); }

.servico-header {
  padding: 2rem 1.75rem 1.5rem;
  position: relative; overflow: hidden;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.servico-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.12) 1px, transparent 1px);
  background-size: 16px 16px;
}
.servico-card.rodizio  .servico-header { background: var(--red); }
.servico-card.buffet   .servico-header { background: #E8823A; }
.servico-card.congeladas .servico-header { background: var(--deep-blue); }

.servico-mascote {
  position: absolute; bottom: 0; right: 1rem;
  width: clamp(90px, 30%, 130px); z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.3));
  pointer-events: none;
}

.servico-icon   { display: block; width: 2.4rem; height: 2.4rem; position: relative; z-index: 1; margin-bottom: .5rem; }
.servico-titulo {
  font-family: var(--font-display);
  font-size: 1.5rem; text-transform: uppercase;
  color: var(--white);
  position: relative; z-index: 1;
  line-height: 1.1;
}
.servico-sub {
  font-family: var(--font-script);
  font-size: 1rem; color: rgba(255,255,255,.85);
  position: relative; z-index: 1;
  margin-top: .2rem;
}

.servico-body {
  padding: 1.75rem;
  background: var(--white);
  flex: 1;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.servico-desc {
  font-size: .95rem; font-weight: 600;
  color: rgba(27,20,16,.75); line-height: 1.65;
}

/* Pricing Table inside service card */
.pricing-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.pricing-table caption {
  font-family: var(--font-body); font-weight: 800;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red);
  text-align: left; padding-bottom: .5rem;
}
.pricing-table th {
  font-weight: 800; font-size: .78rem; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(27,20,16,.5);
  border-bottom: 2px solid rgba(27,20,16,.08);
  padding: .4rem .5rem;
  text-align: left;
}
.pricing-table td {
  padding: .55rem .5rem;
  border-bottom: 1px solid rgba(27,20,16,.06);
  vertical-align: middle;
}
.pricing-table tr:last-child td { border-bottom: none; }
.price-col { font-weight: 800; color: var(--red); white-space: nowrap; }
.pricing-note {
  font-size: .8rem; font-weight: 700;
  color: rgba(27,20,16,.5);
  background: var(--cream);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
}
.badge-free {
  display: inline-block;
  background: #22c55e; color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem; border-radius: var(--radius-pill);
  margin-left: .35rem;
}
.badge-included {
  display: inline-block;
  background: var(--yellow); color: var(--black);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem; border-radius: var(--radius-pill);
  margin-left: .35rem;
}

.servico-cta { margin-top: auto; }

/* ─── CARDÁPIO ───────────────────────────────────────────── */
.cardapio { background: var(--cream); }
.cardapio .section-header { margin-bottom: 2.5rem; }

.cardapio-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
.cardapio-category {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cat-header {
  background: var(--red);
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.cat-icon { width: 1.4rem; height: 1.4rem; flex-shrink: 0; }
.cat-title {
  font-family: var(--font-display);
  font-size: 1.05rem; text-transform: uppercase;
  color: var(--white);
}
.cat-count { font-size: .8rem; opacity: .8; font-weight: 400; }
.cat-items { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.pizza-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.pizza-name {
  font-family: var(--font-serif);
  font-weight: 700; font-size: 1.05rem;
  color: var(--black);
}
.pizza-ingredientes {
  font-size: .82rem; font-weight: 600;
  color: rgba(27,20,16,.55);
  margin-top: .15rem;
  line-height: 1.5;
}
.pizza-dots {
  flex: 1; border-bottom: 2px dotted rgba(27,20,16,.15);
  margin: 0 .5rem; align-self: flex-end; margin-bottom: 6px;
}

/* Mascote flutuante no cardápio */
.cardapio-mascote-wrap {
  display: flex; justify-content: center; margin-top: 2.5rem;
}
.cardapio-mascote-wrap img { width: min(260px,70vw); filter: drop-shadow(0 16px 32px rgba(0,0,0,.15)); }

/* ─── CONGELADAS ─────────────────────────────────────────── */
.congeladas-section {
  background: var(--ice-blue);
  position: relative; overflow: hidden;
  padding-block: var(--section-py);
}
.congeladas-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(31,107,142,.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.congeladas-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 2.5rem;
  align-items: flex-start;
}
.congeladas-text .section-title { color: var(--deep-blue); }
.congeladas-text .section-subtitle { color: var(--black); }
.congeladas-text .section-desc { color: rgba(27,20,16,.7); }

.congeladas-cards {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.kit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: transform var(--transition);
}
.kit-card:hover { transform: translateY(-3px); }
.kit-card.destaque {
  background: var(--deep-blue); color: var(--white);
  box-shadow: var(--shadow-md);
}
.kit-card.destaque .kit-name { color: var(--ice-blue); }
.kit-card.destaque .kit-desc { color: rgba(255,255,255,.7); }
.kit-badge {
  position: absolute; top: -8px; left: 1rem;
  background: var(--red); color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: var(--radius-pill);
}
.kit-wrap { position: relative; }
.kit-icon   { display: block; width: 2rem; height: 2rem; margin-bottom: .35rem; }
.kit-name   {
  font-family: var(--font-display);
  font-size: 1.1rem; text-transform: uppercase;
  color: var(--deep-blue);
}
.kit-desc   { font-size: .85rem; font-weight: 600; color: rgba(27,20,16,.6); margin-top: .2rem; }
.kit-price  {
  text-align: right; flex-shrink: 0;
}
.kit-price-valor {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--red);
}
.kit-card.destaque .kit-price-valor { color: var(--yellow); }
.kit-price-label { font-size: .72rem; font-weight: 700; color: rgba(27,20,16,.5); text-transform: uppercase; letter-spacing: .06em; }
.kit-card.destaque .kit-price-label { color: rgba(255,255,255,.6); }

.congeladas-steps {
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.congeladas-steps-title {
  font-family: var(--font-display);
  font-size: .95rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}
.freeze-steps { display: flex; flex-direction: column; gap: .75rem; }
.freeze-step {
  display: flex; align-items: center; gap: .85rem;
  font-size: .9rem; font-weight: 700; color: var(--black);
}
.freeze-step-num {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--deep-blue); color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display); font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
}

.congeladas-mascote {
  width: min(240px,65vw);
  margin-inline: auto;
  filter: drop-shadow(0 16px 32px rgba(31,107,142,.25));
}

/* ─── DEPOIMENTOS ────────────────────────────────────────── */
.depoimentos { background: var(--white); }
.depoimentos .section-header { margin-bottom: 2.5rem; }

.depo-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.depo-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.depo-card::before {
  content: '"';
  position: absolute; top: .5rem; left: 1.25rem;
  font-family: var(--font-serif); font-size: 5rem;
  color: var(--red); opacity: .15; line-height: 1;
  pointer-events: none;
}
.depo-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: .75rem; }
.depo-text {
  font-family: var(--font-serif);
  font-style: italic; font-size: 1rem;
  color: rgba(27,20,16,.8); line-height: 1.7;
  margin-bottom: 1rem;
}
.depo-author { display: flex; align-items: center; gap: .75rem; }
.depo-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.depo-name { font-weight: 800; font-size: .9rem; }
.depo-local { font-size: .8rem; color: rgba(27,20,16,.5); font-weight: 600; }

/* mascote depoimentos */
.depo-mascote-wrap { display: flex; justify-content: center; margin-top: 3rem; }
.depo-mascote-wrap img { width: min(220px,60vw); filter: drop-shadow(0 12px 24px rgba(0,0,0,.12)); }

/* ─── CTA FINAL ──────────────────────────────────────────── */
.cta-final {
  background: var(--red);
  padding-block: var(--section-py);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(27,20,16,.15) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(248,208,64,.05) 0deg 8deg,
    transparent 8deg 16deg
  );
  pointer-events: none;
}
.cta-final-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white); text-transform: uppercase;
}
.cta-final-title span { color: var(--yellow); }
.cta-final-script {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255,255,255,.85);
}
.cta-final-desc {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 600; color: rgba(255,255,255,.8);
  max-width: 44ch; line-height: 1.65;
}
.cta-final-contact {
  font-family: var(--font-mono);
  font-size: .9rem; letter-spacing: .08em;
  color: var(--yellow); font-weight: 700;
}
.cta-final-mascote {
  width: min(200px, 55vw);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding-block: 3rem 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand .logo-footer { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; font-weight: 600; line-height: 1.7; color: rgba(255,255,255,.6); }

.footer-heading {
  font-family: var(--font-body);
  font-weight: 800; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: .85rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }

.footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 600; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .6; }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .78rem; color: rgba(255,255,255,.35);
  font-weight: 600;
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────── */
.float-wpp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wpp-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wpp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.float-wpp svg { width: 30px; height: 30px; fill: var(--white); }

@media (min-width: 1024px) {
  .float-wpp { width: 64px; height: 64px; }
  .float-wpp svg { width: 34px; height: 34px; }
}

/* ─── FADE-IN ANIMATION ──────────────────────────────────── */
/* JS adds .js-scroll to <body>; without JS everything stays visible */
.fade-in { transition: opacity .6s ease, transform .6s ease; }
body.js-scroll .fade-in          { opacity: 0; transform: translateY(24px); }
body.js-scroll .fade-in.visible  { opacity: 1; transform: translateY(0); }

/* ─── VALORES / DESTAQUES BAR ────────────────────────────── */
.valores-bar {
  background: var(--yellow);
  padding: .9rem 0;
  overflow: hidden;
}
.valores-track {
  display: flex; gap: 2.5rem; align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.valores-track span {
  font-family: var(--font-display);
  font-size: .85rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--black);
  flex-shrink: 0;
}
.valores-track .dot { color: var(--red); font-size: 1.2rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── RESPONSIVE — tablet 768px ─────────────────────────── */
@media (min-width: 768px) {
  .main-nav { display: flex; }
  .menu-toggle { display: none; }

  .hero-inner {
    flex-direction: row; justify-content: space-between; align-items: center;
    text-align: left;
  }
  .hero-text { text-align: left; flex: 1; max-width: 55%; }
  .hero-ctas { justify-content: flex-start; }
  .hero-desc { margin-inline: 0; }
  .hero-mascote { width: min(340px, 40vw); }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .cardapio-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }

  .congeladas-inner {
    flex-direction: row; align-items: flex-start;
  }
  .congeladas-text { flex: 1; }
  .congeladas-right { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
  .congeladas-mascote { width: min(200px, 30vw); margin-inline: 0; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ─── RESPONSIVE — desktop 1024px ───────────────────────── */
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(5, 1fr); }
  .steps-grid .step-card { flex-direction: column; align-items: flex-start; }

  .servicos-grid { grid-template-columns: repeat(3, 1fr); }
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
  .congeladas-cards { grid-template-columns: repeat(3, 1fr); }

  .hero-mascote { width: min(400px, 38vw); }
}
