@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* =============================================================
   A9 Sites — tema "academia-pro" (Forja Performance)
   Grafite quase-preto + laranja-fogo com gradiente âmbar,
   ciano só em dado. Bento grid, vidro sutil, números em mono.
   O Tailwind (CDN) cuida do layout utilitário; aqui ficam os
   componentes, a tipografia e os contrastes garantidos.
   ============================================================= */

:root {
    /* os triplets --*-rgb são impressos por cada página (settings) */
    --brand-rgb: 255 90 31;
    --dark-rgb: 12 13 16;
    --amber-rgb: 255 168 31;
    --cyan-rgb: 34 211 238;
    --brand: rgb(var(--brand-rgb));
    --amber: rgb(var(--amber-rgb));
    --cyan: rgb(var(--cyan-rgb));
    --bg: rgb(var(--dark-rgb));
    --surface: #131519;
    --surface-2: #181B21;
    --line: rgba(255, 255, 255, .09);
    --line-2: rgba(255, 255, 255, .055);
    --ink: #F2F4F7;
    --muted: #A2A9B6;
    --muted-2: #838B98;
    --grad: linear-gradient(115deg, rgb(var(--brand-rgb)) 0%, rgb(var(--amber-rgb)) 100%);
    --shadow: 0 32px 70px -40px rgba(0, 0, 0, .95);
    --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Duotone quente: as fotos do acervo vêm com neon verde-frio; aqui elas viram
   monocromático âmbar para casar com a paleta de fogo do tema. */
.hero-media img, .bento-photo img, .shot img {
    filter: grayscale(1) sepia(.5) saturate(2.1) hue-rotate(-14deg) brightness(1.5) contrast(.88);
}
::selection { background: var(--brand); color: #0C0D10; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- tipografia -------------------------------------- */
.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .005em;
    margin: 0;
}
.display-1 { font-size: clamp(2.45rem, 6.6vw, 4.9rem); line-height: .98; }
.display-2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.02; }
.display-3 { font-size: clamp(1.5rem, 2.7vw, 2.05rem); line-height: 1.08; }
.display-4 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.14; }

.num { font-family: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace; font-variant-numeric: tabular-nums; }
.num-xl { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; letter-spacing: -.03em; }
.num-lg { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1; letter-spacing: -.03em; }

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead { color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.1rem); line-height: 1.72; }
.muted { color: var(--muted); }
.muted-2 { color: var(--muted-2); }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
}
.kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    flex: none;
}
.kicker-plain::before { display: none; }

.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .38rem .8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    font-size: .76rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
}
.chip svg { color: var(--brand); flex: none; }
.chip-cyan svg { color: var(--cyan); }

/* ---------- superfícies ------------------------------------- */
.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tile {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(170deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .012) 46%, rgba(255, 255, 255, .022) 100%);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .35s, box-shadow .35s;
}
.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(120% 90% at 50% -20%, rgba(255, 90, 31, .16), transparent 62%);
    opacity: 0;
    transition: opacity .35s;
}
.tile:hover { transform: translateY(-4px); border-color: rgba(255, 168, 31, .38); box-shadow: var(--shadow); }
.tile:hover::after { opacity: 1; }
.tile > * { position: relative; z-index: 1; }

.tile-flat { background: var(--surface); }
.tile-solid { background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--radius); }

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 90, 31, .13);
    border: 1px solid rgba(255, 90, 31, .3);
    color: var(--brand);
    flex: none;
}
.icon-badge-cyan { background: rgba(34, 211, 238, .1); border-color: rgba(34, 211, 238, .28); color: var(--cyan); }
.icon-badge-sm { width: 38px; height: 38px; border-radius: 12px; }

.hair { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; margin: 0; }
.glow-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 90, 31, .55), rgba(255, 168, 31, .35), transparent); border: 0; margin: 0; }

