/*
 * ================================================
 *  Bio Mundo — Mercado Saudável
 *  Landing Page — Estilos
 * ================================================
 *
 *  Arquitetura:
 *    index.html      → estrutura e conteúdo
 *    css/style.css   → estilos (este arquivo)
 *    js/main.js      → comportamento
 *    assets/         → favicon e imagens
 *
 *  Seções deste arquivo:
 *    Reset & Base → Variáveis → Utilitários
 *    Floating Button → Nav → Hero
 *    Proposta de Valor → Identificação → Categorias
 *    Como Comprar → Prova Social → Diferenciais
 *    Oferta → Apps → Galeria → Localização
 *    FAQ → CTA Final → Footer → Responsivo
 * ================================================
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --green:       #1B6B35;
  --green-dark:  #00512A;
  --green-light: #2E8B4A;
  --green-pale:  #f0f7f2;
  --brown:       #5B3416;
  --brown-light: #7a4820;
  --orange:      #E8A020;
  --orange-pale: #fdf6ec;
  --white:       #ffffff;
  --off-white:   #f7f6f1;
  --text:        #1a1a18;
  --text-muted:  #5a5a50;
  --text-light:  #8a8a80;
  --border:      rgba(0,0,0,0.08);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.14);
  --wa:          #25D366;
  --radius:      10px;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.label {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.02; letter-spacing: 1px;
  color: var(--text); margin-bottom: 18px;
}
.title .green { color: var(--green-dark); }
.title .brown { color: var(--brown); }
.sub {
  font-size: 18px; color: var(--text-muted);
  max-width: 540px; line-height: 1.7;
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── FLOATING WA ── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  font-weight: 800; font-size: 15px;
  padding: 13px 22px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s infinite;
  transition: transform .2s;
}
.float-wa:hover { transform: translateY(-3px); }
.float-wa svg { width: 21px; height: 21px; flex-shrink: 0; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 90px; width: auto; display: block; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 700; color: var(--text-muted);
  text-decoration: none; padding: 8px 14px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--green-dark); background: var(--green-pale); }
.btn-wa-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  font-weight: 800; font-size: 14px;
  padding: 10px 20px; border-radius: 6px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-wa-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.4); }
.btn-wa-sm svg { width: 18px; height: 18px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 180px 5% 80px;
  background:
    radial-gradient(ellipse 55% 70% at 100% 60%, rgba(27,107,53,.07) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 5% 90%,  rgba(232,160,32,.06) 0%, transparent 55%),
    var(--off-white);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale);
  border: 1px solid rgba(27,107,53,.2);
  color: var(--green-dark);
  font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 4px;
  margin-bottom: 22px;
}
.hero-badge::before { content:'●'; font-size:8px; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  line-height: .95; letter-spacing: 1.5px;
  color: var(--text); margin-bottom: 20px;
}
.hero h1 .accent { color: var(--green-dark); display: block; }
.hero-sub {
  font-size: 18px; color: var(--text-muted);
  line-height: 1.75; max-width: 460px; margin-bottom: 36px;
}
.hero-delivery {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--green-dark);
  border-radius: 8px; padding: 12px 20px;
  font-size: 16px; font-weight: 800;
  color: var(--green-dark); margin-bottom: 32px;
}
.hero-delivery .clock { font-size: 22px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  font-weight: 800; font-size: 17px;
  padding: 16px 32px; border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.btn-primary svg { width: 22px; height: 22px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--green-dark); color: var(--green-dark);
  font-weight: 800; font-size: 16px;
  padding: 14px 28px; border-radius: 7px;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--green-dark); color: #fff; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--green-dark); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

.hero-visual {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 540px; box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-visual-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); border-radius: 10px;
  padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-visual-badge .icon { font-size: 28px; }
.hero-visual-badge strong { display: block; font-size: 15px; color: var(--text); }
.hero-visual-badge span { font-size: 12px; color: var(--text-muted); }

/* ── PROPOSTA DE VALOR ── */
.valor-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
  border-radius: 12px; overflow: hidden;
  margin-top: 56px;
}
.valor-item {
  background: var(--white); padding: 32px 24px;
  transition: background .2s;
}
.valor-item:hover { background: var(--green-pale); }
.valor-icon { font-size: 36px; margin-bottom: 14px; }
.valor-item h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.valor-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ── CATEGORIAS ── */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.cat-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-img { height: 200px; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover .cat-img img { transform: scale(1.05); }
.cat-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cat-tag { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 6px; }
.cat-body h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.cat-body p { font-size: 14px; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 18px; }
.btn-cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-dark); color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: 6px;
  text-decoration: none; align-self: flex-start;
  transition: background .2s;
}
.btn-cat:hover { background: var(--green-light); }

/* ── COMO COMPRAR ── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.6% + 16px); right: calc(16.6% + 16px);
  height: 2px; background: linear-gradient(90deg, var(--green-dark), var(--green-light), var(--green-dark));
  opacity: .2;
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(27,107,53,.3);
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-cta { margin-top: 48px; text-align: center; }
.delivery-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-pale); border: 1.5px solid var(--orange);
  border-radius: 8px; padding: 12px 24px;
  font-size: 16px; font-weight: 800; color: var(--brown);
  margin-bottom: 24px;
}

/* ── PROVA SOCIAL ── */
.reviews-top {
  display: flex; align-items: center; gap: 40px;
  margin-top: 56px; margin-bottom: 40px; flex-wrap: wrap;
}

