/* =====================================================================
   AGÊNCIA DE TRIBUTOS — folha de estilo
   Direção: escuro e cinematográfico (palco e luzes)
   Tipografia: Big Shoulders Display (display) · Hanken Grotesk (corpo) · DM Mono (etiquetas)
   ===================================================================== */

:root {
    /* Cor — sala às escuras, focos de palco */
    --ink: #08080d; /* fundo, sala às escuras */
    --ink-2: #0d0d15; /* fundo alternado */
    --surface: #13131d; /* cartões */
    --surface-2: #1a1a27; /* cartões elevados */
    --line: rgba(255, 255, 255, 0.08);
    --line-soft: rgba(255, 255, 255, 0.05);

    --paper: #f3f0e8; /* texto principal, branco quente de holofote */
    --fog: #b3b3c2; /* texto secundário */
    --haze: #6c6c7e; /* texto terciário, legendas */

    --amber: #ecb64c; /* luz de sala, acento da agência */
    --amber-deep: #c9912f;

    /* Gel de palco por banda */
    --gel-peakles: #43c069;
    --gel-doa: #ff4d4d;
    --gel-fishes: #36c4e8;
    --gel-mingos: #ff8a2b;

    --maxw: 1240px;
    --gutter: clamp(20px, 5vw, 64px);

    --ff-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
    --ff-body: "Hanken Grotesk", system-ui, sans-serif;
    --ff-mono: "DM Mono", ui-monospace, monospace;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--ff-body);
    background: var(--ink);
    color: var(--paper);
    line-height: 1.55;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img,
svg {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}
ul {
    list-style: none;
}

:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ---------- grão de filme ---------- */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.045;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- utilitários ---------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.eyebrow {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--amber);
    display: inline-block;
    opacity: 0.7;
}

/* ---------- navegação ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px var(--gutter);
    transition:
        background 0.4s var(--ease),
        padding 0.4s var(--ease),
        border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: rgba(8, 8, 13, 0.78);
    backdrop-filter: blur(14px);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5ch;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}
.brand img {
    height: 65px;
    width: auto;
    display: block;
}
.brand__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 14px 2px rgba(236, 182, 76, 0.7);
    align-self: center;
    margin-left: 2px;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav__links a {
    font-size: 0.9rem;
    color: var(--fog);
    letter-spacing: 0.01em;
    transition: color 0.25s var(--ease);
    position: relative;
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.3s var(--ease);
}
.nav__links a:hover {
    color: var(--paper);
}
.nav__links a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.72em 1.25em;
    border-radius: 999px;
    transition:
        transform 0.25s var(--ease),
        background 0.25s var(--ease),
        box-shadow 0.25s var(--ease),
        color 0.25s var(--ease);
    white-space: nowrap;
}
.btn--amber {
    background: var(--amber);
    color: #1a1305;
    box-shadow: 0 8px 30px -8px rgba(236, 182, 76, 0.5);
}
.btn--amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -8px rgba(236, 182, 76, 0.65);
}
.btn--ghost {
    border: 1px solid var(--line);
    color: var(--paper);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn svg {
    width: 18px;
    height: 18px;
}

.nav__toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--line);
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--paper);
    transition:
        transform 0.3s var(--ease),
        opacity 0.3s var(--ease);
}
.nav__toggle span::before {
    transform: translateY(-6px);
}
.nav__toggle span::after {
    transform: translateY(4px);
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    padding-top: clamp(120px, 18vh, 190px);
    padding-bottom: clamp(60px, 9vh, 110px);
    overflow: hidden;
    isolation: isolate;
}
/* focos de palco a derivar lentamente */
.hero__beams {
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 90%;
    z-index: -2;
    pointer-events: none;
}
.hero__beams::before,
.hero__beams::after {
    content: "";
    position: absolute;
    top: -30%;
    width: 60vw;
    height: 130vh;
    filter: blur(40px);
    opacity: 0.5;
    transform-origin: top center;
}
.hero__beams::before {
    left: 8%;
    background: conic-gradient(
        from 175deg at 50% 0,
        transparent 0deg,
        rgba(236, 182, 76, 0.3) 8deg,
        transparent 18deg
    );
    animation: sway 13s var(--ease) infinite alternate;
}
.hero__beams::after {
    right: 6%;
    background: conic-gradient(
        from 185deg at 50% 0,
        transparent 0deg,
        rgba(54, 196, 232, 0.22) 7deg,
        transparent 16deg
    );
    animation: sway 17s var(--ease) infinite alternate-reverse;
}
@keyframes sway {
    from {
        transform: rotate(-7deg);
    }
    to {
        transform: rotate(7deg);
    }
}

