/* ============================================================
   GoUP — Landing (implementação fiel do GoUP Landing.dc.html)
   Preto / Amarelo #FFD100 / Branco · Montserrat + Poppins
   ============================================================ */

:root {
  --black: #000;
  --yellow: #ffd100;
  --white: #fff;
  --maxw: 1280px;
  --head: "Montserrat", system-ui, sans-serif;
  --body: "Poppins", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}
::selection { background: var(--yellow); color: #000; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; }

/* ===== Keyframes ===== */
@keyframes goupPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
@keyframes goupScrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { opacity: 0; }
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Tipografia compartilhada ===== */
.kicker {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--yellow); font-weight: 600;
}
.h2 {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(34px, 5vw, 60px); line-height: 1;
  letter-spacing: -0.01em; margin: 16px 0 0; text-transform: uppercase;
}
.h2-sm { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; }
.lead {
  margin: 24px 0 0; font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65; color: rgba(255, 255, 255, 0.65); font-weight: 300;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--head); font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; border: none;
  border-radius: 8px; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-sm { font-size: 12px; letter-spacing: 0.08em; padding: 12px 22px; }
.btn-md { font-size: 13px; padding: 15px 30px; }
.btn-lg { font-size: 14px; padding: 18px 34px; }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 209, 0, 0.3); }
.btn-lg.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(255, 209, 0, 0.32); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover { border-color: var(--yellow); background: rgba(255, 209, 0, 0.08); transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 104px; display: flex; align-items: center; justify-content: space-between;
  transition: height 0.3s ease;
}
.header.scrolled .header-inner { height: 74px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 72px; width: auto; transition: height 0.3s ease; }
.header.scrolled .brand-logo { height: 50px; }
.brand-fallback {
  display: none; font-family: var(--head); font-weight: 900;
  font-size: 38px; letter-spacing: -0.04em; line-height: 1;
}
.brand-fallback .go { color: var(--white); }
.brand-fallback .up { color: var(--yellow); }
.header.scrolled .brand-fallback { font-size: 28px; }

.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-link {
  color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 2px;
  opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-link:hover { opacity: 1; color: var(--yellow); }

.burger {
  display: none; flex-direction: column; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; border-radius: 2px; }
.burger-top { background: var(--yellow); transition: transform 0.3s ease; }
.burger-mid { background: var(--white); margin: 6px 0; transition: opacity 0.2s ease; }
.burger-bot { background: var(--yellow); transition: transform 0.3s ease; }
.burger.open .burger-top { transform: translateY(8px) rotate(45deg); }
.burger.open .burger-mid { opacity: 0; }
.burger.open .burger-bot { transform: translateY(-8px) rotate(-45deg); }

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: #000; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 74px; transform: translateY(-110%); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; padding: 24px clamp(20px, 5vw, 40px) 32px; }
.mobile-link {
  color: var(--white); text-decoration: none; font-family: var(--head);
  font-weight: 700; font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-cta { margin-top: 20px; font-size: 15px; padding: 16px; width: 100%; }
.mobile-addr { margin-top: 20px; color: #666; font-size: 13px; line-height: 1.6; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0; background-color: #111;
  background-image: url("../img/hero.jpg");
  background-size: cover; background-position: center;
}
.hero-photo-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-photo-label span {
  font-family: monospace; font-size: 13px; letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.22); text-transform: uppercase;
}
.hero-overlay-v {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.96) 100%);
}
.hero-overlay-h {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px) clamp(70px, 11vh, 120px);
}
.eyebrow-row { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.eyebrow-bar { width: 34px; height: 3px; background: var(--yellow); }
.eyebrow { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--yellow); font-weight: 600; }
.hero-title {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(46px, 8.5vw, 108px); line-height: 0.94;
  letter-spacing: -0.01em; margin: 0; text-transform: uppercase;
}
.hero-title .hl { color: var(--yellow); }
.hero-sub {
  max-width: 560px; margin: 28px 0 0; font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6; color: rgba(255, 255, 255, 0.78); font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll-mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll-mouse span {
  width: 3px; height: 7px; background: var(--yellow); border-radius: 2px;
  animation: goupScrollDot 1.6s ease-in-out infinite;
}

/* ============================================================
   FAIXA BENEFÍCIOS
   ============================================================ */
.benefits { background: var(--yellow); color: #000; }
.benefits-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.benefit { display: flex; flex-direction: column; gap: 8px; }
.benefit-title {
  font-family: var(--head); font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px); text-transform: uppercase; line-height: 1;
}
.benefit-desc { font-size: 14px; line-height: 1.5; color: rgba(0, 0, 0, 0.7); }

/* ============================================================
   SECTIONS GENÉRICAS
   ============================================================ */
.section { padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px); }
.section-black { background: var(--black); }
.section-deep { background: #0a0a0a; }
.section .container { max-width: var(--maxw); margin: 0 auto; }

.head-center { text-align: center; max-width: 760px; margin: 0 auto; }
.head-left { max-width: 640px; }

/* ===== Método / pilares ===== */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: clamp(48px, 6vw, 72px);
}
.pillar {
  position: relative; overflow: hidden; background: #111;
  border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 14px;
  padding: 36px 30px; transition: transform 0.25s ease, border-color 0.25s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(255, 209, 0, 0.4); }
