/* ============================================================
   MAPA DA MINA — STORE IN STORE
   Folha de estilos principal
   ------------------------------------------------------------
   GUIA RÁPIDO DE EDIÇÃO
   • Cores do site            → bloco ":root" logo abaixo
   • Fotos dos ambientes      → assets/img/loja-*.jpg
   • Textos                   → direto no index.html, dentro de
                                cada <section>
   ============================================================ */

:root {
  /* Preto/tinta — fundo das seções escuras */
  --ink:          #8E2433;
  --ink-soft:     #A8394B;
  --ink-deep:     #531420;

  /* Papel — fundo das seções claras (creme/editorial) */
  --paper:        #F8F1E6;
  --paper-deep:   #EFE4D2;

  /* Dourado — cor de destaque em todo o site */
  --gold:         #C9A24B;
  --gold-light:   #E8CB78;
  --gold-deep:    #9C7A2E;
  --gold-grad:    linear-gradient(135deg, #F2DC98 0%, #D4A94A 40%, #C9A24B 65%, #A07928 100%);
  --gold-line:    rgba(201,162,75,.28);

  /* Texto sobre fundo escuro */
  --on-ink:       #F8F1E6;
  --on-ink-mut:   rgba(248,241,230,.72);

  /* Texto sobre fundo claro (papel) */
  --on-paper:     #453D2F;
  --on-paper-mut: #5B5646;

  --line-soft:    rgba(255,255,255,.10);
  --line-dark:    rgba(27,26,23,.12);

  --shadow-soft:  0 20px 44px rgba(0,0,0,.28);

  --font:       "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fotos da loja usadas como pano de fundo em algumas seções */
  --img-salao:      url('../img/loja-salao.jpg');
  --img-moda:        url('../img/loja-moda.jpg');
  --img-estetica:   url('../img/loja-estetica.jpg');
  --img-esmalteria: url('../img/loja-esmalteria.jpg');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--on-paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Ritmo entre seções: nem toda seção "pesa" o mesmo — momentos de
   transição/virada (solução, números) recebem mais respiro do que
   seções mais densas de conteúdo (dores, como funciona). */
.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.section--loose { padding: clamp(84px, 12vw, 160px) 0; }

.sec-ink  { background: var(--ink); color: var(--on-ink); }
.sec-paper { background: var(--paper); color: var(--on-paper); }

.sec-ink .eyebrow, .sec-ink .section-title { color: var(--on-ink); }

/* Quando duas seções escuras ficam lado a lado, esse divisor
   sutil evita que elas se fundam num bloco só sem hierarquia. */
.section-divide { border-top: 1px solid var(--line-soft); }

/* ---------- Bloco de abertura de seção (eyebrow + título + lead) ---------- */
.section-intro { max-width: 700px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-intro .eyebrow { justify-content: center; }
.section-intro .lead { margin: 0 auto; }

.center { text-align: center; justify-content: center; }

/* ---------- Eyebrow (textinho pequeno com tracinho dourado) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-grad); display: inline-block; }
.sec-ink .eyebrow { color: var(--gold-light); }

/* ---------- Títulos ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800; line-height: 1.18; margin: 0 0 22px; color: var(--on-paper);
  letter-spacing: -.01em;
}
.sec-ink .section-title { color: #fff; }
.section-title em, h1 em, h2 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead { font-size: 1.18rem; line-height: 1.7; color: var(--on-paper-mut); max-width: 62ch; }
.sec-ink .lead { color: var(--on-ink-mut); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 17px 34px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-gold { background: var(--gold-grad); color: var(--ink-deep); box-shadow: 0 14px 30px rgba(198,161,91,.34); }
.btn-gold:hover { box-shadow: 0 18px 38px rgba(198,161,91,.44); }

.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ink:hover { background: var(--ink-deep); box-shadow: 0 16px 32px rgba(0,0,0,.3); }

.btn-outline-gold { background: transparent; border-color: var(--gold-line); color: var(--on-ink); }
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(198,161,91,.1); }

.btn-lg { padding: 19px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-wpp { background: #25D366; color: #fff; }
.btn-wpp:hover { background: #1EBE5A; box-shadow: 0 16px 32px rgba(37,211,102,.34); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: background .3s, padding .3s, box-shadow .3s;
}
.header.scrolled { background: rgba(18,18,20,.92); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.24); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { height: 40px; width: auto; }
.brand-sub { display: block; font-size: .62rem; letter-spacing: .18em; color: var(--on-ink-mut); text-transform: uppercase; margin-top: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(140px, 17vw, 196px); padding-bottom: clamp(72px, 9vw, 116px); background: var(--ink); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 520px at 85% 0%, rgba(198,161,91,.14), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(40px, 6vw, 84px); align-items: center; position: relative; }

.hero .eyebrow { margin-bottom: 24px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.01em; color: #fff; margin: 0; }
.hero .h1-line2 { display: block; font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 600; color: var(--on-ink-mut); margin-top: 16px; }
.hero .lead { margin: 28px 0 32px; font-size: 1.25rem; color: var(--on-ink-mut); }

/* ---------- CTA + selo de confiança (avatares) ---------- */
.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.trust-badge { display: flex; align-items: center; gap: 12px; }
.trust-avatars { display: flex; }
.trust-avatar {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px;
  background: var(--gold-grad); border: 2px solid var(--ink);
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: .88rem; color: var(--on-ink-mut); line-height: 1.3; }
.trust-text strong { color: #fff; }

/* ---------- Foto + cards flutuantes de estatística ---------- */
.hero-visual { position: relative; aspect-ratio: 4/5; }
.hero-visual-frame { position: relative; width: 100%; height: 100%; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-soft); }
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,11,.6) 0%, transparent 42%);
}
.hero-visual-tag {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  background: rgba(18,18,20,.72); backdrop-filter: blur(6px);
  border: 1px solid var(--gold-line); color: var(--on-ink);
  font-size: .8rem; font-weight: 700; padding: 10px 18px; border-radius: 100px;
}

