/* ==========================================================================
   Lar & Cia Decoração — folha de estilo compartilhada
   Usada pela home institucional e por todas as landing pages de produto.
   ========================================================================== */

:root {
  --green: #1C3A22;
  --green-light: #2d5433;
  --green-deep: #0B2211;
  --gold: #9B7F5A;
  --gold-light: #c4a97e;
  --white: #FFFFFF;
  --cream: #F8F4EE;
  --beige: #EDE8E0;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe5d;
  --shadow-sm: 0 1px 8px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: #fff; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; }
img { max-width: 100%; display: block; }

/* ── UTILITÁRIOS ───────────────────────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; }
section { padding: clamp(3rem, 6vw, 5rem) 5%; }
/* O cabeçalho é fixo, então a âncora precisa parar antes dele.
   Sem isso o título da seção some atrás da barra do topo. */
section[id], header[id] { scroll-margin-top: 84px; }
.section-label {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .7rem;
}
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 620px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BOTÕES ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem; border-radius: 8px; font-weight: 700; font-size: .95rem;
  text-decoration: none; border: none; cursor: pointer; transition: all .2s;
  font-family: inherit; line-height: 1.2;
}
.btn svg { flex-shrink: 0; }
.btn--wpp { background: var(--whatsapp); color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.35); }
.btn--wpp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(37,211,102,.45); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); font-weight: 600; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--ghost-dark { background: transparent; color: var(--green); border: 1.5px solid var(--green); font-weight: 600; }
.btn--ghost-dark:hover { background: var(--green); color: #fff; }
.btn--sm { padding: .6rem 1.2rem; font-size: .82rem; border-radius: 6px; }
.btn--block { width: 100%; }

/* ── NAV ───────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 72px; transition: background .3s, box-shadow .3s;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 100%);
}
/* Ao rolar, o cabeçalho assume o verde da marca. Branco deixava uma faixa
   vazia destoando, já que a logo usada é a de fundo transparente. */
nav.scrolled { background: var(--green-deep); box-shadow: 0 2px 20px rgba(0,0,0,.22); }
/* Cabeçalho só com a logo: sem links, sem telefone, sem botão. */
nav.nav--logo-only { justify-content: flex-start; }
.nav-logo img { height: 44px; }
/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; padding: 110px 5% 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,26,14,.90) 0%, rgba(11,26,14,.68) 50%, rgba(11,26,14,.28) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; width: 100%; }
.hero-content { max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(155,127,90,.24);
  border: 1px solid rgba(196,169,126,.55); color: var(--gold-light); padding: .38rem 1rem;
  border-radius: 100px; font-size: .74rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); color: #fff; line-height: 1.1; margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-lead { color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.6vw, 1.12rem); line-height: 1.7; margin-bottom: 1.8rem; max-width: 540px; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }
.hero-ctas .btn { padding: 1.05rem 2rem; font-size: 1rem; }

/* Selos de confiança logo abaixo do CTA — respondem "posso confiar?" antes do scroll */
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust-item { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 500; }
.hero-trust-item svg { width: 17px; height: 17px; stroke: var(--gold-light); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── COMO FUNCIONA (4 passos) ──────────────────────────────────────────── */
.steps { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.8rem; }
.steps-grid--3 { grid-template-columns: repeat(3, 1fr); }
.steps--cream { background: var(--cream); }
.step {
  background: var(--cream); border-radius: var(--radius); padding: 2rem 1.6rem;
  position: relative; border-top: 3px solid var(--gold);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700; margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.15rem; color: var(--green); margin-bottom: .5rem; }
.step p { color: var(--text-muted); font-size: .89rem; line-height: 1.65; }

/* ── TIPOS / MODELOS DO PRODUTO ────────────────────────────────────────── */
.types { background: var(--cream); }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; margin-top: 2.8rem; }
.type-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold); transition: transform .25s, box-shadow .25s;
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.type-card h3 { font-size: 1.2rem; color: var(--green); margin-bottom: .55rem; }
.type-card p { color: var(--text-muted); font-size: .89rem; line-height: 1.65; }

