/* =========================================================
   GMG Shop Cell — identidade visual derivada da logo (verde/teal)
   ========================================================= */
:root {
  /* Paleta principal (extraída da logo: teal escuro + menta) */
  --bg:        #05130e;
  --bg-2:      #071c15;
  --surface:   #0a2620;
  --brand:     #0f7a5c;   /* teal escuro da logo */
  --accent:    #2fe6a8;   /* verde-esmeralda tech (glow/destaque) */
  --accent-2:  #16c79a;
  --cyan:      #3fe0d0;
  --mint:      #a9dbc8;
  --text:      #e9f7f0;
  --muted:     #9bb8ad;
  --border:    rgba(120, 230, 190, 0.14);
  --border-2:  rgba(120, 230, 190, 0.28);

  /* Gradientes / sombras / glow */
  --grad-brand:  linear-gradient(135deg, #2fe6a8 0%, #12a67e 55%, #0f7a5c 100%);
  --grad-text:   linear-gradient(120deg, #7fe9c9 0%, #2fe6a8 50%, #3fe0d0 100%);
  --glass-bg:    rgba(12, 40, 32, 0.55);
  --glass-brd:   rgba(140, 240, 200, 0.16);
  --glow:        0 0 40px rgba(47, 230, 168, 0.35);
  --glow-soft:   0 0 60px rgba(47, 230, 168, 0.18);
  --shadow:      0 20px 50px -20px rgba(0, 0, 0, 0.6);

  --radius:   18px;
  --radius-lg: 26px;
  --maxw:     1200px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);

  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Space Grotesk", var(--font-body);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* fundo com brilho ambiente */
  background-image:
    radial-gradient(60vw 60vw at 85% -10%, rgba(47, 230, 168, 0.10), transparent 60%),
    radial-gradient(50vw 50vw at -10% 20%, rgba(22, 199, 154, 0.08), transparent 60%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.container--narrow { max-width: 820px; }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--alt { background:
    linear-gradient(180deg, transparent, rgba(10, 38, 32, 0.55) 12%, rgba(10, 38, 32, 0.55) 88%, transparent);
}
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--accent); color: #04140e; padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px; margin-bottom: 18px;
  background: rgba(47, 230, 168, 0.06);
}
.section__head { max-width: 680px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section__title { font-size: clamp(1.7rem, 4.4vw, 2.75rem); }
.section__lead { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.section__note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 26px; opacity: 0.7; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; border: 1px solid transparent;
  border-radius: 100px; padding: 12px 22px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap; will-change: transform;
}
.btn--sm { padding: 9px 16px; font-size: 0.9rem; }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad-brand); color: #04140e; box-shadow: var(--glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 55px rgba(47, 230, 168, 0.55); }
.btn--ghost { background: rgba(255, 255, 255, 0.03); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--accent); background: rgba(47, 230, 168, 0.08); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(5, 19, 14, 0.72); backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border); box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.7);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; }
.brand__mark { border-radius: 10px; box-shadow: 0 0 0 1px var(--border); }
.brand__name { font-size: 1.12rem; letter-spacing: -0.01em; }
.brand__name strong { color: var(--accent); font-weight: 700; }
.nav { display: flex; gap: 6px; }
.nav a { padding: 9px 14px; border-radius: 100px; color: var(--muted); font-size: 0.95rem; transition: color 0.2s, background 0.2s; }
.nav a:hover, .nav a.active { color: var(--text); background: rgba(47, 230, 168, 0.08); }
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(70px, 12vh, 140px) clamp(60px, 8vh, 100px); min-height: 92vh; display: flex; align-items: center; }
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.4;
  background-image: linear-gradient(rgba(120, 230, 190, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(120, 230, 190, 0.06) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; }
.hero__glow--1 { width: 480px; height: 480px; background: rgba(47, 230, 168, 0.22); top: -120px; right: -80px; animation: float 12s var(--ease) infinite; }
.hero__glow--2 { width: 420px; height: 420px; background: rgba(22, 199, 154, 0.16); bottom: -140px; left: -100px; animation: float 15s var(--ease) infinite reverse; }
.hero__inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 64px); align-items: center; width: 100%;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--mint);
  padding: 8px 15px; border: 1px solid var(--border); border-radius: 100px; margin-bottom: 24px;
  background: rgba(47, 230, 168, 0.05);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(47, 230, 168, 0.6); animation: pulse 2s infinite; }