.hero-float {
  position: absolute; z-index: 3;
  background: rgba(18,18,20,.82); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line); border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.32);
}
.hero-float-1 {
  top: 28px; left: -26px; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-float-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-light); line-height: 1.1; }
.hero-float-label { font-size: .74rem; color: var(--on-ink-mut); }

.hero-float-2, .hero-float-3 {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold-light);
}
.hero-float-2 svg, .hero-float-3 svg { width: 24px; height: 24px; }
.hero-float-2 { top: 50%; right: -22px; transform: translateY(-50%); }
.hero-float-3 { bottom: 34px; left: -20px; }

/* ---------- Premiações e reconhecimentos ---------- */
.awards-strip { background: var(--paper); padding: 36px 0; border-bottom: 1px solid var(--line-dark); }
.awards-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.awards-label {
  font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-paper-mut); flex: none;
}
.awards-badges { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.award-badge { height: 84px; width: auto; flex: none; border-radius: 10px; }
.awards-divider { width: 1px; height: 56px; background: var(--line-dark); flex: none; }

/* ---------- Barra de rolagem automática (marquee) ---------- */
.marquee-wrap { background: var(--ink-deep); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee-scroll 55s linear infinite; }
.marquee-track { display: flex; align-items: center; white-space: nowrap; padding: 22px 0; }
.marquee-item { font-size: .92rem; font-weight: 600; letter-spacing: .03em; color: var(--on-ink-mut); padding: 0 28px; }
.marquee-dot { color: var(--gold-line); padding: 0 4px; font-size: .7rem; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ============================================================
   DORES (por segmento)
   ============================================================ */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pain-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 40px rgba(27,26,23,.08); }
.pain-card-img { aspect-ratio: 16/10; overflow: hidden; }
.pain-card-img img { width: 100%; height: 100%; object-fit: cover; }
.pain-card-body { padding: 32px; }
.pain-card-tag { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; display: block; }
.pain-card-body p { margin: 0; font-size: 1.1rem; line-height: 1.62; color: var(--on-paper-mut); }

/* ============================================================
   SOLUÇÃO + FORMULÁRIO (lado a lado)
   ============================================================ */
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.solution-copy .eyebrow { margin-bottom: 22px; }
.solution-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; line-height: 1.36; color: #fff; letter-spacing: -.01em; margin: 0;
}
.solution-support { margin-top: 20px; font-size: 1.12rem; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-card { background: #fff; border: 1px solid var(--line-dark); border-radius: 20px; padding: 32px; text-align: left; }
.how-icon {
  width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  color: var(--gold-deep);
}
.how-icon svg { width: 28px; height: 28px; }
.how-card h3 { font-size: 1.22rem; font-weight: 700; margin: 0 0 12px; color: var(--on-paper); line-height: 1.3; }
.how-card p { margin: 0; font-size: 1.05rem; color: var(--on-paper-mut); line-height: 1.62; }

/* ============================================================
   GALERIA / SEGMENTOS — layout bento (1 foto grande + 3 em grade)
   ============================================================ */
.section-title--serif {
  font-family: var(--font-serif); font-weight: 600; font-style: normal;
  letter-spacing: 0; font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}
.section-title--serif em {
  font-weight: 600; /* mantém o peso, só herda o gradiente dourado do seletor genérico */
}
.lead-em {
  font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--gold-light);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: clamp(440px, 46vw, 640px);
}
.bento-grid > .bento-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento-grid > .bento-item:nth-child(3) { grid-column: 3; grid-row: 1; }

.bento-item { position: relative; border-radius: 20px; overflow: hidden; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bento-item:hover img { transform: scale(1.05); }
.bento-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,11,.78) 0%, transparent 42%); }

