@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
    --bk: #0A0A0A;
    --wh: #F5F5F5;
    --rd: #FF1A1A;
    --gr: #B0B0B0;
    --gr2: #888;
    --line: rgba(10,10,10,.1);
    --line-w: rgba(245,245,245,.1);
}

/* IMPORTANTE: usar overflow-x: clip (não "hidden") no html/body.
   "hidden" força o overflow-y a virar "auto" internamente no navegador,
   o que quebra position:sticky na página inteira — era a causa do bug
   em .frase-visual-sticky (o painel de vídeo não ficava fixo ao rolar
   a tela). "clip" corta o overflow horizontal sem esse efeito colateral. */
html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip; }

body {
    background: #fff;
    color: var(--bk);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

::selection { background: var(--rd); color: #fff; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.red { color: var(--rd); }

/* ---------- HEADER ---------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.4rem 0;
    mix-blend-mode: difference;
    pointer-events: none;
}

header * { pointer-events: auto; }

.header-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
}

nav ul {
    display: flex;
    gap: 2.4rem;
}

nav a {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    transition: color .25s;
}

nav a:hover { color: #fff; }

.header-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rd);
    flex-shrink: 0;
}

.menu-btn {
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 101;
}

.menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.menu-btn span:first-child { top: 4px; }
.menu-btn span:last-child { bottom: 4px; }

.menu-btn.open span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-btn.open span:last-child { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.15);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.7) 0%,
        rgba(0,0,0,.2) 50%,
        rgba(0,0,0,.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2.4rem;
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: .88;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #fff;
}

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 1.2rem;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    padding: 2rem 2.4rem 3rem;
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-play {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    transition: color .3s;
}

.hero-play:hover { color: #fff; }

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--bk);
    font-size: .7rem;
}

.hero-side {
    writing-mode: vertical-lr;
    font-size: .65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
}

/* ---------- LINK ARROW (reusable) ---------- */
.link-arrow {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: gap .3s;
}

.link-arrow:hover { gap: 1rem; }

/* ---------- SOBRE ---------- */
.sobre {
    padding: 0;
    background: var(--bk);
    color: var(--wh);
}

.sobre-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.sobre-esq {
    padding: 5rem 3rem 5rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.sobre-label {
    font-size: .7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: .6;
    display: block;
    margin-bottom: .5rem;
}

.sobre-esq h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1;
    text-transform: uppercase;
}

.sobre-dir {
    padding: 5rem 2.4rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.sobre-clip {
    overflow: hidden;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    height: 300px;
    position: relative;
}

.sobre-parallax {
    position: absolute;
    inset: -25% 0;
    will-change: transform;
}

.sobre-parallax img,
.sobre-parallax video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
}

.sobre-txt {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(245,245,245,.55);
}

.sobre .link-arrow { color: var(--wh); }

/* ---------- SECTION TAG (reusable) ---------- */
.section-tag {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gr2);
    display: block;
    margin-bottom: 1.2rem;
}

/* ---------- LANÇAMENTOS ---------- */
.lancamentos {
    padding: 6rem 0 7rem;
    background: var(--bk);
    color: var(--wh);
}

.lancamentos-header {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2.4rem;
    position: relative;
    overflow: hidden;
}

.lancamentos-header .section-tag {
    color: rgba(245,245,245,.35);
}

.lancamentos-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-w);
}

.lancamentos-top h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lancamentos .link-arrow { color: rgba(245,245,245,.5); }
.lancamentos .link-arrow:hover { color: var(--wh); }

.lancamentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2.4rem;
}

.lancamento {
    display: block;
    transition: opacity .4s;
}

.lancamentos-grid:hover .lancamento { opacity: .35; }
.lancamentos-grid:hover .lancamento:hover { opacity: 1; }

.lancamento-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #1a1a1a;
}

.lancamento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: filter .5s, transform .5s;
}

.lancamento:hover .lancamento-img img {
    filter: grayscale(.3);
    transform: scale(1.05);
}