.pillar-bar { position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--yellow); transition: width 0.3s ease; }
.pillar:hover .pillar-bar { width: 100%; }
.pillar-num { font-family: var(--head); font-weight: 800; font-size: 13px; color: var(--yellow); letter-spacing: 0.1em; }
.pillar-title { font-family: var(--head); font-weight: 800; font-size: 24px; text-transform: uppercase; margin: 14px 0 12px; }
.pillar-desc { font-size: 14.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.6); font-weight: 300; margin: 0; }

/* ===== Modalidades ===== */
.modal-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(36px, 5vw, 56px);
}
.modal-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-tab {
  font-family: var(--head); font-weight: 700; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 11px 20px; border-radius: 8px; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15); background: transparent; color: var(--white);
  transition: all 0.2s ease;
}
.modal-tab:hover { border-color: rgba(255, 209, 0, 0.5); }
.modal-tab.is-active { border-color: var(--yellow); background: var(--yellow); color: #000; }

.modal-panel {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 4vw, 56px);
  align-items: center; background: #111; border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px; overflow: hidden;
}
.modal-img {
  position: relative; min-height: clamp(320px, 44vw, 480px); background-color: #141414;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.modal-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)); }
.modal-img-label {
  position: relative; z-index: 1; font-family: monospace; font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28); text-transform: uppercase; text-align: center; padding: 0 24px;
}
.modal-body { padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 56px) clamp(32px, 4vw, 56px) 0; }
.modal-kicker { font-family: var(--head); font-weight: 800; font-size: 13px; color: var(--yellow); letter-spacing: 0.14em; text-transform: uppercase; }
.modal-title { font-family: var(--head); font-weight: 900; font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; line-height: 1; margin: 14px 0 0; }
.modal-divider { display: block; width: 48px; height: 3px; background: var(--yellow); margin: 20px 0; }
.modal-desc { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7; color: rgba(255, 255, 255, 0.72); font-weight: 300; margin: 0 0 24px; }
.modal-bullets { display: flex; flex-direction: column; gap: 12px; }
.bullet { display: flex; align-items: center; gap: 12px; }
.bullet-dot { width: 7px; height: 7px; background: var(--yellow); transform: rotate(45deg); flex: none; }
.bullet span:last-child { font-size: 15px; color: rgba(255, 255, 255, 0.82); }
.modal-cta { margin-top: 32px; }