.hero__title { font-size: clamp(2.3rem, 6.4vw, 4.1rem); letter-spacing: -0.03em; }
.hero__subtitle { color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.18rem); max-width: 540px; margin-top: 22px; }
.hero__subtitle strong { color: var(--mint); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { list-style: none; display: flex; gap: clamp(16px, 4vw, 40px); margin-top: 40px; flex-wrap: wrap; }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--text); }
.hero__trust span { color: var(--muted); font-size: 0.85rem; }

.hero__visual { position: relative; }
.hero__card { position: relative; border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow), var(--glow-soft); }
.hero__card picture, .hero__card img { border-radius: calc(var(--radius-lg) - 8px); width: 100%; }
.hero__card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  background: linear-gradient(160deg, rgba(47, 230, 168, 0.12), transparent 40%);
}
.hero__chip {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 15px;
  border-radius: 14px; color: var(--text); box-shadow: var(--shadow); animation: floatY 5s var(--ease) infinite;
}
.hero__chip svg { color: var(--accent); flex-shrink: 0; }
.hero__chip strong { display: block; font-family: var(--font-display); font-size: 0.92rem; }
.hero__chip span { font-size: 0.76rem; color: var(--muted); }
.hero__chip--1 { top: 24px; left: -26px; }
.hero__chip--2 { bottom: 30px; right: -22px; animation-delay: 1.2s; }

.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid var(--border-2); border-radius: 20px; display: flex; justify-content: center; padding-top: 8px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--accent); animation: scroll 1.8s infinite; }

/* ---------- Sobre / stats ---------- */
.about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.about__text p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.about__text strong { color: var(--text); }
.about__mission { border-left: 3px solid var(--accent); padding-left: 16px; }
.about__points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 26px; }
.about__points span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.95rem; }
.about__points svg { color: var(--accent); }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { padding: 26px 22px; border-radius: var(--radius); text-align: center; transition: transform 0.3s var(--ease), border-color 0.3s; }
.stat:hover { transform: translateY(-4px); border-color: var(--border-2); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.4rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 0.86rem; margin-top: 6px; display: block; }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 18px; }
.grid--services { grid-template-columns: repeat(4, 1fr); }
.grid--diff { grid-template-columns: repeat(3, 1fr); }
.grid--products { grid-template-columns: repeat(3, 1fr); }
.grid--reviews { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative; padding: 28px 24px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border); transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(280px 180px at var(--mx, 50%) var(--my, 0%), rgba(47, 230, 168, 0.14), transparent 70%);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  color: var(--accent); background: rgba(47, 230, 168, 0.08); border: 1px solid var(--border);
  transition: transform 0.35s var(--ease);
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Diferenciais ---------- */
.diff { display: flex; gap: 16px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(255, 255, 255, 0.02); transition: transform 0.3s var(--ease), border-color 0.3s; }
.diff:hover { transform: translateY(-4px); border-color: var(--border-2); }
.diff__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--accent); background: rgba(47, 230, 168, 0.08); border: 1px solid var(--border); }
.diff h3 { font-size: 1.05rem; margin-bottom: 5px; }
.diff p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Timeline / processo ---------- */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--border-2), transparent); }
.timeline__item { position: relative; text-align: center; padding-top: 8px; }
.timeline__num {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #04140e;
  background: var(--grad-brand); box-shadow: var(--glow); position: relative; z-index: 1;
}
.timeline__item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline__item p { color: var(--muted); font-size: 0.9rem; padding-inline: 6px; }