.lancamento-title {
    position: absolute;
    bottom: .8rem;
    left: .8rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 16px rgba(0,0,0,.7);
}

.lancamento-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .8rem 0;
    border-bottom: 1px solid var(--line-w);
}

.lancamento-name {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wh);
}

.lancamento-year {
    font-size: .7rem;
    color: rgba(245,245,245,.35);
}

/* ---------- TRABALHOS ---------- */
.trabalhos {
    padding: 7rem 2.4rem 8rem;
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
}

.trabalhos-header {
    margin-bottom: .5rem;
    position: relative;
    overflow: hidden;
}

.trabalhos-header .section-tag {
    color: var(--gr2);
}

.trabalhos-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: end;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
}

.trabalhos-top h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: .92;
    text-transform: uppercase;
}

.trabalhos-top p {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gr2);
    max-width: 320px;
    justify-self: end;
}

.projeto-row { margin-bottom: 2rem; }

.projeto-row.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.projeto {
    display: block;
    position: relative;
    overflow: hidden;
}

.projeto-img {
    overflow: hidden;
    position: relative;
}

.projeto.wide .projeto-img { aspect-ratio: 16/9; }
.projeto-row.duo .projeto .projeto-img { aspect-ratio: 5/6; }

.projeto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform .6s cubic-bezier(.16,1,.3,1), filter .6s;
}

.projeto:hover .projeto-img img {
    transform: scale(1.04);
    filter: grayscale(.3);
}

/* overlay sutil no hover */
.projeto-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}

.projeto:hover .projeto-img::after {
    opacity: 1;
}

.projeto-info {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 1.2rem 0 1.2rem;
    border-bottom: 1px solid var(--line);
}

.projeto-num {
    font-size: .7rem;
    letter-spacing: 1px;
    color: var(--rd);
    font-weight: 600;
}

.projeto-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.projeto-cat {
    margin-left: auto;
    font-size: .75rem;
    letter-spacing: 1px;
    color: var(--gr2);
    text-transform: uppercase;
}

/* ---------- FRASE VISUAL (scroll-driven) ---------- */
.frase-visual {
    height: 400vh;
    position: relative;
}

.frase-visual-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #1a1a1a;
}

.frase-visual-img {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.frase-visual-clip {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.frase-visual-parallax {
    position: absolute;
    inset: -20% 0;
    will-change: transform;
}

.frase-visual-parallax img,
.frase-visual-parallax video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
}

.frase-visual-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
}

.frase-rotator {
    position: relative;
    width: 100%;
    min-height: 180px;
}

.frase-line {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: .95;
    text-transform: uppercase;
    color: var(--wh);
}

.frase-line.active {
    opacity: 1;
    transform: translateY(0);
}

.frase-counter {
    display: flex;
    gap: .6rem;
    margin-top: 2rem;
}

.frase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245,245,245,.2);
    transition: background .4s, transform .4s;
}

.frase-dot.active {
    background: var(--rd);
    transform: scale(1.3);
}

/* ---------- PLAYER 3D (inline in trabalhos) ---------- */
.player-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    background:
        url('../img/fundo1.svg') center center / cover no-repeat;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.player-area-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: 3px;
    color: var(--wh);
    mix-blend-mode: difference;
    margin-bottom: 2.5rem;
    text-align: center;
    pointer-events: none;
    user-select: none;
}
.player-area-label span { color: var(--rd); }

.player-stage {
    perspective: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.player-card {
    width: 320px;
    background: #fff;
    border-radius: 22px;
    border: none;
    overflow: visible;
    position: relative;
    cursor: grab;
    user-select: none;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow:
        0 30px 80px rgba(0,0,0,.22),
        0 6px 24px rgba(0,0,0,.12);
}

.player-card:active { cursor: grabbing; }

/* --- frente do card --- */
.player-card-front {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 22px;
    overflow: hidden;
}

/* --- verso do card --- */
.player-card-back {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #0f0f0f 0%, #1c1c1c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 2rem;
    overflow: hidden;
}

.player-back-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9rem;
    line-height: 1;
    letter-spacing: -5px;
    color: rgba(255,255,255,.04);
    position: absolute;
    bottom: -1.5rem;
    right: -.5rem;
    pointer-events: none;
}