.hero::before {
    /* brilho ambiente quente no topo */
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        radial-gradient(
            60% 45% at 50% -5%,
            rgba(236, 182, 76, 0.16),
            transparent 70%
        ),
        radial-gradient(
            45% 40% at 85% 8%,
            rgba(54, 196, 232, 0.1),
            transparent 70%
        ),
        var(--ink);
}
.hero::after {
    /* assoalho de palco, vinheta inferior */
    content: "";
    position: absolute;
    z-index: -3;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to top, var(--ink), transparent);
}

.hero__head {
    max-width: 940px;
}
.hero h1 {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(2.7rem, 7.2vw, 6.1rem);
    line-height: 0.94;
    letter-spacing: 0.005em;
    margin-top: 22px;
    text-transform: uppercase;
}
.hero h1 em {
    font-style: normal;
    color: var(--amber);
    text-shadow: 0 0 38px rgba(236, 182, 76, 0.35);
}
.hero__lede {
    margin-top: 26px;
    max-width: 660px;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    color: var(--fog);
    line-height: 1.7;
}
.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    max-width: 720px;
}
.chip {
    font-family: var(--ff-mono);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--fog);
    padding: 0.42em 0.9em;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* ---------- cartões de banda (4 destaques) ---------- */
.bands {
    margin-top: clamp(48px, 7vw, 78px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.band {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: clamp(330px, 42vw, 460px);
    display: flex;
    isolation: isolate;
    background: var(--surface);
    border: 1px solid var(--line);
    transition:
        transform 0.5s var(--ease),
        border-color 0.5s var(--ease);
}
.band:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--gel) 55%, var(--line));
}

/* fotografia da banda — colocar em assets/img/bands/.
   Enquanto não houver foto, o gel e o monograma seguram a composição. */
.band__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--photo);
    background-size: cover;
    background-position: center;
    filter: grayscale(0.35) brightness(0.62);
    transform: scale(1.04);
    transition:
        filter 0.6s var(--ease),
        transform 0.8s var(--ease);
}
.band:hover .band__media {
    filter: grayscale(0) brightness(0.8);
    transform: scale(1.1);
}

.band__gel {
    /* lavagem de cor do foco */
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            to top,
            rgba(8, 8, 13, 0.96) 8%,
            rgba(8, 8, 13, 0.35) 55%,
            transparent 100%
        ),
        radial-gradient(
            120% 80% at 50% -10%,
            color-mix(in srgb, var(--gel) 55%, transparent),
            transparent 60%
        );
    transition: opacity 0.5s var(--ease);
}
.band:hover .band__gel {
    background:
        linear-gradient(
            to top,
            rgba(8, 8, 13, 0.93) 6%,
            rgba(8, 8, 13, 0.3) 52%,
            transparent 100%
        ),
        radial-gradient(
            120% 85% at 50% -8%,
            color-mix(in srgb, var(--gel) 75%, transparent),
            transparent 62%
        );
}
.band__mono {
    /* monograma de textura */
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: -1;
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    letter-spacing: -0.02em;
    color: color-mix(in srgb, var(--gel) 40%, transparent);
    opacity: 0.35;
    transition: opacity 0.5s var(--ease);
}
.band:hover .band__mono {
    opacity: 0.6;
}

.band__body {
    margin-top: auto;
    padding: 22px 22px 24px;
    position: relative;
}
.band__index {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    color: var(--gel);
    letter-spacing: 0.1em;
}
.band__name {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
    line-height: 1;
    text-transform: uppercase;
    margin-top: 8px;
}
.band__tribute {
    font-size: 0.9rem;
    color: var(--fog);
    margin-top: 7px;
}
.band__more {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--ff-mono);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gel);
    margin-top: 16px;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.4s var(--ease),
        transform 0.4s var(--ease);
}
.band:hover .band__more,
.band:focus-within .band__more {
    opacity: 1;
    transform: translateY(0);
}