.depo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.depo-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow-sm); position: relative;
}
.depo-card::after {
  content: '"';
  position: absolute; top: 14px; right: 18px;
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  color: rgba(27,107,53,.08); line-height: 1;
}
.depo-stars { color: #FFB800; font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.depo-text { font-size: 16px; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.depo-author { display: flex; align-items: center; gap: 10px; }
.depo-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff; flex-shrink: 0;
}
.depo-name { font-weight: 800; font-size: 16px; color: var(--green-dark); }
.depo-meta { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.placeholder-note { font-size: 12px; color: rgba(27,107,53,.5); font-style: italic; text-align: center; margin-top: 16px; }

/* ── DIFERENCIAIS ── */
.dif-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.dif-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.dif-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dif-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--green-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.dif-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.dif-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── OFERTA ── */
.oferta-box {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  border-radius: 16px; padding: 60px 48px;
  text-align: center; position: relative; overflow: hidden;
  margin-top: 56px;
}
.oferta-box::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.oferta-box::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.oferta-tag {
  display: inline-block; background: var(--orange);
  color: var(--white); font-weight: 800; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 3px; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.oferta-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px); line-height: 1.05;
  color: #fff; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.oferta-box p {
  font-size: 17px; color: rgba(255,255,255,.8);
  max-width: 500px; margin: 0 auto 32px; line-height: 1.7;
  position: relative; z-index: 1;
}
.oferta-items {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 36px;
  position: relative; z-index: 1;
}
.oferta-item {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 16px 22px; text-align: center;
}
.oferta-item .oi-icon { font-size: 28px; margin-bottom: 6px; }
.oferta-item strong { display: block; color: #fff; font-size: 15px; font-weight: 800; }
.oferta-item span { font-size: 13px; color: rgba(255,255,255,.65); }
.btn-wa-lg {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa); color: #fff;
  font-weight: 800; font-size: 18px;
  padding: 18px 44px; border-radius: 8px;
  text-decoration: none; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-wa-lg:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.btn-wa-lg svg { width: 24px; height: 24px; }
.oferta-note { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 16px; font-style: italic; position: relative; z-index: 1; }

/* ── GALERIA ── */
.galeria-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px; margin-top: 48px;
}
.galeria-item { overflow: hidden; border-radius: 10px; }
.galeria-item.big { grid-row: span 2; }
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.galeria-item:hover img { transform: scale(1.04); }

/* ── LOCALIZAÇÃO ── */
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 56px; align-items: start;
}
.loc-info { }
.loc-item { display: flex; gap: 16px; margin-bottom: 28px; }
.loc-ico {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0;
}
.loc-item-text strong { display: block; font-weight: 800; font-size: 15px; margin-bottom: 3px; }
.loc-item-text p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.loc-img {
  border-radius: 12px; overflow: hidden; height: 340px;
  box-shadow: var(--shadow-md); position: relative;
}
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 24px 20px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.loc-img-overlay a {
  color: #fff; font-weight: 800; font-size: 14px;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
}
.loc-img-overlay a:hover { text-decoration: underline; }
.loc-apps {
  display: flex; gap: 10px; align-items: center;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border);
}
.loc-apps span { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.app-badge {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 12px;
  font-size: 13px; font-weight: 700; color: var(--text);
  text-decoration: none; transition: background .2s;
}
.app-badge:hover { background: var(--green-pale); color: var(--green-dark); }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--green-dark); padding: 88px 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: 'BIO MUNDO';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 18vw, 200px);
  color: rgba(255,255,255,.04);
  white-space: nowrap; letter-spacing: 10px; pointer-events: none;
}
.cta-final h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  color: #fff; line-height: 1; margin-bottom: 14px;
  position: relative;
}
.cta-final p {
  font-size: 18px; color: rgba(255,255,255,.7);
  max-width: 480px; margin: 0 auto 36px;
  position: relative;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--green-dark);
  font-weight: 800; font-size: 16px;
  padding: 16px 32px; border-radius: 7px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.btn-white svg { width: 22px; height: 22px; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.4); color: #fff;
  font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: 7px;
  text-decoration: none; transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin-top: 52px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--text);
  user-select: none; transition: color .2s;
}
.faq-q:hover { color: var(--green-dark); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off-white); display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-q { color: var(--green-dark); }
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--green-dark); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 180px; padding-bottom: 18px; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 5% 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 0;
}
.footer-brand img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.65); }
.footer-col h4 { font-size: 13px; font-weight: 800; color: rgba(255,255,255,.5); margin-bottom: 16px; letter-spacing: 2px; text-transform: uppercase; }
.footer-col a {
  display: block; font-size: 15px; color: rgba(255,255,255,.7);
  text-decoration: none; margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.4);
  padding-top: 28px;
}
.footer-apps { display: flex; gap: 8px; }
.footer-app {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px; padding: 6px 14px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75);
  text-decoration: none; transition: background .2s;
}
.footer-app:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 320px; }
  .valor-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .depo-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galeria-item.big { grid-row: span 1; }
  .loc-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .oferta-box { padding: 40px 24px; }
}
@media(max-width:560px){
  .section { padding: 64px 0; }
  .valor-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .float-wa { bottom: 14px; right: 14px; font-size: 14px; padding: 11px 16px; }
  .nav-link { display: none; }
  .galeria-grid { grid-template-columns: 1fr; }
}