/* ---------- botões ------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .88rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.2;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s, border-color .25s, color .25s;
    text-align: center;
}
.btn svg { flex: none; }
.btn-solid { background: var(--grad); color: #0C0D10; box-shadow: 0 14px 34px -18px rgba(255, 120, 31, .95); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -18px rgba(255, 120, 31, 1); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { border-color: rgba(255, 168, 31, .55); background: rgba(255, 168, 31, .07); transform: translateY(-2px); }
.btn-line { border-color: rgba(255, 90, 31, .45); color: var(--amber); }
.btn-line:hover { background: rgba(255, 90, 31, .1); transform: translateY(-2px); }
.btn-sm { padding: .62rem 1.05rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- header ------------------------------------------ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(12, 13, 16, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--grad);
    color: #0C0D10;
    flex: none;
}
.brand-top {
    display: block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted-2);
    line-height: 1.1;
}
.brand-name {
    display: block;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 1.24rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--ink);
    white-space: nowrap;
}
.nav-link {
    position: relative;
    font-size: .92rem;
    font-weight: 500;
    color: var(--muted);
    padding: .4rem 0;
    transition: color .25s;
}
.nav-link:hover, .nav-link.on { color: var(--ink); }
.nav-link.on::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad);
}
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--ink);
    cursor: pointer;
}
.nav-mobile {
    display: none;
    background: rgba(12, 13, 16, .97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.4rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
    display: block;
    padding: .72rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile a.btn { display: flex; padding: .88rem 1.5rem; border-bottom: 0; color: #0C0D10; }

/* ---------- hero -------------------------------------------- */
.hero { position: relative; padding-top: 108px; overflow: hidden; }
.hero::before {
    content: "";
    position: absolute;
    top: -22%;
    left: 50%;
    width: min(1100px, 130%);
    height: 620px;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 90, 31, .2), transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(70% 60% at 50% 25%, #000, transparent 78%);
    -webkit-mask-image: radial-gradient(70% 60% at 50% 25%, #000, transparent 78%);
}
.hero > * { position: relative; z-index: 1; }

.hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 13, 16, 0) 38%, rgba(12, 13, 16, .88) 100%);
}
.hero-media-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .8rem;
}

.rating-row { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 15px; height: 15px; }

/* ---------- faixa de estatísticas --------------------------- */
.stat-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0));
}
.stat-cell { padding: 1.35rem .4rem; text-align: center; border-left: 1px solid var(--line-2); }
.stat-cell:nth-child(odd) { border-left: 0; }
.stat-cell:nth-child(n+3) { border-top: 1px solid var(--line-2); }
@media (min-width: 1024px) {
    .stat-cell:nth-child(odd) { border-left: 1px solid var(--line-2); }
    .stat-cell:first-child { border-left: 0; }
    .stat-cell:nth-child(n+3) { border-top: 0; }
}
.stat-cell b { display: block; color: var(--ink); white-space: nowrap; }
.stat-cell span {
    display: block;
    margin-top: .3rem;
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- bento ------------------------------------------- */
.bento { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
    .bento { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: minmax(158px, auto); gap: 16px; }
    .b-tall { grid-column: span 3; grid-row: span 2; }
    .b-wide { grid-column: span 3; }
    .b-third { grid-column: span 2; }
}
.bento-photo { position: relative; height: 190px; overflow: hidden; }
.bento-photo img { width: 100%; height: 100%; object-fit: cover; }
.bento-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 13, 16, .1), rgba(12, 13, 16, .92)); }

.meter { display: grid; gap: .55rem; }
.meter-row { display: grid; grid-template-columns: 1fr auto; gap: .35rem .8rem; align-items: center; }
.meter-row > span:first-child { font-size: .82rem; color: var(--muted); }
.meter-row > span:last-child { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .82rem; font-weight: 600; color: var(--cyan); }
.meter-bar { grid-column: 1 / -1; height: 5px; border-radius: 99px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.meter-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, rgba(34, 211, 238, .85), rgba(34, 211, 238, .35)); }

/* ---------- cards de modalidade ------------------------------ */
.mod-card { display: flex; flex-direction: column; gap: .85rem; padding: 1.4rem; height: 100%; }
.mod-meta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .72rem;
    letter-spacing: .04em;
    color: var(--cyan);
}
.mod-index {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .72rem;
    color: var(--muted-2);
    letter-spacing: .1em;
}

/* ---------- planos ------------------------------------------ */
.plan {
    display: flex;
    flex-direction: column;
    padding: 1.6rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    height: 100%;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .35s, box-shadow .35s;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(255, 168, 31, .4); box-shadow: var(--shadow); }