.band__bar {
    /* barra de luz no topo, acende no hover */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 2;
    background: var(--gel);
    transform: scaleX(0);
    transform-origin: left;
    box-shadow: 0 0 18px 1px var(--gel);
    transition: transform 0.5s var(--ease);
}
.band:hover .band__bar,
.band:focus-within .band__bar {
    transform: scaleX(1);
}

.band__link {
    position: absolute;
    inset: 0;
    z-index: 3;
} /* alvo de clique acessível */

/* caminhos relativos ao ficheiro CSS (assets/css/) */
.band--peakles {
    --gel: var(--gel-peakles);
    --photo: url("../img/bands/the-peakles.jpg");
}
.band--doa {
    --gel: var(--gel-doa);
    --photo: url("../img/bands/dead-or-alive.jpg");
}
.band--fishes {
    --gel: var(--gel-fishes);
    --photo: url("../img/bands/the-weird-fishes.jpg");
}
.band--mingos {
    --gel: var(--gel-mingos);
    --photo: url("../img/bands/mingos-samurais.jpg");
}

/* ---------- carrosséis de logos ---------- */
.logos {
    padding: clamp(54px, 8vw, 92px) 0;
    border-top: 1px solid var(--line-soft);
}
.logos--alt {
    background: var(--ink-2);
}
.logos__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 34px;
}
.logos__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.01em;
}

.marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 9%,
        #000 91%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 9%,
        #000 91%,
        transparent
    );
}
.marquee__track {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 78px);
    width: max-content;
    animation: scroll var(--dur, 38s) linear infinite;
}
.marquee--reverse .marquee__track {
    animation-direction: reverse;
}
.marquee:hover .marquee__track {
    animation-play-state: paused;
}
@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

.logo {
    flex: 0 0 auto;
    height: 80px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    filter: grayscale(1) brightness(1.7) contrast(0.55);
    opacity: 0.5;
    transition:
        filter 0.4s var(--ease),
        opacity 0.4s var(--ease),
        transform 0.4s var(--ease);
}
.logo:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-2px);
}
.logo svg {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
}
.logo span {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.85rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}
.logo img {
    height: 100px;
    width: auto;
}

/* ---------- footer / contacto ---------- */
.footer {
    position: relative;
    padding: clamp(64px, 9vw, 110px) 0 44px;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(
            60% 70% at 50% 0%,
            rgba(236, 182, 76, 0.1),
            transparent 70%
        ),
        var(--ink);
    overflow: hidden;
}
.footer__cta {
    max-width: 720px;
}
.footer__cta h2 {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 0.96;
    text-transform: uppercase;
}
.footer__cta p {
    margin-top: 16px;
    color: var(--fog);
    max-width: 540px;
}

.contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.contact {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    transition:
        transform 0.3s var(--ease),
        border-color 0.3s var(--ease),
        background 0.3s var(--ease);
}
.contact:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
}
.contact__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.contact__icon svg {
    width: 24px;
    height: 24px;
}
.contact--wa .contact__icon {
    background: rgba(37, 211, 102, 0.14);
    color: #25d366;
}
.contact--mail .contact__icon {
    background: rgba(236, 182, 76, 0.14);
    color: var(--amber);
}
.contact__label {
    display: block;
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--haze);
}
.contact__value {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 3px;
}

.footer__base {
    margin-top: clamp(48px, 8vw, 80px);
    padding-top: 26px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    color: var(--haze);
    font-size: 0.85rem;
}

/* ---------- revelar ao scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- responsivo ---------- */
@media (max-width: 1040px) {
    .bands {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 760px) {
    .nav__links {
        position: fixed;
        inset: 0 0 auto 0;
        top: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        background: rgba(8, 8, 13, 0.97);
        backdrop-filter: blur(16px);
        padding: 92px var(--gutter) 36px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-105%);
        transition: transform 0.45s var(--ease);
    }
    .nav__links.is-open {
        transform: translateY(0);
    }
    .nav__links a {
        font-size: 1.2rem;
    }
    .nav__toggle {
        display: inline-flex;
    }
    .nav .btn--amber {
        display: none;
    }
}
@media (max-width: 560px) {
    .bands {
        grid-template-columns: 1fr;
    }
    .band {
        min-height: 300px;
    }
    .contact {
        width: 100%;
    }
}

