/* ============================================================
   FLINK — Landing Page
   ============================================================ */
:root {
  --lime: #c6d32d;
  --lime-dark: #aeba1f;
  --black: #000000;
  --bg: #050505;
  --panel: #0f0f0f;
  --panel-2: #151515;
  --line: #262626;
  --white: #ffffff;
  --text: #e7e9e4;
  --muted: #9aa0a0;
  --muted-dark: #3a3d1c;
  --maxw: 1200px;
  --pad: 40px;
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow--lime { color: var(--lime); }
.section-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 60px);
  line-height: .98;
  letter-spacing: .01em;
  color: var(--white);
}
.accent, .accent * { color: var(--lime); }
.muted-dark { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn .arrow { font-size: 18px; line-height: 1; }
.btn--lime { background: var(--lime); color: #10130a; }
.btn--lime:hover { background: #d5e23a; transform: translateY(-2px); }
.btn--dark { background: #0d0d0d; color: var(--white); }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--pill { background: var(--lime); color: #10130a; padding: 12px 22px; font-size: 14px; }
.btn--pill:hover { background: #d5e23a; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(6,6,6,.92); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 88px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__img { height: 42px; width: auto; display: block; }
.logo__name { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: .06em; color: var(--lime); }
.logo__sub { font-family: var(--display); font-weight: 500; font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav__links { display: flex; gap: 34px; margin-left: auto; }
.nav__links a {
  font-family: var(--display); text-transform: uppercase; font-weight: 600;
  letter-spacing: .16em; font-size: 14px; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--lime); transition: width .22s ease;
}
.nav__links a:hover { color: var(--lime); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 26px; height: 2px; background: var(--white); transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 60px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: #050505 url("../img/hero-bg.jpg?v=4") no-repeat center;
  background-size: cover;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,1) 42%, rgba(5,5,5,.62) 56%, rgba(5,5,5,.12) 72%, rgba(5,5,5,.22) 100%),
    linear-gradient(180deg, rgba(5,5,5,.25) 0%, rgba(5,5,5,0) 22%, rgba(5,5,5,0) 58%, rgba(5,5,5,.72) 100%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; width: 100%; }
.hero__content { max-width: 640px; }
.hero__title {
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  font-size: 88px; line-height: .92; letter-spacing: .005em;
  color: var(--white); margin: 22px 0 26px;
}
.hero__lead { font-size: 18px; color: var(--text); max-width: 540px; margin-bottom: 34px; }
.hero__cta { margin-bottom: 44px; }
.hero__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.hero__tags li {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .12em;
  font-weight: 600; font-size: 15px; color: var(--text); position: relative; padding-left: 22px;
}
.hero__tags li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }

.hero__stats { display: flex; flex-direction: column; gap: 34px; text-align: right; padding-left: 20px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: 64px; line-height: .9; color: var(--lime); }
.stat__label { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: 15px; color: var(--muted); }

/* ============================================================
   MOVIMENTO (lime block + photo strip)
   ============================================================ */
.movimento { background: var(--lime); color: #10130a; padding: 70px 0; }
.movimento__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.movimento__title {
  font-family: var(--display); text-transform: uppercase; font-weight: 800;
  font-size: clamp(34px, 4.6vw, 58px); line-height: .96; color: #10130a;
}
.movimento__text p { font-size: 18px; color: #1c2109; }
.movimento__text .muted-dark { color: #3f470f; margin-top: 14px; }

.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--bg); }
.photo-strip__item { aspect-ratio: 360 / 316; background-size: cover; background-position: center; filter: saturate(1.05); }

/* ============================================================
   PARA QUEM É
   ============================================================ */
.paraquem { background: var(--bg); padding: 96px 0; }
.paraquem__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.checklist { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 18px; }
.checklist li { position: relative; padding-left: 40px; font-size: 18px; color: var(--text); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime);
  -webkit-mask: no-repeat center / 13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask: no-repeat center / 13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"),
        linear-gradient(#000, #000);
}
/* draw check as dark mark over lime disc */
.checklist li::after {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background:
    no-repeat center / 12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2310130a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"),
    var(--lime);
}
.checklist li::before { display: none; }
.checklist--sm { margin-top: 22px; gap: 12px; }
.checklist--sm li { font-size: 16px; color: var(--muted); padding-left: 34px; }
.checklist--sm li::after { width: 18px; height: 18px; background-size: 10px, cover; }

/* Boxed checklist (Para quem é) — first item active; each lights up on hover */
.checklist--box li { padding-left: 46px; color: var(--muted); cursor: default; transition: color .2s ease; }
.checklist--box li::after {
  width: 28px; height: 28px; border-radius: 7px; top: 0;
  background:
    no-repeat center / 15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%237e8280' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"),
    #17170f;
  border: 1px solid #2b2b1f;
  transition: background-color .2s ease, border-color .2s ease;
}
.checklist--box li.is-active,
.checklist--box li:hover { color: var(--white); font-weight: 600; }
.checklist--box li.is-active::after,
.checklist--box li:hover::after {
  background:
    no-repeat center / 15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2310130a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"),
    var(--lime);
  border-color: var(--lime);
}
/* While hovering the list, the default-active item dims unless it's the one under the cursor */
.checklist--box:hover li.is-active:not(:hover) { color: var(--muted); font-weight: 400; }
.checklist--box:hover li.is-active:not(:hover)::after {
  background:
    no-repeat center / 15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%237e8280' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"),
    #17170f;
  border-color: #2b2b1f;
}

.quote-card {
  background: linear-gradient(150deg, #14140b 0%, #0c0c0c 100%);
  border: 1px solid var(--line); border-left: 4px solid var(--lime);
  padding: 48px 44px; border-radius: 4px;
}
.quote-card__text {
  font-family: var(--display); text-transform: uppercase; font-weight: 700; font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1.08; color: var(--white);
}
.quote-card__cite { margin-top: 28px; font-family: var(--display); text-transform: uppercase; letter-spacing: .18em; font-size: 13px; color: var(--lime); }

/* ============================================================
   MODALIDADES
   ============================================================ */
.modalidades { background: var(--bg); padding: 96px 0; }
.modalidades__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 46px; }
.modalidades__intro { color: var(--muted); font-size: 17px; margin-top: 14px; }
.modalidades__body { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: stretch; }

.accordion { background: var(--panel); border-radius: 10px; overflow: hidden; }
.acc__item:not(:last-child) { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%; background: none; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 28px; text-align: left; cursor: pointer;
}
.acc__titles { display: flex; flex-direction: column; gap: 6px; }
.acc__name { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: 26px; color: var(--white); line-height: 1; transition: color .2s; }
.acc__sub { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--muted); }
.acc__item.is-open .acc__name { color: var(--lime); }
.acc__head:hover .acc__name { color: var(--lime); }
.acc__icon {
  width: 22px; height: 22px; flex: none; background: var(--lime);
  transition: transform .25s ease;
  -webkit-mask: no-repeat center / 20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  mask: no-repeat center / 20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.acc__item.is-open .acc__icon { transform: rotate(180deg); }

.acc__panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__panel > * { margin: 0 30px; }
.acc__panel p { color: var(--text); padding-top: 2px; max-width: 620px; }
.acc__item.is-open .acc__panel { padding-bottom: 26px; }

.modalidades__media { border-radius: 6px; min-height: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; transition: opacity .25s ease; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { background: #010103; padding: 96px 0; }
.diferenciais__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.diferenciais__collage { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 6px; }
.diferenciais__collage div { aspect-ratio: 1 / 1; background-size: cover; background-position: center; border-radius: 2px; }
.numlist { list-style: none; margin-top: 34px; }
.numlist li { display: flex; align-items: center; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 18px; color: var(--text); }
.numlist li:first-child { border-top: 1px solid var(--line); }
.numlist__n { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--lime); min-width: 30px; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como { background: var(--lime); color: #10130a; padding: 84px 0; }
.como__title { font-family: var(--display); text-transform: uppercase; font-weight: 800; font-size: clamp(34px, 4.6vw, 58px); color: #10130a; margin-bottom: 50px; }
.como__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step { border-top: 2px solid rgba(16,19,10,.35); padding-top: 22px; }
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: #10130a; color: var(--lime);
  font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 18px;
}
.step p { font-family: var(--display); text-transform: uppercase; font-weight: 600; font-size: 18px; line-height: 1.15; color: #10130a; }

/* ============================================================
   UNIDADES
   ============================================================ */
.unidades { position: relative; padding: 96px 0; overflow: hidden; }
.unidades__bg { position: absolute; inset: 0; background: url("../img/units-bg.png") center/cover no-repeat; }
.unidades__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,4,4,.9), rgba(4,4,4,.82)); }
.unidades__inner { position: relative; z-index: 1; }
.unidades__title { max-width: 900px; margin-top: 6px; }
.unidades__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 46px; }
.unit {
  background: rgba(10,10,10,.9); border: 1px solid var(--line); backdrop-filter: blur(4px);
  border-radius: 8px; overflow: hidden;
}
.unit__map {
  display: block; width: 100%; height: 180px; border: 0;
  border-bottom: 1px solid var(--line);
}
.unit__body { padding: 26px 30px 32px; }
.unit__name { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: 30px; color: var(--white); display: flex; align-items: center; gap: 12px; }
.unit__addr { font-weight: 600; color: var(--text); margin-top: 12px; }
.unit__hood { color: var(--muted); font-size: 15px; }
.unit hr { border: none; border-top: 1px solid var(--line); margin: 20px 0; }
.unit__row { display: flex; align-items: center; gap: 12px; color: var(--text); margin-bottom: 10px; }
.unit__link { color: inherit; transition: color .2s; }
.unit__link:hover { color: var(--lime); }
.unit__hours { align-items: flex-start; }
.unit__hours .ic { margin-top: 3px; }
.unit__hours span { line-height: 1.6; }
.pin {
  width: 30px; height: 30px; flex: none; border-radius: 8px; background:
    no-repeat center / 17px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2310130a' d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"),
    var(--lime);
}
.ic { width: 20px; height: 20px; flex: none; background: var(--lime); }
.ic--wpp { -webkit-mask: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15l-1.3 4.8 4.9-1.3A10 10 0 1 0 12 2zm0 2a8 8 0 1 1-4.2 14.8l-.3-.2-2.6.7.7-2.5-.2-.3A8 8 0 0 1 12 4zm4.3 10.2c-.2-.1-1.3-.7-1.5-.8s-.4-.1-.5.1l-.7.9c-.1.1-.3.2-.5.1a6.5 6.5 0 0 1-3.2-2.8c-.1-.2 0-.4.1-.5l.4-.5c.1-.2.1-.3 0-.5l-.7-1.7c-.2-.4-.4-.4-.5-.4h-.5c-.2 0-.5.1-.7.3-.9.9-.9 2.1 0 3.5a9 9 0 0 0 4 3.5c1.4.6 2 .5 2.7.4.5-.1 1.3-.6 1.5-1.1.2-.5.2-1 .1-1.1z'/%3E%3C/svg%3E"); mask: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15l-1.3 4.8 4.9-1.3A10 10 0 1 0 12 2zm0 2a8 8 0 1 1-4.2 14.8l-.3-.2-2.6.7.7-2.5-.2-.3A8 8 0 0 1 12 4zm4.3 10.2c-.2-.1-1.3-.7-1.5-.8s-.4-.1-.5.1l-.7.9c-.1.1-.3.2-.5.1a6.5 6.5 0 0 1-3.2-2.8c-.1-.2 0-.4.1-.5l.4-.5c.1-.2.1-.3 0-.5l-.7-1.7c-.2-.4-.4-.4-.5-.4h-.5c-.2 0-.5.1-.7.3-.9.9-.9 2.1 0 3.5a9 9 0 0 0 4 3.5c1.4.6 2 .5 2.7.4.5-.1 1.3-.6 1.5-1.1.2-.5.2-1 .1-1.1z'/%3E%3C/svg%3E"); }
.ic--clock { -webkit-mask: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' d='M12 21a9 9 0 1 1 0-18 9 9 0 0 1 0 18z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' d='M12 7v5l3 2'/%3E%3C/svg%3E"); mask: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' d='M12 21a9 9 0 1 1 0-18 9 9 0 0 1 0 18z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
.unidades__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 8px; margin-top: 40px; }
.unidades__tags li { font-family: var(--display); text-transform: uppercase; font-weight: 600; letter-spacing: .08em; color: var(--lime); font-size: 18px; }
.unidades__tags li:not(:last-child)::after { content: "•"; margin-left: 12px; color: var(--lime); }

/* ============================================================
   CONVITE
   ============================================================ */
.convite { position: relative; background: var(--lime); padding: 110px 0; overflow: hidden; text-align: center; }
.convite__watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 800; font-size: 34vw; line-height: 1;
  color: rgba(16,19,10,.06); letter-spacing: -.02em; pointer-events: none; user-select: none;
}
.convite__inner { position: relative; z-index: 1; }
.convite__title { font-family: var(--display); text-transform: uppercase; font-weight: 800; font-size: clamp(32px, 4.4vw, 60px); line-height: 1; color: rgba(16,19,10,.55); max-width: 900px; margin-inline: auto; }
.convite__accent { color: #10130a; }
.convite__cta { margin-top: 40px; }

/* ============================================================
   INFO PRÁTICAS
   ============================================================ */
.info { background: var(--bg); padding: 60px 0; }
.info__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info__item { background: var(--panel); border-radius: 4px; padding: 40px 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.info__ic { width: 30px; height: 30px; color: var(--lime); }
.info__item p { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; font-size: 15px; color: var(--text); max-width: 200px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: var(--panel); padding: 70px 0 0; overflow: hidden; }
.footer__watermark { position: absolute; left: -2%; bottom: -6%; font-family: var(--display); font-weight: 800; font-size: 20vw; line-height: 1; color: rgba(255,255,255,.025); pointer-events: none; user-select: none; }
.footer__inner { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 50px; }
.footer__brand { display: flex; flex-direction: column; }
.footer__brand .logo__name { color: var(--lime); font-size: 30px; }
.footer__logo { height: 54px; width: auto; max-width: 240px; object-fit: contain; align-self: flex-start; display: block; margin-bottom: 6px; }
.footer__tagline { color: var(--muted); margin-top: 18px; font-size: 15px; }
.footer__contacts { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer__link { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 15px; color: var(--text); }
.footer__link:hover { color: var(--lime); }
.footer__bar { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; padding-bottom: 30px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer__bar strong { color: var(--lime); font-weight: 700; }

/* ============================================================
   FLOATING WHATSAPP BUTTON (unit chooser)
   ============================================================ */
.wa-fab { position: fixed; right: 26px; bottom: 26px; z-index: 300; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.wa-fab__btn {
  position: relative; width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .38); transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab__btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: 0; animation: waPulse 2.2s ease-out infinite; }
.wa-fab__btn:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37, 211, 102, .5); }
.wa-fab__btn svg { position: relative; z-index: 1; }
.wa-fab__icon-wpp { width: 34px; height: 34px; fill: #fff; }
.wa-fab__icon-close { width: 26px; height: 26px; display: none; }
.wa-fab.is-open .wa-fab__btn::before { animation: none; }
.wa-fab.is-open .wa-fab__icon-wpp { display: none; }
.wa-fab.is-open .wa-fab__icon-close { display: block; }

.wa-fab__menu {
  display: flex; flex-direction: column; gap: 8px; width: 250px; padding: 14px;
  background: #0f0f0f; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
  opacity: 0; transform: translateY(12px) scale(.96); transform-origin: bottom right;
  pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.wa-fab.is-open .wa-fab__menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-fab__title { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--muted); padding: 4px 6px 6px; }
.wa-fab__opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; background: #17170f; color: var(--white); transition: background .18s ease; }
.wa-fab__opt:hover { background: #1f2410; }
.wa-fab__opt svg { width: 26px; height: 26px; fill: #25d366; flex: none; }
.wa-fab__opt span { display: flex; flex-direction: column; line-height: 1.2; }
.wa-fab__opt strong { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 15px; }
.wa-fab__opt small { color: var(--muted); font-size: 12px; }

@keyframes waPulse {
  0% { transform: scale(1); opacity: .55; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}
@media (max-width: 560px) {
  .wa-fab { right: 16px; bottom: 16px; }
  .wa-fab__btn { width: 54px; height: 54px; }
  .wa-fab__icon-wpp { width: 30px; height: 30px; }
  .wa-fab__menu { width: min(250px, calc(100vw - 40px)); }
}
@media (prefers-reduced-motion: reduce) { .wa-fab__btn::before { animation: none; } }

/* Unit chooser modal (general CTAs) */
.wa-modal { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0, 0, 0, .72); }
.wa-modal.is-open { display: flex; }
.wa-modal__box {
  position: relative; width: 100%; max-width: 380px; background: #0f0f0f;
  border: 1px solid var(--line); border-radius: 16px; padding: 30px 24px 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .65);
}
.wa-modal__title { display: block; font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: 26px; color: var(--white); line-height: 1; }
.wa-modal__sub { color: var(--muted); font-size: 14px; margin: 10px 0 18px; }
.wa-modal .wa-fab__opt { margin-top: 10px; }
.wa-modal__close { position: absolute; top: 10px; right: 14px; width: 34px; height: 34px; background: none; border: none; color: var(--muted); font-size: 30px; line-height: 1; cursor: pointer; transition: color .18s ease; }
.wa-modal__close:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  :root { --pad: 26px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 88px; left: 0; right: 0;
    background: rgba(6,6,6,.98); padding: 24px 26px; gap: 20px; border-bottom: 1px solid var(--line);
  }
  .hero__title { font-size: 72px; }
  /* Mobile/tablet: keep the athlete in frame */
  .hero__bg { background-size: cover; background-position: 58% center; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: row; text-align: left; padding-left: 0; gap: 32px; margin-top: 10px; }
  .movimento__inner,
  .paraquem__inner,
  .diferenciais__inner { grid-template-columns: 1fr; gap: 34px; }
  .modalidades__body { grid-template-columns: 1fr; }
  .modalidades__media { min-height: 320px; order: -1; }
  .como__steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .unidades__grid { grid-template-columns: 1fr; }
  .info__inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 560px) {
  .hero__title { font-size: 52px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .como__steps { grid-template-columns: 1fr; }
  .footer__contacts { align-items: flex-start; }
  .hero__stats { flex-wrap: wrap; }
}