.plan-featured {
    border-color: rgba(255, 90, 31, .55);
    background: linear-gradient(180deg, rgba(255, 90, 31, .1), rgba(255, 255, 255, .02) 42%, rgba(255, 255, 255, .01));
    box-shadow: 0 30px 66px -42px rgba(255, 90, 31, .9);
}
/* o selo em branco só existe para alinhar os três cards lado a lado */
.plan-tag-empty { visibility: hidden; }
@media (max-width: 767px) { .plan-tag-empty { display: none; } }
.plan-tag {
    align-self: flex-start;
    padding: .3rem .72rem;
    border-radius: 999px;
    background: var(--grad);
    color: #0C0D10;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: .85rem;
}
.plan-price { display: block; }
.plan-price em { display: block; margin-top: .45rem; font-style: normal; font-size: .8rem; color: var(--muted-2); font-family: 'JetBrains Mono', ui-monospace, monospace; }
.plan-list { list-style: none; margin: 1.1rem 0 1.4rem; padding: 0; display: grid; gap: .6rem; }
.plan-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.plan-list li svg { color: var(--brand); flex: none; margin-top: 3px; }

/* ---------- tabela comparativa e grade ----------------------- */
.tbl-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); -webkit-overflow-scrolling: touch; }
table.a9 { width: 100%; min-width: 620px; border-collapse: collapse; }
table.a9 th, table.a9 td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line-2); font-size: .88rem; }
table.a9 thead th {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(255, 255, 255, .03);
    white-space: nowrap;
}
table.a9 tbody th { font-weight: 500; color: var(--ink); }
table.a9 td { color: var(--muted); }
table.a9 tbody tr:last-child th, table.a9 tbody tr:last-child td { border-bottom: 0; }
table.a9 tbody tr:hover td, table.a9 tbody tr:hover th { background: rgba(255, 255, 255, .022); }
.cell-yes { color: var(--brand); }
.cell-no { color: var(--muted-2); }
.slot { display: block; font-weight: 600; color: var(--ink); font-size: .86rem; }
.slot-off { color: var(--muted-2); font-size: .86rem; }
.hour-col { font-family: 'JetBrains Mono', ui-monospace, monospace; color: var(--amber) !important; white-space: nowrap; font-weight: 600; }

/* ---------- treinadores e depoimentos ------------------------ */
.coach { padding: 1.4rem; height: 100%; display: flex; flex-direction: column; gap: .8rem; }
.monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--grad);
    color: #0C0D10;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 1.28rem;
    letter-spacing: .04em;
    flex: none;
}
.cref { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .7rem; letter-spacing: .1em; color: var(--muted-2); text-transform: uppercase; }

.quote { padding: 1.5rem; height: 100%; display: flex; flex-direction: column; gap: 1rem; }
.quote p { margin: 0; flex: 1 1 auto; color: var(--ink); font-size: .96rem; line-height: 1.7; }
.result-pill {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .34rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, .3);
    background: rgba(34, 211, 238, .09);
    color: var(--cyan);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .74rem;
    font-weight: 600;
}

/* ---------- galeria ----------------------------------------- */
.shot { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
/* lava o preto puro das fotos com a luz quente da marca (as imagens do acervo
   sao muito escuras; sem isso um crop escuro parece um bloco vazio) */
.shot, .bento-photo, .hero-media { isolation: isolate; }
.shot::before, .bento-photo::before, .hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    background: linear-gradient(155deg, rgba(255, 124, 44, .3), rgba(255, 90, 31, .1) 52%, rgba(34, 211, 238, .08));
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22, 1, .36, 1); }
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem .95rem .85rem;
    font-size: .82rem;
    color: #F2F4F7;
    background: linear-gradient(180deg, rgba(12, 13, 16, 0), rgba(12, 13, 16, .92));
}