/* ── APPS ── */
.apps-section { background: var(--off-white); }
.apps-intro {
  max-width: 560px; margin-bottom: 48px;
}
.apps-grid {
  display: grid; grid-template-columns: minmax(0, 360px);
  justify-content: center;
  gap: 20px; margin-bottom: 40px;
}
.app-card.featured {
  border: 2px solid #EA1D2C;
  position: relative;
}
.app-card.featured::before {
  content: 'Mais usado';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #EA1D2C; color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap;
}
.app-card {
  background: var(--white); border: 2px solid #EA1D2C;
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; display: block;
}
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.app-logo {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 16px;
}
.app-logo.ifood  { background: #EA1D2C; }
.app-logo.keeta  { background: #000000; }
.app-logo.noventa { background: #EE2131; }
.app-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.app-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 18px; }
.app-card-btn {
  display: inline-block;
  background: var(--green-dark); color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 9px 20px; border-radius: 6px;
  transition: background .2s;
}
.app-card:hover .app-card-btn { background: var(--green-light); }
.apps-note {
  text-align: center; padding: 20px;
  background: var(--green-pale); border-radius: 10px;
  border: 1px solid rgba(27,107,53,.15);
  font-size: 15px; color: var(--text-muted);
}
.apps-note strong { color: var(--green-dark); }
@media(max-width:768px){
  .apps-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}


/* ── IDENTIFICAÇÃO ── */
.ident-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 52px;
}
.ident-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}
.ident-item:hover {
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ident-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-pale); border: 2px solid var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-top: 2px;
  color: var(--green-dark); font-weight: 900;
}
.ident-item:hover .ident-check {
  background: var(--green-dark); color: #fff;
}
.ident-text strong { display: block; font-size: 17px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.ident-text p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.ident-cta {
  margin-top: 40px;
  background: var(--green-pale);
  border: 1px solid rgba(27,107,53,.15);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.ident-cta p { font-size: 17px; font-weight: 700; color: var(--text); max-width: 420px; line-height: 1.5; }
.ident-cta p span { color: var(--green-dark); }
@media(max-width:768px){
  .ident-grid { grid-template-columns: 1fr; }
  .ident-cta { flex-direction: column; text-align: center; }
}
/* ── CLASSES MIGRADAS DE INLINE ── */

/* Hero */
.text-green-dark { color: var(--green-dark); }
.btn-primary--lg { font-size: 17px; }

/* Prova Social — Google link */
.depo-google-wrap { text-align: center; margin-top: 28px; }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px; padding: 12px 20px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow .2s;
}
.btn-google:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-google__label { font-size: 14px; font-weight: 700; color: #1a1a18; }
.btn-google__stars  { font-size: 13px; color: #5a5a50; }

/* Oferta */
.container--centered { text-align: center; }
.oferta-title { margin: 0 auto 16px; }
.oferta-sub   { margin: 0 auto 36px; max-width: 480px; }
.oferta-badges {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.oferta-badge {
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px; padding: 20px 28px;
  text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.oferta-badge__icon  { font-size: 32px; margin-bottom: 8px; }
.oferta-badge__title { display: block; font-size: 16px; color: var(--text); }
.oferta-badge__sub   { font-size: 13px; color: var(--text-muted); }

/* Apps — logos */
.app-logo--ifood {
  background: #fff; border-radius: 16px; padding: 6px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.app-logo--keeta {
  background: #FFE600; border-radius: 16px; padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.app-logo--99food {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 16px; padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.app-logo__img           { width: 100%; height: auto; display: block; border-radius: 12px; }
.app-logo__img--keeta    { width: 110%; height: auto; display: block; margin: -4px; }
.app-logo__img--99food   { width: 80%;  height: auto; display: block; }

/* Localização */
.loc-note        { font-size: 12px; color: rgba(27,107,53,.5); }
.map-placeholder { font-size: 12px; color: rgba(255,255,255,.4); font-style: italic; }

/* Footer */
.footer-apps__label { font-size: 12px; margin-right: 4px; }

/* ── PHOSPHOR ICONS ── */
.valor-icon i, .dif-icon i, .oferta-badge__icon i,
.loc-ico i, .clock i, .icon i { line-height: 1; }
.valor-icon i, .dif-icon i { color: var(--green-dark); }
.oferta-badge__icon i { color: var(--green-dark); }
.loc-ico i { color: var(--green-dark); }
.delivery-badge i { vertical-align: middle; }