/* ---------- movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .marquee__track {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }
    .band__more {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================================
   PÁGINA DE BANDA (template — base: The Peakles)
   A cor de acento muda por banda através da classe .tribute--*
   ===================================================================== */

.tribute {
    --accent: var(--amber);
}
.tribute--peakles {
    --accent: var(--gel-peakles);
}
.tribute--doa {
    --accent: var(--gel-doa);
}
.tribute--fishes {
    --accent: var(--gel-fishes);
}
.tribute--mingos {
    --accent: var(--gel-mingos);
}

/* o acento da banda aplica-se aos elementos reutilizados nesta página */
.tribute .eyebrow {
    color: var(--accent);
}
.tribute .eyebrow::before {
    background: var(--accent);
}
/* o footer mantém o âmbar da agência */
.footer .eyebrow {
    color: var(--amber);
}
.footer .eyebrow::before {
    background: var(--amber);
}

/* botão com a cor da banda */
.btn--gel {
    background: var(--accent);
    color: #06140a;
    box-shadow: 0 8px 30px -10px
        color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn--gel:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px -10px
        color-mix(in srgb, var(--accent) 85%, transparent);
}

/* ---------- hero da banda ---------- */
.bhero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: clamp(140px, 21vh, 220px);
    padding-bottom: clamp(54px, 8vw, 96px);
}
.bhero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(
            58% 50% at 50% -10%,
            color-mix(in srgb, var(--accent) 22%, transparent),
            transparent 70%
        ),
        var(--ink);
}
.bhero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    z-index: -3;
    background: linear-gradient(to top, var(--ink), transparent);
}
.bhero__beam {
    position: absolute;
    inset: -12% -10% auto -10%;
    height: 80%;
    z-index: -2;
    pointer-events: none;
    background: conic-gradient(
        from 180deg at 50% 0,
        transparent 0deg,
        color-mix(in srgb, var(--accent) 30%, transparent) 9deg,
        transparent 19deg
    );
    filter: blur(48px);
    opacity: 0.6;
    transform-origin: top center;
    animation: sway 15s var(--ease) infinite alternate;
}

.bhero__inner {
    display: grid;
    gap: 24px;
    max-width: 880px;
}
.bhero__logo {
    /* trocar o texto por <img src="assets/img/bands/peakles/logo.svg" alt="The Peakles"> */
    font-family: var(--ff-display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(2.6rem, 8.5vw, 5.2rem);
    line-height: 0.88;
    letter-spacing: 0.005em;
    color: var(--paper);
    text-shadow: 0 0 54px color-mix(in srgb, var(--accent) 45%, transparent);
}
.bhero__logo img {
    height: clamp(72px, 12vw, 132px);
    width: auto;
}
.bhero h1 {
    font-family: var(--ff-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(1.7rem, 4.4vw, 3.2rem);
    line-height: 1;
    letter-spacing: 0.01em;
    max-width: 18ch;
}
.bhero__lede {
    color: var(--fog);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.75;
    max-width: 62ch;
}
.bhero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
}

/* redes sociais */
.socials {
    display: flex;
    gap: 12px;
}
.social {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fog);
    transition:
        transform 0.25s var(--ease),
        color 0.25s var(--ease),
        border-color 0.25s var(--ease),
        background 0.25s var(--ease);
}
.social svg {
    width: 21px;
    height: 21px;
}
.social:hover {
    color: var(--paper);
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 60%, var(--line));
    background: color-mix(in srgb, var(--accent) 14%, transparent);
}