.bento-item--tall { grid-column: 1; grid-row: 1 / span 2; }
.bento-item--wide { grid-column: 2 / span 2; grid-row: 2; }

.bento-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10,10,11,.66); backdrop-filter: blur(6px);
  border: 1px solid var(--gold-line); border-radius: 100px;
  padding: 8px 18px 8px 8px; color: #fff; font-weight: 700; font-size: .92rem;
}
.bento-tag-icon {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--gold-grad); color: var(--ink-deep);
  display: flex; align-items: center; justify-content: center;
}
.bento-tag-icon svg { width: 16px; height: 16px; }

/* ============================================================
   NÚMEROS — fileira de estatísticas com sangria nas bordas
   ============================================================ */
.stats-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 56px); text-align: center; }
.stats-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.24;
  color: #fff; margin: 0 0 18px; letter-spacing: -.01em;
}
.stats-title .hl {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-sub { font-size: 1.1rem; color: var(--on-ink-mut); margin: 0; }

/* A fileira "sangra" pra fora do container, cortando os cards das
   pontas — igual à referência — e some com um fade nas bordas. */
.stats-row {
  overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.stats-row::-webkit-scrollbar { display: none; }
.stats-track { display: flex; gap: 20px; width: max-content; padding: 0 clamp(24px, 6vw, 120px) clamp(36px, 5vw, 56px); margin: 0 auto; }

.stat-card {
  flex: 0 0 auto; width: clamp(220px, 22vw, 268px);
  background: var(--ink-soft); border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 30px 26px; text-align: center;
}
.stat-value { display: block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--gold-light); line-height: 1.2; margin-bottom: 14px; }
.stat-label { display: block; font-size: .95rem; color: var(--on-ink-mut); line-height: 1.5; }

.stats-cta { text-align: center; }

/* ---------- Botão com brilho e seta (CTA de destaque) ---------- */
.btn-glow { box-shadow: 0 0 0 1px var(--gold-line), 0 0 40px rgba(198,161,91,.5), 0 14px 30px rgba(198,161,91,.34); }
.btn-glow:hover { box-shadow: 0 0 0 1px var(--gold-line), 0 0 52px rgba(198,161,91,.62), 0 18px 38px rgba(198,161,91,.44); }
.btn-arrow { padding-right: 14px; }
.btn-arrow-icon {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(10,10,11,.16);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.btn-arrow-icon svg { width: 16px; height: 16px; }

/* ============================================================
   FAQ — caixas arredondadas (pílulas), uma por pergunta
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line-dark); border-radius: 16px;
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--gold-line); box-shadow: 0 10px 26px rgba(27,26,23,.08); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px; font-family: var(--font); font-size: 1.08rem; font-weight: 700; color: var(--on-paper);
}
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gold-line); position: relative; transition: transform .25s, background .25s; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--gold-deep); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.faq-q .plus::before { width: 10px; height: 1.6px; }
.faq-q .plus::after { width: 1.6px; height: 10px; transition: opacity .2s; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 0 0 22px; padding: 0 24px; color: var(--on-paper-mut); font-size: 1.05rem; line-height: 1.65; max-width: 68ch; }

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.form-card { width: 100%; max-width: 560px; background: #fff; border-radius: 22px; padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-soft); }
.form-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--on-paper); margin: 0 0 24px; }
.form-sub { color: var(--on-paper-mut); margin: 0 0 28px; line-height: 1.6; }

.form-success {
  display: none; background: #F0EEE3; border: 1px solid var(--gold-line); color: var(--gold-deep);
  font-weight: 700; padding: 14px 18px; border-radius: 12px; margin-bottom: 20px;
}

/* ---------- Barra de progresso (formulário em 2 etapas) ---------- */
.form-progress { margin-bottom: 24px; }
.form-progress-text { display: block; font-size: .82rem; font-weight: 700; color: var(--on-paper-mut); margin-bottom: 8px; }
.form-progress-text strong { color: var(--gold-deep); }
.form-progress-bar { height: 5px; border-radius: 100px; background: var(--paper-deep); overflow: hidden; }
.form-progress-fill { display: block; height: 100%; width: 0; background: var(--gold-grad); border-radius: 100px; transition: width .35s ease; }

.form-step-actions { display: flex; align-items: center; gap: 14px; }
.form-step-actions .btn-outline-gold { flex: none; border-color: var(--line-dark); color: var(--on-paper-mut); }
.form-step-actions .btn-outline-gold:hover { border-color: var(--gold); background: rgba(198,161,91,.08); }
.form-step-actions .btn-gold { flex: 1; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 700; color: var(--on-paper); margin-bottom: 8px; }
.field .req { color: var(--gold-deep); }
.field input, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line-dark);
  background: var(--paper); font-family: var(--font); font-size: 1.02rem; color: var(--on-paper);
  transition: border-color .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field input::placeholder { color: #9A9585; }

.form-secure { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: .84rem; color: var(--on-paper-mut); }
.form-secure svg { width: 18px; height: 18px; flex: none; color: var(--gold-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-deep); color: var(--on-ink-mut); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { color: var(--on-ink-mut); transition: color .2s; }
.footer-socials a:hover { color: var(--gold-light); }
.footer-socials svg { width: 20px; height: 20px; }
.footer small { font-size: .82rem; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wpp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: transform .25s;
}
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 28px; height: 28px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .awards-inner { flex-direction: column; align-items: center; gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }
  .hero-float-1 { left: 12px; top: 16px; padding: 12px 16px; }
  .hero-float-2 { right: 12px; width: 48px; height: 48px; }
  .hero-float-3 { left: 12px; bottom: 16px; width: 48px; height: 48px; }
  .pain-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .form-card { max-width: 560px; margin: 0 auto; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .bento-item { aspect-ratio: 4/3; }
  .bento-item--tall { grid-column: 1 / span 2; grid-row: 1; aspect-ratio: 16/9; }
  .bento-grid > .bento-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento-grid > .bento-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-item--wide { grid-column: 1 / span 2; grid-row: 3; aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }

  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento-item--tall,
  .bento-grid > .bento-item:nth-child(2),
  .bento-grid > .bento-item:nth-child(3),
  .bento-item--wide {
    grid-column: 1; aspect-ratio: 4/3;
  }
  .bento-grid > .bento-item:nth-child(1) { grid-row: 1; }
  .bento-grid > .bento-item:nth-child(2) { grid-row: 2; }
  .bento-grid > .bento-item:nth-child(3) { grid-row: 3; }
  .bento-item--wide { grid-row: 4; }
}

/* ============================================================
   PÁGINA DE OBRIGADO (obrigado/index.html)
   Split-screen no desktop (imagem + painel escuro), empilhado
   no mobile. Cores e botão vêm das classes já existentes acima
   (.eyebrow, .btn / .btn-gold); aqui só o layout em si e o
   botão quadrado do Instagram.
   ============================================================ */
.obrigado-wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.obrigado-img {
  flex: 0 0 45%;
  margin: 0;
  background: var(--img-salao) center / cover no-repeat;
}

.obrigado-content {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 6vw, 6rem);
  color: var(--on-ink);
  background:
    radial-gradient(900px 480px at 85% 0%, rgba(198,161,91,.14), transparent 60%),
    linear-gradient(135deg, var(--ink-soft) 0%, var(--ink) 55%, var(--ink-deep) 100%);
}

.obrigado-header {
  position: absolute; top: 40px; right: 60px;
  display: flex; align-items: center; gap: 10px;
}
.obrigado-header .brand-logo { height: 36px; width: auto; }
.obrigado-header .brand-sub { display: block; font-size: .58rem; letter-spacing: .16em; color: var(--on-ink-mut); text-transform: uppercase; margin-top: 2px; }

.obrigado-content .eyebrow { color: var(--gold-light); }

.obrigado-content .text-box { max-width: 560px; width: 100%; }

.obrigado-content h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.1; color: #fff; margin: 0 0 26px;
}

.obrigado-content p {
  font-size: 1.16rem; line-height: 1.6; color: var(--on-ink-mut); max-width: 52ch; margin: 0 0 14px;
}

.actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 1.5rem; }

.btn-insta {
  background: var(--on-ink); color: var(--ink-deep);
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, box-shadow .25s;
}
.btn-insta svg { width: 26px; height: 26px; }
.btn-insta:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.3); }

@media (max-width: 900px) {
  .obrigado-wrapper { flex-direction: column; }

  .obrigado-img { flex: none; width: 100%; height: 40vh; }

  .obrigado-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.5rem;
  }

  .obrigado-header {
    position: relative; top: auto; right: auto;
    margin-bottom: 2rem; justify-content: flex-end; width: 100%;
  }
}