.player-back-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: .9;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
}

.player-back-red { color: var(--rd); }

.player-back-sub {
    font-size: .6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    text-align: center;
    margin-top: .2rem;
}

.player-back-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rd);
    margin: .6rem auto;
    flex-shrink: 0;
}

.player-back-info {
    font-size: .55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
    text-align: center;
    line-height: 1.8;
}

.player-card-art {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    pointer-events: none;
}

.player-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.8) contrast(1.1);
    transition: filter .5s;
    pointer-events: none;
    -webkit-user-drag: none;
}

.player-card.playing .player-card-art img {
    filter: grayscale(.3) contrast(1.05);
}

.player-card-body {
    padding: 1.4rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background: #fff;
    border-radius: 0 0 22px 22px;
}

.player-track {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: var(--bk);
    letter-spacing: .5px;
}

.player-artist {
    font-size: .72rem;
    font-weight: 400;
    color: var(--gr2);
    letter-spacing: .3px;
}

.player-progress-wrap {
    width: 100%;
    height: 22px;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 4px,
            rgba(0,0,0,.06) 4px,
            rgba(0,0,0,.06) 5px
        ),
        #ddd;
    border-radius: 11px;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.player-progress-bar {
    height: 100%;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 4px,
            rgba(255,255,255,.25) 4px,
            rgba(255,255,255,.25) 5px
        ),
        var(--rd);
    border-radius: 11px;
    width: 0%;
    transition: width .1s linear;
    position: relative;
}

.player-progress-bar::after {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #FF8080;
    box-shadow: 0 2px 10px rgba(255,26,26,.4), 0 0 0 3px #fff;
    transition: transform .15s;
    z-index: 2;
}

.player-progress-wrap:hover .player-progress-bar::after {
    transform: translateY(-50%) scale(1.15);
}

.player-times {
    display: flex;
    justify-content: space-between;
    font-size: .6rem;
    color: var(--gr2);
    letter-spacing: .5px;
    font-variant-numeric: tabular-nums;
}

.player-controls {
    display: flex;
    justify-content: center;
    margin-top: .4rem;
}

.player-btn-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--bk);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
}

.player-btn-play:hover { transform: scale(1.08); }
.player-btn-play:active { transform: scale(.95); }

.play-svg {
    display: inline-block;
    margin-left: 2px;
    font-size: 1.2rem;
    line-height: 1;
}

.player-platform {
    width: 300px;
    height: 16px;
    margin-top: -8px;
    background: linear-gradient(to bottom, rgba(0,0,0,.06), transparent);
    border-radius: 50%;
    transform: perspective(600px) rotateX(70deg);
}

.player-shadow {
    width: 240px;
    height: 14px;
    margin-top: 8px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
    background: var(--bk);
    color: var(--wh);
}

.newsletter-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 3.5rem 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-text p {
    font-size: .8rem;
    color: rgba(245,245,245,.4);
    margin-top: .3rem;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    max-width: 420px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    letter-spacing: 1.5px;
    padding: .9rem 1.2rem;
    border: 1px solid var(--line-w);
    background: transparent;
    color: var(--wh);
    outline: none;
    transition: border-color .3s;
}

.newsletter-form input::placeholder { color: rgba(245,245,245,.3); }
.newsletter-form input:focus { border-color: var(--wh); }

.newsletter-form button {
    width: 52px;
    border: none;
    background: var(--rd);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .3s;
}

.newsletter-form button:hover { background: #d01515; }

/* ---------- CONTATO ---------- */
.contato {
    padding: 7rem 0;
    background: #fff;
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4.8rem);
    max-width: 1292px;
    height: 1px;
    background: var(--line);
}

.contato-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2.4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: end;
}