/* ---------- formulários -------------------------------------- */
.form-card { padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.field { display: block; margin-bottom: .95rem; }
.field > span {
    display: block;
    margin-bottom: .4rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: .78rem .9rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
    color: var(--ink);
    font-family: inherit;
    font-size: .95rem;
    line-height: 1.4;
    transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input::placeholder, .field textarea::placeholder { color: #6B7280; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: rgba(255, 90, 31, .65);
    background: rgba(255, 255, 255, .06);
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, #A2A9B6 50%), linear-gradient(135deg, #A2A9B6 50%, transparent 50%); background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.2rem; }
.field select option { background: #14161B; color: #F2F4F7; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.alert-ok {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    padding: .9rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(34, 211, 238, .35);
    background: rgba(34, 211, 238, .1);
    color: #CFF7FF;
    margin-bottom: 1.1rem;
    font-size: .9rem;
}
.alert-ok svg { color: var(--cyan); flex: none; margin-top: 2px; }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .93rem; color: var(--muted); }
.info-list li a { color: var(--ink); }
.info-list li a:hover { color: var(--amber); }
.info-list strong { color: var(--ink); font-weight: 600; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.map-frame iframe { display: block; width: 100%; height: 258px; border: 0; filter: grayscale(1) invert(.92) hue-rotate(180deg) contrast(.86); }
.map-cap {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .9rem 1rem;
    border-top: 1px solid var(--line);
    background: var(--surface-2);
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.45;
    transition: background .25s, color .25s;
}
.map-cap strong { color: var(--ink); font-weight: 600; }
.map-cap > svg:last-child { margin-left: auto; color: var(--amber); flex: none; }
.map-cap:hover { background: rgba(255, 168, 31, .08); color: var(--ink); }

/* ---------- faq --------------------------------------------- */
.faq { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); padding: 1rem 1.15rem; }
.faq + .faq { margin-top: .7rem; }
.faq summary { cursor: pointer; list-style: none; display: flex; gap: 1rem; align-items: center; justify-content: space-between; font-weight: 600; font-size: .98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: 'JetBrains Mono', monospace; color: var(--amber); font-size: 1.3rem; line-height: 1; flex: none; }
.faq[open] summary::after { content: "\2212"; }
.faq p { margin: .8rem 0 .2rem; color: var(--muted); font-size: .92rem; }

/* ---------- cabeçalho de página interna ---------------------- */
.page-head { position: relative; padding: 130px 0 46px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-head::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: min(900px, 120%);
    height: 460px;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 90, 31, .17), transparent 70%);
    pointer-events: none;
}
.page-head > * { position: relative; z-index: 1; }
.crumb { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.crumb a:hover { color: var(--amber); }

/* ---------- cta band ----------------------------------------- */
.cta-band {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 168, 31, .3);
    background: linear-gradient(120deg, rgba(255, 90, 31, .16), rgba(255, 168, 31, .07) 55%, rgba(255, 255, 255, .02));
    padding: clamp(1.6rem, 4vw, 3rem);
}
.cta-band::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 90, 31, .3), transparent 70%);
    pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }

/* ---------- rodapé ------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: #0A0B0E; padding-bottom: 104px; }
.foot-link { display: block; padding: .32rem 0; font-size: .92rem; color: var(--muted); }
.foot-link:hover { color: var(--amber); }
.foot-head { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin: 0 0 .8rem; }
.social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: var(--muted);
    transition: color .25s, border-color .25s, background .25s;
}
.social:hover { color: var(--amber); border-color: rgba(255, 168, 31, .5); background: rgba(255, 168, 31, .08); }

/* ---------- reveal ------------------------------------------- */
.js .rv { opacity: 0; transform: translateY(20px); }
.js .rv.on { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1); }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; } }

/* o reveal zera o transform; o hover precisa vencer em especificidade */
.js .rv.on.tile:hover { transform: translateY(-4px); }
.js .rv.on.plan:hover { transform: translateY(-4px); }

/* ---------- utilitários finos -------------------------------- */
.h-med { height: 300px; }
@media (min-width: 640px) { .h-med { height: 340px; } }
@media (min-width: 1024px) { .h-med { height: 396px; } }

.gal { display: grid; gap: 14px; grid-template-columns: 1fr; }
.gal .shot { height: 240px; }
@media (min-width: 768px) {
    .gal { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 206px; }
    .gal .shot { height: auto; }
    .gal .g1 { grid-column: span 2; grid-row: span 2; }
    .gal .g2 { grid-column: span 2; }
    .gal .g3 { grid-column: span 2; }
}

.sec { padding: clamp(3.2rem, 7vw, 5.6rem) 0; }
.sec-tight { padding: clamp(2.4rem, 5vw, 4rem) 0; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .wrap { padding: 0 2rem; } }
.max-56 { max-width: 56ch; }
.max-64 { max-width: 64ch; }