/* ---------- Produtos ---------- */
.product { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; }
.product picture { display: block; overflow: hidden; }
.product img { aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.6s var(--ease); }
.product:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.product:hover img { transform: scale(1.06); }
.product__body { padding: 18px 20px; }
.product__body h3 { font-size: 1.08rem; margin-bottom: 5px; }
.product__body p { color: var(--muted); font-size: 0.88rem; }

/* ---------- Galeria masonry ---------- */
.masonry { columns: 4; column-gap: 16px; }
.masonry__item { display: block; width: 100%; margin-bottom: 16px; padding: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: none; break-inside: avoid; position: relative; transition: transform 0.35s var(--ease), border-color 0.35s; }
.masonry__item img { width: 100%; transition: transform 0.6s var(--ease); }
.masonry__item::after { content: "⤢"; position: absolute; inset: auto 12px 12px auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: rgba(5, 19, 14, 0.7); color: var(--accent); opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(6px); }
.masonry__item:hover { transform: translateY(-4px); border-color: var(--border-2); }
.masonry__item:hover img { transform: scale(1.05); }
.masonry__item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 4vw; background: rgba(3, 12, 9, 0.9); backdrop-filter: blur(10px); }
.lightbox.open { display: flex; animation: fade 0.3s; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow); }
.lightbox__btn { position: absolute; background: var(--glass-bg); border: 1px solid var(--glass-brd); color: var(--text); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; transition: background 0.2s, transform 0.2s; }
.lightbox__btn:hover { background: rgba(47, 230, 168, 0.15); transform: scale(1.08); }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ---------- Depoimentos ---------- */
.review { padding: 28px 26px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)); transition: transform 0.3s var(--ease), border-color 0.3s; }
.review:hover { transform: translateY(-5px); border-color: var(--border-2); }
.review__stars { color: #ffcf5c; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-size: 1rem; color: var(--text); }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #04140e; background: var(--grad-brand); }
.review figcaption small { display: block; color: var(--muted); font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--border); border-radius: 14px; background: rgba(255, 255, 255, 0.02); overflow: hidden; transition: border-color 0.3s; }
.faq__item[open] { border-color: var(--border-2); }
.faq__item summary { list-style: none; padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Contato ---------- */
.contact { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact__list { list-style: none; display: grid; gap: 16px; margin-top: 28px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--accent); background: rgba(47, 230, 168, 0.08); border: 1px solid var(--border); }
.contact__list small { display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact__list a, .contact__val { font-weight: 500; font-size: 1.02rem; }
.contact__list a:hover { color: var(--accent); }
.contact__map { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact__map iframe { width: 100%; height: 240px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

.contact__form { padding: clamp(24px, 4vw, 36px); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact__form h3 { font-size: 1.4rem; }
.contact__formlead { color: var(--muted); font-size: 0.92rem; margin: 6px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; color: var(--mint); margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border-radius: 12px; border: 1px solid var(--border);
  background: rgba(5, 19, 14, 0.6); color: var(--text); font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47, 230, 168, 0.15); outline: none; }
.field textarea { resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%232fe6a8' stroke-width='2'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.contact__disclaimer { color: var(--muted); font-size: 0.78rem; text-align: center; margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); margin-top: 40px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: clamp(44px, 6vw, 68px); }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 320px; }
.footer h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text); }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__contact a, .footer__contact span { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--border); padding-block: 20px; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.85rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.footer__social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.6); transition: transform 0.3s var(--ease);
  animation: floatY 3.5s var(--ease) infinite;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Delivery / busca em casa ---------- */
.delivery { position: relative; overflow: hidden; }
.delivery__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(47, 230, 168, 0.14); filter: blur(100px); top: -140px; left: -120px; z-index: 0; }
.delivery__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.delivery__media { position: relative; max-width: 460px; }
.delivery__frame { padding: 12px; border-radius: var(--radius-lg); box-shadow: var(--shadow), var(--glow-soft); }
.delivery__frame img { border-radius: calc(var(--radius-lg) - 6px); width: 100%; }
.delivery__badge { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; white-space: nowrap; box-shadow: var(--shadow); }
.delivery__badge svg { color: var(--accent); }
.delivery__text > p { margin-top: 14px; }
.delivery__list { list-style: none; display: grid; gap: 14px; margin: 28px 0; }
.delivery__list li { display: flex; gap: 14px; align-items: flex-start; }
.delivery__num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #04140e; background: var(--grad-brand); box-shadow: 0 0 20px rgba(47, 230, 168, 0.4); }
.delivery__list strong { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.delivery__list li span:last-child { color: var(--muted); font-size: 0.92rem; }

/* ---------- Pop-out avaliação ---------- */
.rate-pop {
  position: fixed; left: 22px; bottom: 22px; z-index: 95; width: min(320px, calc(100vw - 44px));
  padding: 20px 20px 18px; border-radius: 18px; text-align: center;
  background: rgba(8, 30, 24, 0.86); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow), 0 0 50px rgba(47, 230, 168, 0.15);
  transform: translateY(24px) scale(0.96); opacity: 0; transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.rate-pop.show { transform: none; opacity: 1; }
.rate-pop[hidden] { display: none; }
.rate-pop__close { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 0; color: var(--muted); font-size: 0.85rem; transition: color 0.2s, background 0.2s; }
.rate-pop__close:hover { color: var(--text); background: rgba(255,255,255,0.12); }
.rate-pop__stars { color: #ffcf5c; letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 8px; }
.rate-pop strong { display: block; font-family: var(--font-display); font-size: 1.08rem; }
.rate-pop p { color: var(--muted); font-size: 0.9rem; margin: 6px 0 16px; }

/* ---------- Crédito rodapé ---------- */
.footer__copy { line-height: 1.7; }
.footer__sep { opacity: 0.4; margin: 0 2px; }
.footer__credit { color: var(--mint); font-weight: 500; transition: color 0.2s; }
.footer__credit:hover { color: var(--accent); }
.heart { color: #ff5d7a; }

/* ---------- Reveal (scroll animations) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47, 230, 168, 0.55); } 70% { box-shadow: 0 0 0 10px rgba(47, 230, 168, 0); } 100% { box-shadow: 0 0 0 0 rgba(47, 230, 168, 0); } }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, 30px); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scroll { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .timeline__item p { font-size: 0.82rem; }
}
@media (max-width: 860px) {
  .nav, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.open {
    display: flex; position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 4px;
    padding: 18px clamp(18px, 5vw, 40px) 26px; background: rgba(5, 19, 14, 0.96);
    backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); z-index: 99;
  }
  .nav.open a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__visual { order: 1; max-width: 420px; margin: 0 auto; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__chip--1 { left: 6px; } .hero__chip--2 { right: 6px; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .delivery__inner { grid-template-columns: 1fr; }
  .delivery__media { order: 1; margin: 0 auto; }
  .delivery__text { order: 2; text-align: center; }
  .delivery__list { text-align: left; max-width: 420px; margin-inline: auto; }
  .delivery__list li { justify-content: flex-start; }
  .grid--diff, .grid--products, .grid--reviews { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 14px; }
  .timeline::before { display: none; }
  .timeline__item { display: grid; grid-template-columns: 54px 1fr; text-align: left; align-items: center; gap: 4px 16px; }
  .timeline__num { margin: 0; grid-row: span 2; }
  .timeline__item p { padding: 0; }
}
@media (max-width: 560px) {
  .grid--services, .grid--diff, .grid--products, .grid--reviews { grid-template-columns: 1fr; }
  .masonry { columns: 2; column-gap: 12px; }
  .about__stats { gap: 12px; }
  .hero__chip { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__trust strong { font-size: 1.15rem; }
  .btn--lg { width: 100%; }
  .hero__actions { flex-direction: column; }
  /* pop-out acima do WhatsApp flutuante pra não colidir */
  .rate-pop { left: 16px; right: 16px; bottom: 90px; width: auto; }
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.08s !important; }
  .hero__glow, .badge__dot, .wa-float, .hero__chip { animation: none !important; }
}