.contato-label {
    font-size: .65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rd);
    display: block;
    margin-bottom: 1rem;
}

.contato-esq h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: .92;
    text-transform: uppercase;
}

.contato-dir {
    text-align: right;
    padding-bottom: .5rem;
}

.contato-email {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    letter-spacing: 1px;
    border-bottom: 2px solid var(--bk);
    padding-bottom: .3rem;
    transition: color .25s, border-color .25s;
}

.contato-email:hover {
    color: var(--rd);
    border-color: var(--rd);
}

.contato-social {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    margin-top: 1.8rem;
}

.contato-social a {
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gr2);
    transition: color .25s;
    position: relative;
}

.contato-social a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bk);
    transition: width .3s;
}

.contato-social a:hover { color: var(--bk); }
.contato-social a:hover::after { width: 100%; }

/* ---------- FOOTER ---------- */
footer {
    padding: 1.6rem 0;
    background: var(--bk);
    color: var(--wh);
}

.footer-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--wh);
}

.footer-copy {
    font-size: .6rem;
    color: rgba(245,245,245,.3);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 1.6rem;
}

.footer-links a {
    font-size: .6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245,245,245,.4);
    transition: color .25s;
}

.footer-links a:hover { color: var(--wh); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .menu-btn { display: block; }
    .header-dot { display: none; }

    nav {
        position: fixed;
        inset: 0;
        background: var(--bk);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s;
        z-index: 99;
    }

    nav.open { opacity: 1; pointer-events: auto; }

    nav ul {
        flex-direction: column;
        gap: 1.8rem;
        text-align: center;
    }

    nav a {
        font-size: 1.1rem;
        color: rgba(255,255,255,.7);
        opacity: 1;
    }

    /* --- sobre --- */
    .sobre-inner { grid-template-columns: 1fr; }
    .sobre-esq { padding: 3.5rem 2.4rem 2rem; }
    .sobre-dir { padding: 2rem 2.4rem 3.5rem; }

    /* --- lançamentos --- */
    .lancamentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 2.4rem;
    }

    /* --- trabalhos --- */
    .trabalhos { padding: 4rem 1.6rem 5rem; }
    .trabalhos-top { grid-template-columns: 1fr; gap: 1.2rem; }
    .trabalhos-top p { justify-self: start; }
    .projeto-row.duo { grid-template-columns: 1fr; }

    /* --- player --- */
    .player-row { padding: 3.5rem 1.2rem; border-radius: 0; }
    .player-card { width: min(290px, 85vw); }
    .player-area-label { margin-bottom: 1.8rem; }

    /* --- contato --- */
    .contato-inner { grid-template-columns: 1fr; gap: 2rem; }
    .contato-dir { text-align: left; }
    .contato-social { justify-content: flex-start; }

    /* --- newsletter --- */
    .newsletter-inner { flex-direction: column; align-items: stretch; }
    .newsletter-form { max-width: 100%; }

    /* --- frase visual --- */
    .frase-visual-sticky { grid-template-columns: 1fr; }
    .frase-visual-img { height: 40vh; position: relative; }
    .frase-visual-clip { clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
    .frase-visual-text { padding: 3rem 2.4rem; }
    .frase-visual { height: 320vh; }

    /* --- misc --- */
    .footer-inner { justify-content: center; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .sec-num { display: none; }
    .contato-watermark { font-size: clamp(4rem, 16vw, 8rem); bottom: -.5rem; right: 0; }
    .sec-divider { padding: 0 1.6rem; }
    .hero-side { display: none; }
}

@media (max-width: 600px) {
    .hero-content { padding: 0 1.6rem; }
    .hero-content h1 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
    .hero-bottom { padding: 1.5rem 1.6rem 2.5rem; }
    .lancamentos-grid { grid-template-columns: 1fr; padding: 0 1.6rem; }
    .lancamentos-header { padding: 0 1.6rem; }
    .lancamentos-top { flex-direction: column; gap: .8rem; }
    .contato { padding: 4.5rem 0; }
    .contato-inner { padding: 0 1.6rem; }
    .newsletter-inner { padding: 2.5rem 1.6rem; }
    .footer-inner { padding: 1.4rem 1.6rem; }
    .sobre-clip { height: 220px; }
    .player-progress-wrap { height: 18px; border-radius: 9px; }
    .player-progress-bar { border-radius: 9px; }
    .player-progress-bar::after { width: 22px; height: 22px; right: -11px; }
    body { font-size: 15px; }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.rv {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

.rv.vis {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.rv-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}

.rv-stagger.vis > * {
    opacity: 1;
    transform: translateY(0);
}

.rv-stagger.vis > *:nth-child(1) { transition-delay: 0s; }
.rv-stagger.vis > *:nth-child(2) { transition-delay: .1s; }
.rv-stagger.vis > *:nth-child(3) { transition-delay: .2s; }
.rv-stagger.vis > *:nth-child(4) { transition-delay: .3s; }

/* slide from left */
.rv-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

.rv-left.vis {
    opacity: 1;
    transform: translateX(0);
}

/* slide from right */
.rv-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

.rv-right.vis {
    opacity: 1;
    transform: translateX(0);
}

/* scale up */
.rv-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

.rv-scale.vis {
    opacity: 1;
    transform: scale(1);
}

/* hero parallax bg */
.hero-bg img {
    transition: transform .1s linear;
}

/* image clip reveal */
.projeto-img,
.lancamento-img {
    clip-path: inset(0 0 100% 0);
    transition: clip-path .8s cubic-bezier(.16,1,.3,1);
}

.projeto-img.img-revealed,
.lancamento-img.img-revealed {
    clip-path: inset(0 0 0% 0);
}

/* line reveal for borders */
.line-reveal {
    position: relative;
}

.line-reveal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bk);
    transition: width .8s cubic-bezier(.16,1,.3,1);
}

.line-reveal.vis::after {
    width: 100%;
}

.lancamentos .line-reveal::after {
    background: rgba(245,245,245,.2);
}

/* section tag in dark sections */
.lancamentos .section-tag {
    color: rgba(245,245,245,.25);
}

/* ---------- SECTION NUMBER ---------- */
.sec-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 12vw, 11rem);
    line-height: 1;
    letter-spacing: -3px;
    pointer-events: none;
    user-select: none;
    display: block;
    color: rgba(10,10,10,.04);
    position: absolute;
    right: 0;
    top: -.8rem;
    z-index: 0;
    overflow: hidden;
    max-width: 100%;
}