/* ===== Diferenciais ===== */
.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; margin-top: clamp(40px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px; overflow: hidden;
}
.diff { background: #0c0c0c; padding: 38px 32px; transition: background 0.25s ease; }
.diff:hover { background: #131313; }
.diff-num { font-family: var(--head); font-weight: 900; font-size: 30px; color: rgba(255, 209, 0, 0.9); }
.diff-title { font-family: var(--head); font-weight: 700; font-size: 19px; text-transform: uppercase; margin: 16px 0 10px; letter-spacing: 0.01em; }
.diff-desc { font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); font-weight: 300; margin: 0; }

/* ===== Depoimentos reais (prints) ===== */
.prints {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px; margin-top: clamp(40px, 5vw, 56px);
}
.print {
  margin: 0; background: #111; border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.print:hover { transform: translateY(-6px); border-color: rgba(255, 209, 0, 0.4); }
.print img { width: 100%; height: auto; display: block; border-bottom: 2px solid var(--yellow); }
.print figcaption { padding: 16px 18px; }
.print figcaption strong { display: block; font-family: var(--head); font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em; }
.print figcaption span { font-size: 13px; color: var(--yellow); }

/* ===== Prova social (legado) ===== */
.testimonials { max-width: 980px; margin: 0 auto; text-align: center; }
.testimonial { position: relative; margin-top: 40px; min-height: 220px; }
.testimonial-quote {
  font-family: var(--head); font-weight: 600; font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.3; letter-spacing: -0.01em; margin: 0; transition: opacity 0.4s ease;
}
.testimonial-author { margin-top: 28px; }
.testimonial-name { display: block; font-family: var(--head); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; }
.testimonial-role { display: block; font-size: 13px; color: var(--yellow); margin-top: 4px; }
.testimonial-dots { display: flex; gap: 10px; justify-content: center; margin-top: 36px; }
.dot { width: 9px; height: 9px; border-radius: 6px; border: none; cursor: pointer; padding: 0; background: rgba(255, 255, 255, 0.22); transition: all 0.3s ease; }
.dot.is-active { width: 26px; background: var(--yellow); }

/* ===== Estrutura / galeria ===== */
.struct-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: clamp(32px, 4vw, 48px);
}
.struct-lead { max-width: 360px; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); font-weight: 300; margin: 0; }
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: clamp(180px, 22vw, 260px); gap: 14px;
}
.cell {
  position: relative; display: flex; border-radius: 12px; overflow: hidden;
  background-color: #141414;
  background-size: cover; background-position: center;
}
.cell-wide { grid-column: span 2; }
.cell-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.75)); }
.cell-label {
  position: relative; font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  color: #fff; text-transform: uppercase; align-self: flex-end; padding: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

/* ============================================================
   CTA + FORMULÁRIO
   ============================================================ */
.section-cta { background: linear-gradient(180deg, #0a0a0a, #000); }
.cta-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px); align-items: start;
}
.cta-text { margin: 24px 0 0; font-size: 16px; line-height: 1.65; color: rgba(255, 255, 255, 0.65); font-weight: 300; max-width: 420px; }
.contact-rows { margin-top: 34px; display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px; flex: none; border: 1px solid rgba(255, 209, 0, 0.4);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-family: monospace; font-size: 16px;
}
.contact-label { display: block; font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-value { color: var(--white); text-decoration: none; font-weight: 500; font-size: 16px; }
a.contact-value:hover { color: var(--yellow); }

.form-card {
  background: #111; border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: clamp(28px, 4vw, 40px); position: relative;
}
.form-card-bar { position: absolute; top: 0; left: 32px; right: 32px; height: 2px; background: var(--yellow); border-radius: 2px; }
.form-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-bottom: 8px; font-weight: 500; }
.form-label + .form-input { margin-bottom: 0; }
.form-input {
  width: 100%; background: #0a0a0a; border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px; padding: 15px 16px; color: var(--white);
  font-family: var(--body); font-size: 15px; outline: none; transition: border-color 0.2s ease;
}
.form-input:focus { border-color: rgba(255, 209, 0, 0.6); }
.form-input.has-error { border-color: #ff6b6b; }
.form-select { appearance: none; cursor: pointer; }
.form-label:not(:first-child) { margin-top: 20px; }
.form-error { display: none; color: #ff6b6b; font-size: 12.5px; margin-top: 6px; }
.form-error.show { display: block; }
.form-submit { width: 100%; margin-top: 28px; font-size: 14px; padding: 17px; }
.form-note { text-align: center; font-size: 12px; color: #555; margin: 16px 0 0; }

.form-success { text-align: center; padding: 30px 10px; }
.success-check {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  background: rgba(255, 209, 0, 0.12); border: 1.5px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 30px; font-family: var(--head); font-weight: 800;
}
.success-title { font-family: var(--head); font-weight: 800; font-size: 24px; text-transform: uppercase; margin: 0 0 12px; }
.success-text { font-size: 15px; color: rgba(255, 255, 255, 0.65); line-height: 1.6; margin: 0 0 26px; font-weight: 300; }
.success-reset { display: block; margin: 18px auto 0; background: none; border: none; color: #666; font-size: 13px; cursor: pointer; text-decoration: underline; }

/* ============================================================
   MAPA / FAIXA LOCAL
   ============================================================ */
.map-band { position: relative; background: #0a0a0a; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.map-text { padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.map-lead { margin: 22px 0 0; font-size: 15.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.62); font-weight: 300; max-width: 420px; }
.map-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--yellow);
  font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none; width: fit-content; transition: gap 0.2s ease;
}
.map-link:hover { gap: 16px; }
.map-photo {
  position: relative; min-height: clamp(280px, 30vw, 420px); background: #121212;
}
.map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #000; border-top: 1px solid rgba(255, 255, 255, 0.07); padding: clamp(48px, 6vw, 64px) clamp(20px, 4vw, 48px) 36px; }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; }
.footer-brand-col { max-width: 320px; }
.footer-logo { height: 46px; width: auto; }
.footer-fallback { font-size: 28px; }
.footer-desc { margin: 20px 0 0; font-size: 14px; line-height: 1.6; color: #666; font-weight: 300; }
.footer-cols { display: flex; gap: clamp(40px, 6vw, 72px); flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--yellow); font-weight: 600; margin-bottom: 6px; }
.footer-col a { color: #999; text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-col span { color: #999; font-size: 14px; }
.footer-bottom {
  max-width: var(--maxw); margin: 44px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}
.footer-bottom span { font-size: 12.5px; color: #555; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  animation: goupPulse 2.6s ease-in-out infinite; transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVO ( < 880px )
   ============================================================ */
@media (max-width: 880px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }
  .modal-panel { grid-template-columns: 1fr; }
  .modal-body { padding: 0 clamp(24px, 6vw, 36px) clamp(32px, 6vw, 44px); }
  .cell-wide { grid-column: span 1; }
}

/* Reduz movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll-mouse span, .whatsapp-float { animation: none; }
}