/* ── DIFERENCIAIS ──────────────────────────────────────────────────────── */
.benefits { background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.8rem; }
.benefit {
  background: var(--beige); border-radius: var(--radius); padding: 2.2rem 1.9rem;
  position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.benefit-icon {
  width: 52px; height: 52px; background: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
}
.benefit-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; }
.benefit h3 { font-size: 1.18rem; margin-bottom: .6rem; color: var(--green); }
.benefit p { color: var(--text-muted); font-size: .89rem; line-height: 1.65; }
.benefit--highlight { background: var(--green); }
.benefit--highlight h3 { color: var(--gold-light); }
.benefit--highlight p { color: rgba(255,255,255,.78); }
.benefit--highlight .benefit-icon { background: rgba(255,255,255,.12); }

/* ── BLOCO DE PREÇO / OBJEÇÃO ──────────────────────────────────────────── */
.pricing { background: var(--green); color: #fff; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing .section-label { color: var(--gold-light); }
.pricing h2 { color: #fff; }
.pricing-lead { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.75; max-width: 660px; margin: 0 auto 2.4rem; }
.pricing-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2.4rem; text-align: left; }
.pricing-point { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 1.5rem; }
.pricing-point h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold-light); margin-bottom: .5rem; font-weight: 700; }
.pricing-point p { color: rgba(255,255,255,.72); font-size: .87rem; line-height: 1.6; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── MODAL DE CONTATO ──────────────────────────────────────────────────
   Aberto pelo botão do bloco de fechamento, que é o destino das âncoras. */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop.open { display: flex; }
.modal {
  background: #f0ede8; border-radius: var(--radius); width: 100%; max-width: 400px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.35); animation: modalIn .25s ease;
  max-height: 94vh; overflow-y: auto;
}
@keyframes modalIn { from { opacity:0; transform: scale(.94) translateY(14px); } to { opacity:1; transform: none; } }
.modal-header { background: #128C7E; color: #fff; text-align: center; padding: 1.1rem 1.4rem; font-size: 1.05rem; font-weight: 700; }
.modal-body { padding: 1.2rem 1.3rem 1.4rem; }
.modal-bubble { background: #fff; border-radius: 8px 8px 8px 0; padding: .85rem 1rem; font-size: .9rem; color: #333; margin-bottom: 1rem; box-shadow: 0 1px 4px rgba(0,0,0,.1); line-height: 1.5; }
.modal-field { background: #dcf8c6; border-radius: 8px; padding: .6rem .9rem; margin-bottom: .6rem; }
.modal-field label { display: block; font-size: .74rem; color: #555; margin-bottom: .15rem; font-weight: 600; }
.modal-field input, .modal-field select { width: 100%; border: none; background: transparent; font-size: .95rem; color: #333; outline: none; font-family: inherit; }
.modal-field select { cursor: pointer; }
.modal-field input::placeholder { color: #a5a5a5; }
.modal-actions { display: flex; gap: .6rem; margin-top: 1rem; }
.modal-btn { flex: 1; border: none; padding: .8rem; border-radius: 6px; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s; }
.modal-btn--go { background: #128C7E; color: #fff; }
.modal-btn--go:hover { background: #0d7a6d; }
.modal-btn--cancel { background: #b4b4b4; color: #fff; }
.modal-btn--cancel:hover { background: #9d9d9d; }
.modal-note { font-size: .72rem; color: #888; text-align: center; margin-top: .8rem; }

/* ── SEÇÃO DE PROJETOS ─────────────────────────────────────────────────── */
.gallery { background: var(--green-deep); }
.gallery .section-title { color: #fff; }
.gallery .section-label { color: var(--gold-light); }
.gallery .section-sub { color: rgba(255,255,255,.65); }

/* ── CARROSSEL DE PROJETOS ─────────────────────────────────────────────
   Trilha horizontal com rolagem por toque e encaixe. Setas só no desktop. */
.pj-wrap { position: relative; margin-top: 2.8rem; }
.pj-track {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: .3rem .2rem 1.2rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.pj-track::-webkit-scrollbar { display: none; }
.pj-card {
  flex: 0 0 316px; scroll-snap-align: start; background: #fff; border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  box-shadow: 0 2px 14px rgba(0,0,0,.10); transition: transform .25s, box-shadow .25s;
}
.pj-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(0,0,0,.22); }
.pj-thumb { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e0d8cf; cursor: zoom-in; }
.pj-card--link .pj-thumb { cursor: pointer; }
.pj-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.pj-body h3 { font-size: 1.2rem; color: var(--green); line-height: 1.25; }
.pj-desc { color: var(--text-muted); font-size: .85rem; line-height: 1.6; margin-top: .45rem; }
.pj-chip {
  align-self: flex-start; margin-top: .9rem; padding: .32rem .85rem; border: 1px solid #ddd6cc;
  border-radius: 999px; font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  color: var(--gold); background: var(--cream); text-transform: uppercase;
}
.pj-btn {
  position: absolute; top: 38%; width: 44px; height: 44px; border-radius: 50%; border: none;
  background: #fff; color: var(--green); font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 3;
  box-shadow: 0 4px 16px rgba(0,0,0,.28); transition: opacity .2s, transform .2s;
}
.pj-btn:hover:not(:disabled) { transform: scale(1.08); }
.pj-btn:disabled { opacity: 0; pointer-events: none; }
.pj-btn--prev { left: -14px; }
.pj-btn--next { right: -14px; }
.pj-hint { display: none; color: rgba(255,255,255,.6); font-size: .8rem; margin-top: .3rem; text-align: center; }

/* Sobre fundo claro, como na seção de produtos da home */
.pj-wrap--light .pj-chip { background: #fff; }
.pj-wrap--light .pj-hint { color: var(--text-muted); }

/* ── LIGHTBOX ──────────────────────────────────────────────────────────── */
.lb-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(6,14,8,.93); z-index: 3000;
  align-items: center; justify-content: center; padding: 2.2rem 1rem;
}
.lb-backdrop.open { display: flex; }
.lb-img { max-width: min(1100px, 94vw); max-height: 82vh; object-fit: contain; border-radius: 8px; }
.lb-caption { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: .9rem; padding: 0 1rem; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.14); border: none; color: #fff; cursor: pointer;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-nav--prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-nav--next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ── DEPOIMENTOS ───────────────────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.rc { position: relative; display: flex; align-items: center; gap: .6rem; margin-top: 2.6rem; }
.rc-wrapper { overflow: hidden; flex: 1; }
.rc-track { display: flex; gap: 1.2rem; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.rc-btn {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--green);
  background: #fff; color: var(--green); font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .2s; line-height: 1;
}
.rc-btn:hover:not(:disabled) { background: var(--green); color: #fff; }
.rc-btn:disabled { opacity: .28; cursor: default; }
.rc-dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1.4rem; }
.rc-dot { width: 8px; height: 8px; border-radius: 100px; background: #ccc; border: none; cursor: pointer; padding: 0; transition: all .25s; }
.rc-dot.is-active { background: var(--green); width: 24px; }
.t-card { flex: 0 0 calc((100% - 2.4rem) / 3); min-width: 0; background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.t-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .85rem; }
.t-author { display: flex; align-items: center; gap: .7rem; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; font-weight: 700; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-size: .88rem; font-weight: 700; }
.t-time { font-size: .74rem; color: #888; margin-top: 1px; }
.t-stars { color: #FBBC04; font-size: 1rem; letter-spacing: .05em; margin-bottom: .55rem; }
.t-text { color: #444; font-size: .875rem; line-height: 1.65; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { background: #fff; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--cream); border: 1.5px solid var(--beige); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: .96rem; font-weight: 600; color: var(--text);
}
.faq-icon { font-size: 1.4rem; color: var(--green); flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
/* Grid 0fr → 1fr anima a abertura sem depender de uma altura fixa.
   Com max-height fixo, resposta longa em tela pequena ficava cortada. */
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-body-inner { overflow: hidden; }
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body p { font-size: .9rem; color: var(--text-muted); line-height: 1.8; padding: 0 1.5rem 1.3rem; }

/* ── CTA FINAL ─────────────────────────────────────────────────────────── */
.cta { background: var(--green); text-align: center; position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 5%; }
.cta::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .12; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: #fff; margin-bottom: 1rem; }
.cta h2 em { font-style: normal; color: var(--gold-light); }
.cta p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.2rem; line-height: 1.7; }

/* ── LOJAS ─────────────────────────────────────────────────────────────── */
.stores { background: #fff; }
.stores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 820px; margin: 2.6rem auto 0; }
.store-card { background: var(--cream); border-radius: var(--radius); padding: 2rem; border: 1px solid #e5e0d8; }
.store-card h3 { color: var(--green); font-size: 1.22rem; margin-bottom: 1.1rem; border-bottom: 2px solid var(--gold); padding-bottom: .65rem; }
.store-detail { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .7rem; font-size: .88rem; color: var(--text-muted); }
.store-detail svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2; margin-top: 2px; }
.store-detail a { color: var(--text-muted); text-decoration: none; }
.store-detail a:hover { color: var(--green); text-decoration: underline; }

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer { background: var(--green-deep); color: rgba(255,255,255,.62); padding: 3.5rem 5% 2rem; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo img { height: 44px; margin-bottom: 1rem; }
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-icon { width: 34px; height: 34px; background: rgba(255,255,255,.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.social-icon:hover { background: var(--gold); }
.social-icon svg { width: 16px; height: 16px; fill: #fff; }
.footer-col h4 { color: #fff; font-family: inherit; font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; margin-bottom: .7rem; color: rgba(255,255,255,.55); }
.footer-contact-item svg { width: 14px; height: 14px; fill: none; stroke: var(--gold-light); stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1240px; margin: 1.8rem auto 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .77rem; color: rgba(255,255,255,.35); flex-wrap: wrap; }

/* ── WHATSAPP FLUTUANTE ────────────────────────────────────────────────── */
.wpp-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 900; width: 58px; height: 58px;
  background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); text-decoration: none;
  transition: transform .25s; animation: pulse 2.6s infinite;
}
.wpp-float:hover { transform: scale(1.1); animation: none; }
.wpp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.75), 0 0 0 9px rgba(37,211,102,.12); }
}

/* ── BANNER DE COOKIES ─────────────────────────────────────────────────── */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  background: #fff; border-top: 3px solid var(--gold); box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  padding: 1.2rem 5%;
}
.cookie-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.cookie-inner p { font-size: .82rem; color: #555; line-height: 1.6; flex: 1; min-width: 240px; }
.cookie-inner p a { color: var(--green); }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ── RESPONSIVO ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid, .steps-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .pricing-points { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: 0; padding: 100px 5% 48px; }
  .hero-trust { gap: 1rem 1.4rem; }
  .t-card { flex: 0 0 calc((100% - 1.2rem) / 2); }
  .stores-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 900px) {
  /* No toque a rolagem é natural, então as setas saem e entra a dica. */
  .pj-btn { display: none; }
  .pj-hint { display: block; }
  .pj-track { padding-left: 5%; margin-left: -5%; padding-right: 5%; margin-right: -5%; }
}

@media (max-width: 600px) {
  /* Alvos de toque: no dedo, qualquer coisa abaixo de 44px erra o clique.
     A maior parte do tráfego chega pelo celular, então isso é conversão. */
  .btn, .btn--sm, button { min-height: 44px; }
  .rc-btn { width: 40px; height: 40px; font-size: 1.3rem; }
  /* O ponto continua com 8px de aparência, mas a área tocável cresce. */
  .rc-dot { position: relative; }
  .rc-dot::after { content: ''; position: absolute; inset: -14px -6px; }
  .rc-dots { gap: .7rem; }

  /* No celular, cartão com moldura e recheio ocupa tela demais. Vira lista. */
  .pricing-points { gap: 0; margin-bottom: 1.8rem; }
  .pricing-point { background: none; border: none; border-top: 1px solid rgba(255,255,255,.14); border-radius: 0; padding: .9rem 0; }
  .pricing-point:first-child { border-top: none; }
  .pricing-point h4 { margin-bottom: .2rem; }
  .pricing-lead { margin-bottom: 1.4rem; }

  .store-card { padding: 1.4rem; }
  .store-card h3 { margin-bottom: .8rem; padding-bottom: .5rem; }
  .store-detail { margin-bottom: .5rem; }
  .stores-grid { gap: 1rem; margin-top: 1.8rem; }

  .pj-card { flex: 0 0 82vw; }
  .lb-nav--prev { left: .5rem; }
  .lb-nav--next { right: .5rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .steps-grid, .steps-grid--3 { grid-template-columns: 1fr; }
  .t-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wpp-float { bottom: 1.1rem; right: 1.1rem; width: 54px; height: 54px; }
}