.sec-num--dark {
    color: rgba(245,245,245,.05);
    right: 2.4rem;
    top: -.2rem;
}

/* ---------- SECTION DIVIDER ---------- */
.sec-divider {
    display: flex;
    align-items: center;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2.4rem;
}

.sec-divider > span:not(.sec-divider-dot) {
    flex: 1;
    height: 1px;
    background: var(--line);
    display: block;
}

.sec-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rd);
    margin: 0 .8rem;
    flex-shrink: 0;
    display: block;
}

/* ---------- CONTATO WATERMARK ---------- */
.contato-watermark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 15vw, 18rem);
    line-height: 1;
    letter-spacing: -5px;
    color: rgba(10,10,10,.04);
    position: absolute;
    bottom: -2rem;
    right: 0;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    z-index: 0;
}

/* ---------- LANCAMENTO HOVER OVERLAY ---------- */
.lancamento-img::after {
    content: 'OUVIR';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    padding: .35rem .7rem;
    border: 1px solid rgba(255,255,255,.4);
}

.lancamento:hover .lancamento-img::after { opacity: 1; }

/* ---------- PROJETO HOVER LEFT ACCENT ---------- */
.projeto::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--rd);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    z-index: 2;
}

.projeto:hover::before { transform: scaleY(1); }

/* line reveal dark variant */
.lancamentos .line-reveal::after {
    background: var(--wh);
}