/* ---------- secções genéricas ---------- */
.section {
    padding: clamp(56px, 8vw, 100px) 0;
}
.section--alt {
    background: var(--ink-2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.section__head {
    max-width: 760px;
    margin-bottom: 38px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section__title {
    font-family: var(--ff-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.98;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* ---------- galeria de fotos ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.shot {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(
        155deg,
        color-mix(in srgb, var(--accent) 26%, var(--surface)),
        var(--ink-2)
    );
    cursor: zoom-in;
    isolation: isolate;
}
.shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.25);
    transition:
        transform 0.6s var(--ease),
        filter 0.5s var(--ease);
}
.shot:hover img {
    transform: scale(1.07);
    filter: none;
}
.shot__ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--paper) 72%, transparent);
}
.shot__zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(8, 8, 13, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition:
        opacity 0.3s var(--ease),
        transform 0.3s var(--ease);
}
.shot:hover .shot__zoom {
    opacity: 1;
    transform: scale(1);
}
.shot__zoom svg {
    width: 16px;
    height: 16px;
    color: var(--paper);
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 56px);
    background: rgba(4, 4, 8, 0.93);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s var(--ease),
        visibility 0.35s;
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.lightbox__stage {
    position: relative;
    max-width: 1040px;
    width: 100%;
}
.lightbox__img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin-inline: auto;
}
.lightbox__ph {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        155deg,
        color-mix(in srgb, var(--accent) 30%, var(--surface)),
        var(--ink)
    );
    font-family: var(--ff-display);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--paper);
    font-size: clamp(1.4rem, 4vw, 2.4rem);
}
.lightbox__cap {
    margin-top: 14px;
    text-align: center;
    color: var(--fog);
    font-size: 0.85rem;
    font-family: var(--ff-mono);
    letter-spacing: 0.06em;
}
.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ease);
}
.lb-btn:hover {
    background: rgba(255, 255, 255, 0.16);
}
.lb-prev {
    left: -10px;
}
.lb-next {
    right: -10px;
}
.lb-close {
    position: fixed;
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ease);
}
.lb-close:hover {
    background: rgba(255, 255, 255, 0.16);
}
.lb-btn svg,
.lb-close svg {
    width: 22px;
    height: 22px;
}

/* ---------- texto de apresentação + estatísticas ---------- */
.prose {
    max-width: 66ch;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--fog);
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.8;
}
.prose strong {
    color: var(--paper);
    font-weight: 600;
}
.prose .todo {
    color: var(--accent);
    font-style: italic;
}

.pullquote {
    margin-top: 42px;
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 22px;
    font-family: var(--ff-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    line-height: 1.08;
    max-width: 24ch;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 46px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}
.stat {
    background: var(--ink);
    padding: 24px 22px;
}
.stat__num {
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.stat__lbl {
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--fog);
    line-height: 1.4;
}

/* ---------- galeria de vídeos ---------- */
.videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.video {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: pointer;
    isolation: isolate;
    background: linear-gradient(
        155deg,
        color-mix(in srgb, var(--accent) 22%, var(--surface)),
        var(--ink-2)
    );
}
.video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) brightness(0.8);
    transition:
        filter 0.4s var(--ease),
        transform 0.6s var(--ease);
}
.video:hover img {
    filter: none;
    transform: scale(1.05);
}
.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 4;
}
.video__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.video__play span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 92%, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s var(--ease);
}
.video:hover .video__play span {
    transform: scale(1.08);
}
.video__play svg {
    width: 24px;
    height: 24px;
    color: #06140a;
    margin-left: 3px;
}
.video__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 3;
    background: linear-gradient(to top, rgba(8, 8, 13, 0.85), transparent);
}

/* modal de vídeo (abre ampliado, com zoom) */
.vbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 56px);
    background: rgba(4, 4, 8, 0.93);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s var(--ease),
        visibility 0.35s;
}
.vbox.is-open {
    opacity: 1;
    visibility: visible;
}
.vbox__stage {
    width: 100%;
    max-width: 1100px;
    transform: scale(0.92);
    transition: transform 0.4s var(--ease);
}
.vbox.is-open .vbox__stage {
    transform: scale(1);
}
.vbox__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}
.vbox__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (prefers-reduced-motion: reduce) {
    .vbox__stage {
        transform: none !important;
    }
}

/* ---------- CTA de fecho ---------- */
.cta-band {
    position: relative;
    text-align: center;
    padding: clamp(66px, 10vw, 124px) 0;
    overflow: hidden;
    isolation: isolate;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(
            60% 80% at 50% 118%,
            color-mix(in srgb, var(--accent) 30%, transparent),
            transparent 70%
        ),
        var(--ink);
}
.cta-band h2 {
    font-family: var(--ff-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.96;
    font-size: clamp(2rem, 6vw, 4rem);
    max-width: 16ch;
    margin-inline: auto;
}
.cta-band p {
    color: var(--fog);
    margin: 18px auto 32px;
    max-width: 50ch;
}
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ---------- responsivo da página de banda ---------- */
@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .videos {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .lb-prev {
        left: 4px;
    }
    .lb-next {
        right: 4px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .bhero__beam {
        animation: none !important;
    }
}
