/*
 Theme Name:   Fluxo
 Author:       Fluxo
 Author URI:   https://fluxo.design
*/



/* COLORS */
:root {
  --cinza: #d9d9d9;
  --preto: #000;
  --black: #000;
  --branco: #fff;
  --white: #fff;
}

.color-cinza, .btn-invocacoes.disabled {
    color: var(--cinza);
}
.color-branco {
    color: var(--branco);
}
.color-preto {
    color: var(--preto);
}
.color-white {
    color: var(--white);
}
.color-black {
    color: var(--black);
}

.bg-cinza {
    background-color: var(--cinza);
}
.bg-branco {
    background-color: var(--branco);
}
.bg-preto {
    background-color: var(--preto);
}
.bg-white {
    background-color: var(--white);
}
.bg-black {
    background-color: var(--black);
}



.inconsolata {
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

/*
  Single "Inconsolata" family loaded from Google Fonts with the full
  wdth,wght axis (see the css2 link in header.php). No separate
  @font-face / self-hosting needed — font-stretch just dials the
  same variable font's width axis.
*/
.inconsolata-condensed {
  font-family: "Inconsolata", monospace;
  font-stretch: 75%;
}
.inconsolata-expanded {
  font-family: "Inconsolata", monospace;
  font-stretch: 200%;
}



* {
    box-sizing: border-box;
    font-family: "Inconsolata", monospace;
}
html body {
    font-family: "Inconsolata", monospace;
    -webkit-font-smoothing: antialiased;
    font-size: 1.16vw;
    line-height: 124%;
    font-weight: 400;
    color: var(--black);
    margin: 0;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
input:-webkit-autofill,
input:-webkit-autofill::first-line,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: var(--black) !important;
    font-weight: 800;
    font-size: 1.16vw !important;
    line-height: 100% !important;
    font-family: "ABC Camera Plain", sans-serif !important;
    mix-blend-mode: multiply;
}
::placeholder { 
    color: #ccc;
}
::selection { 
    color: #000;
}
.hidden {
    display: none;
}
.mobile-view {
    display: none;
}
.desktop-view {
    display: block;
}
a[href^="tel"] {
    color:inherit;
    text-decoration:none;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    outline: none !important;
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover, a:active, a:focus {
    text-decoration: none;
    color: inherit;
}
p a {
    text-decoration: underline;   
}
p a:hover {
    text-decoration: none;
}
p {
    line-height: inherit;
    margin: 0 0 1em 0;
}
p:last-child {
    margin-bottom: 0;
}
.overflow_hidden {
    overflow-y: hidden;
}
.overflow_scroll {
    overflow-y: scroll;
    height: 100%;
}
.post-edit {
    display: none !important;
}


svg, img, embed, object {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.slick-slide {
    outline: none !important;
}

.grecaptcha-badge {
    display: none;
}




/* ENTRY ANIMATION */

.animate_trigger {
    transform: translate3d(0, 1.5vw, 0);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
    will-change: transform;
}
.animate_trigger.animate_in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}




/* CUSTOM SCROLL BAR */

/*::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: transparent;
}
::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: transparent;
}*/


/* LAYOUT */


.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.grid-span-1 {
    grid-column: span 1;
}

.grid-span-2 {
    grid-column: span 2;
}
.grid-span-2-4 {
    grid-column: span 2.4;
}

.grid-span-3 {
    grid-column: span 3;
}

.grid-span-4 {
    grid-column: span 4;
}

.grid-span-5 {
    grid-column: span 5;
}

.grid-span-6 {
    grid-column: span 6;
}

.grid-span-7 {
    grid-column: span 7;
}

.grid-span-8 {
    grid-column: span 8;
}

.grid-span-9 {
    grid-column: span 9;
}

.grid-span-10 {
    grid-column: span 10;
}

.grid-span-11 {
    grid-column: span 11;
}

.grid-span-12 {
    grid-column: span 12;
}

.sticky {
    position: sticky;
    top: 1em;
}

.column_count-2 {
    column-count: 2;
}
.column_count-3 {
    column-count: 3;
}
.column_count-4 {
    column-count: 4;
}
.column_count-2 > *,
.column_count-3 > *,
.column_count-4 > * {
    break-inside: avoid;
}

.flex {
    display: flex;
}
.flex-center {
    align-items: center;
}
.flex-baseline {
    align-items: baseline;
}
.flex-justify {
    justify-content: space-between;
}
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.flex-column {
    flex-direction: column;
}
.flex-align-start {
    align-items: flex-start;
}
.flex-align-end {
    align-items: flex-end;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-align-self-end {
    align-self: flex-end;
}
.flex-align-self-center {
    align-self: center;
}

.gap-0_5rem {
    gap: 0.5rem;
}
.gap-1rem {
    gap: 1rem;
}
.gap-2rem {
    gap: 2rem;
}
.gap-3rem {
    gap: 3rem;
}
.gap-4rem {
    gap: 4rem;
}
.gap-5rem {
    gap: 5rem;
}

.gap-0_5em {
    gap: 0.5em;
}
.gap-1em {
    gap: 1em;
}
.gap-2em {
    gap: 2em;
}
.gap-3em {
    gap: 3em;
}
.gap-4em {
    gap: 4em;
}
.gap-5em {
    gap: 5em;
}

.h-100 {
    height: 100%;
}

.w-10 {
    width: 10%;
}
.w-20 {
    width: 20%;
}
.w-25 {
    width: 25%;
}
.w-33 {
    width: 33.33%;
}
.w-40 {
    width: 50%;
}
.w-45 {
    width: 45%;
}
.w-50 {
    width: 50%;
}
.w-55 {
    width: 55%;
}
.w-60 {
    width: 60%;
}
.w-66 {
    width: 66.66%;
}
.w-70 {
    width: 70%;
}
.w-75 {
    width: 75%;
}
.w-80 {
    width: 80%;
}
.w-85 {
    width: 85%;
}
.w-90 {
    width: 90%;
}
.w-95 {
    width: 95%;
}
.w-100 {
    width: 100%;
}

.mb-0_5rem {
    margin-bottom: 0.5rem;
}
.mb-1rem {
    margin-bottom: 1rem;
}
.mb-1_5rem {
    margin-bottom: 1.5rem;
}
.mb-2rem {
    margin-bottom: 2rem;
}
.mb-3rem {
    margin-bottom: 3rem;
}
.mb-4rem {
    margin-bottom: 4rem;
}
.mb-5rem {
    margin-bottom: 5rem;
}

.mb-0_5em {
    margin-bottom: 0.5em;
}
.mb-1em {
    margin-bottom: 1em;
}
.mb-1_5em {
    margin-bottom: 1.5em;
}
.mb-2em {
    margin-bottom: 2em;
}
.mb-3em {
    margin-bottom: 3em;
}
.mb-4em {
    margin-bottom: 4em;
}
.mb-5em {
    margin-bottom: 5em;
}

.mb-10 {
    margin-bottom: 0.69vw;
}
.mb-20 {
    margin-bottom: 1.37vw;
}
.mb-30 {
    margin-bottom: 2.05vw;
}
.mb-40 {
    margin-bottom: 2.74vw;
}
.mb-50 {
    margin-bottom: 3.42vw;
}
.mb-60 {
    margin-bottom: 4.1vw;
}
.mb-70 {
    margin-bottom: 4.79vw;
}
.mb-80 {
    margin-bottom: 5.48vw;
}
.mb-90 {
    margin-bottom: 6.16vw;
}
.mb-100 {
    margin-bottom: 6.85vw;
}

.mt-0_5rem {
    margin-top: 0.5rem;
}
.mt-1rem {
    margin-top: 1rem;
}
.mt-2rem {
    margin-top: 2rem;
}
.mt-3rem {
    margin-top: 3rem;
}
.mt-4rem {
    margin-top: 4rem;
}
.mt-5rem {
    margin-top: 5rem;
}

.mt-0_5em {
    margin-top: 0.5em;
}
.mt-1em {
    margin-top: 1em;
}
.mt-2em {
    margin-top: 2em;
}
.mt-3em {
    margin-top: 3em;
}
.mt-4em {
    margin-top: 4em;
}
.mt-5em {
    margin-top: 5em;
}

.mt-10 {
    margin-top: 0.69vw;
}
.mt-20 {
    margin-top: 1.37vw;
}
.mt-30 {
    margin-top: 2.05vw;
}
.mt-40 {
    margin-top: 2.74vw;
}
.mt-50 {
    margin-top: 3.42vw;
}
.mt-60 {
    margin-top: 4.1vw;
}
.mt-70 {
    margin-top: 4.79vw;
}
.mt-80 {
    margin-top: 5.48vw;
}
.mt-90 {
    margin-top: 6.16vw;
}
.mt-100 {
    margin-top: 6.85vw;
}


.ml-0_5rem {
    margin-left: 0.5rem;
}
.ml-1rem {
    margin-left: 1rem;
}
.ml-2rem {
    margin-left: 2rem;
}
.ml-3rem {
    margin-left: 3rem;
}
.ml-4rem {
    margin-left: 4rem;
}
.ml-5rem {
    margin-left: 5rem;
}

.ml-0_5em {
    margin-left: 0.5em;
}
.ml-1em {
    margin-left: 1em;
}
.ml-2em {
    margin-left: 2em;
}
.ml-3em {
    margin-left: 3em;
}
.ml-4em {
    margin-left: 4em;
}
.ml-5em {
    margin-left: 5em;
}

.ml-10 {
    margin-left: 0.69vw;
}
.ml-20 {
    margin-left: 1.37vw;
}
.ml-30 {
    margin-left: 2.05vw;
}
.ml-40 {
    margin-left: 2.74vw;
}
.ml-50 {
    margin-left: 3.42vw;
}
.ml-60 {
    margin-left: 4.1vw;
}
.ml-70 {
    margin-left: 4.79vw;
}
.ml-80 {
    margin-left: 5.48vw;
}
.ml-90 {
    margin-left: 6.16vw;
}
.ml-100 {
    margin-left: 6.85vw;
}

.mr-0_5rem {
    margin-right: 0.5rem;
}
.mr-1rem {
    margin-right: 1rem;
}
.mr-2rem {
    margin-right: 2rem;
}
.mr-3rem {
    margin-right: 3rem;
}
.mr-4rem {
    margin-right: 4rem;
}
.mr-5rem {
    margin-right: 5rem;
}

.mr-0_5em {
    margin-right: 0.5em;
}
.mr-1em {
    margin-right: 1em;
}
.mr-2em {
    margin-right: 2em;
}
.mr-3em {
    margin-right: 3em;
}
.mr-4em {
    margin-right: 4;
}
.mr-5em {
    margin-right: 5em;
}

.mr-10 {
    margin-right: 0.69vw;
}
.mr-20 {
    margin-right: 1.37vw;
}
.mr-30 {
    margin-right: 2.05vw;
}
.mr-40 {
    margin-right: 2.74vw;
}
.mr-50 {
    margin-right: 3.42vw;
}
.mr-60 {
    margin-right: 4.1vw;
}
.mr-70 {
    margin-right: 4.79vw;
}
.mr-80 {
    margin-right: 5.48vw;
}
.mr-90 {
    margin-right: 6.16vw;
}
.mr-100 {
    margin-right: 6.85vw;
}

.mt-auto {
    margin-top: auto;
}
.mb-auto {
    margin-bottom: auto;
}
.ml-auto {
    margin-left: auto;
}
.mr-auto {
    margin-left: auto;
}
.m-auto {
    margin: auto;
}

.pb-0_5rem {
    padding-bottom: 0.5rem;
}
.pb-1rem {
    padding-bottom: 1rem;
}
.pb-2rem {
    padding-bottom: 2rem;
}
.pb-3rem {
    padding-bottom: 3rem;
}
.pb-4rem {
    padding-bottom: 4rem;
}
.pb-5rem {
    padding-bottom: 5rem;
}

.pb-0_5em {
    padding-bottom: 0.5em;
}
.pb-1em {
    padding-bottom: 1em;
}
.pb-2em {
    padding-bottom: 2em;
}
.pb-3em {
    padding-bottom: 3em;
}
.pb-4em {
    padding-bottom: 4em;
}
.pb-5em {
    padding-bottom: 5em;
}

.pb-10 {
    padding-bottom: 0.69vw;
}
.pb-20 {
    padding-bottom: 1.37vw;
}
.pb-30 {
    padding-bottom: 2.05vw;
}
.pb-40 {
    padding-bottom: 2.74vw;
}
.pb-50 {
    padding-bottom: 3.42vw;
}
.pb-60 {
    padding-bottom: 4.1vw;
}
.pb-70 {
    padding-bottom: 4.79vw;
}
.pb-80 {
    padding-bottom: 5.48vw;
}
.pb-90 {
    padding-bottom: 6.16vw;
}
.pb-100 {
    padding-bottom: 6.85vw;
}

.pt-0_5rem {
    padding-top: 0.5rem;
}
.pt-1rem {
    padding-top: 1rem;
}
.pt-2rem {
    padding-top: 2rem;
}
.pt-3rem {
    padding-top: 3rem;
}
.pt-4rem {
    padding-top: 4rem;
}
.pt-5rem {
    padding-top: 5rem;
}

.pt-0_5em {
    padding-top: 0.5em;
}
.pt-1em {
    padding-top: 1em;
}
.pt-2em {
    padding-top: 2em;
}
.pt-3em {
    padding-top: 3em;
}
.pt-4em {
    padding-top: 4em;
}
.pt-5em {
    padding-top: 5em;
}

.pt-10 {
    padding-top: 0.69vw;
}
.pt-20 {
    padding-top: 1.37vw;
}
.pt-30 {
    padding-top: 2.05vw;
}
.pt-40 {
    padding-top: 2.74vw;
}
.pt-50 {
    padding-top: 3.42vw;
}
.pt-60 {
    padding-top: 4.1vw;
}
.pt-70 {
    padding-top: 4.79vw;
}
.pt-80 {
    padding-top: 5.48vw;
}
.pt-90 {
    padding-top: 6.16vw;
}
.pt-100 {
    padding-top: 6.85vw;
}

.pl-0_5rem {
    padding-left: 0.5rem;
}
.pl-1rem {
    padding-left: 1rem;
}
.pl-2rem {
    padding-left: 2rem;
}
.pl-3rem {
    padding-left: 3rem;
}
.pl-4rem {
    padding-left: 4rem;
}
.pl-5rem {
    padding-left: 5rem;
}

.pl-0_5em {
    padding-left: 0.5em;
}
.pl-1em {
    padding-left: 1em;
}
.pl-2em {
    padding-left: 2em;
}
.pl-3em {
    padding-left: 3em;
}
.pl-4em {
    padding-left: 4em;
}
.pl-5em {
    padding-left: 5em;
}

.pl-10 {
    padding-left: 0.69vw;
}
.pl-20 {
    padding-left: 1.37vw;
}
.pl-30 {
    padding-left: 2.05vw;
}
.pl-40 {
    padding-left: 2.74vw;
}
.pl-50 {
    padding-left: 3.42vw;
}
.pl-60 {
    padding-left: 4.1vw;
}
.pl-70 {
    padding-left: 4.79vw;
}
.pl-80 {
    padding-left: 5.48vw;
}
.pl-90 {
    padding-left: 6.16vw;
}
.pl-100 {
    padding-left: 6.85vw;
}

.pr-0_5rem {
    padding-right: 0.5rem;
}
.pr-1rem {
    padding-right: 1rem;
}
.pr-2rem {
    padding-right: 2rem;
}
.pr-3rem {
    padding-right: 3rem;
}
.pr-4rem {
    padding-right: 4rem;
}
.pr-5rem {
    padding-right: 5rem;
}

.pr-0_5em {
    padding-right: 0.5em;
}
.pr-1em {
    padding-right: 1em;
}
.pr-2em {
    padding-right: 2em;
}
.pr-3em {
    padding-right: 3em;
}
.pr-4em {
    padding-right: 4em;
}
.pr-5em {
    padding-right: 5em;
}

.pr-10 {
    padding-right: 0.69vw;
}
.pr-20 {
    padding-right: 1.37vw;
}
.pr-30 {
    padding-right: 2.05vw;
}
.pr-40 {
    padding-right: 2.74vw;
}
.pr-50 {
    padding-right: 3.42vw;
}
.pr-60 {
    padding-right: 4.1vw;
}
.pr-70 {
    padding-right: 4.79vw;
}
.pr-80 {
    padding-right: 5.48vw;
}
.pr-90 {
    padding-right: 6.16vw;
}
.pr-100 {
    padding-right: 6.85vw;
}

.pl-auto {
    padding-left: auto;
}
.pr-auto {
    padding-right: auto;
}

.bb-2px-primary {
    border-bottom: solid 2px var(--primary);
}
.bb-1px-primary {
    border-bottom: solid 1px var(--primary);
}

.hyphens {
    hyphens: auto;
}
.img-wrapper {
    position: relative;
}
.img-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hide-br br {
    display: none;
}


/* TYPOGRAPHY */

.font-12 {
    font-size: 12px;
    line-height: 124%;
}
.font-14 {
    font-size: 0.97vw;
    line-height: 124%;
}
.font-16, h6 {
    font-size: 1.11vw;
    line-height: 124%;
}
.font-18, p {
    font-size: 1.25vw;
    line-height: 124%;
}
.font-22, h5 {
    font-size: 1.53vw;
    line-height: 124%;
}
.font-24 {
    font-size: 1.67vw;
    line-height: 124%;
}
.font-26, h4{
    font-size: 1.81vw;
    line-height: 124%;
}
.font-32, h3 {
    font-size: 2.22vw;
    line-height: 125%;
}
.font-42, h2 {
    font-size: 2.92vw;
    line-height: 125%;
}
.font-52, h1 {
    font-size: 3.61vw;
    line-height: 125%;
}

.font-light {
    font-weight: 300;
}
.font-regular {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-bold, b, strong {
    font-weight: 700;
}

.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}



/* TERMINAL HOVER EFFECT
   O texto é dividido em .word / .char pelo js/custom.js no load.
   O bloco preto é o ::after de cada .char: 1ch de largura (só funciona
   em fonte monoespaçada — Inconsolata), altura total, cor = cor do texto.
   O GSAP liga/desliga ele pela custom property --opa, char a char. */

.is-split {
    font-kerning: none;
}
.is-split .word {
    display: inline-block;
    white-space: nowrap;
}
.is-split .char {
    display: inline-block;
    position: relative;
    --opa: 0;
}
.is-split .char::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1ch;
    height: 100%;
    background: currentColor;
    opacity: var(--opa);
    pointer-events: none;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.39vw 1.39vw;
    /* background-color: var(--white); */
    pointer-events: none;
}
.header * {
    pointer-events: auto;
}
.header .tagline {
    font-family: "Inconsolata", monospace;
    font-size: 0.97vw;
    font-weight: 400;
    line-height: 124%;
}
.menu ul {
    display: flex;
    gap: 1.67vw;
}
.menu ul li a {
    font-family: "Inconsolata", monospace;
    font-stretch: 75%;
    font-weight: 400;
    font-size: 1.11vw;
    line-height: 124%;
    padding-bottom: 0.14vw;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
    cursor: pointer;
}
/* .menu ul li a:hover {
    border-bottom-color: var(--black);
} */
/* WordPress applies these automatically via wp_nav_menu() to the <li> of the active page */
.menu ul li.current-menu-item a,
.menu ul li.current_page_item a {
    border-bottom-color: var(--black);
}

/* space page content below the fixed header / above the fixed footer */
/* O padding mora no container (e não no wrapper) de propósito: assim dá pra
   tirar o container do fluxo durante a transição sem perder o respiro do
   topo/rodapé. */
.site-inner {
    position: relative;
    min-height: 100vh;
}
.site-content {
    padding-top: 4.44vw;
    padding-bottom: 4.44vw;
}

/* FOOTER */

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.83vw 1.39vw;
    /* background-color: var(--white); */
    pointer-events: none;
}
.footer * {
    pointer-events: auto;
}
.footer,
.footer a {
    font-family: "Inconsolata", monospace;
    font-stretch: 75%;
    font-size: 0.97vw;
    line-height: 124%;
}
.footer__socials {
    display: flex;
    gap: 2.78vw;
    justify-self: start;
}
.footer__socials ul {
    display: flex;
    gap: 0.83vw;
}
.footer__socials ul li a:hover {
    opacity: 0.5;
}
.footer__email {
    justify-self: center;
}
.footer__sound {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.42vw;
    background: none;
    border: none;
    cursor: pointer;
}
.footer__sound .bars {
    display: flex;
    align-items: flex-end;
    gap: 0.14vw;
    height: 0.83vw;
}
.footer__sound .bars span {
    width: 0.21vw;
    background-color: var(--black);
    transition: opacity 0.15s ease;
}
.footer__sound .bars span:nth-child(1) { height: 40%; }
.footer__sound .bars span:nth-child(2) { height: 70%; }
.footer__sound .bars span:nth-child(3) { height: 100%; }
.footer__sound .bars span:nth-child(4) { height: 60%; }
.footer__sound .bars span:nth-child(5) { height: 85%; }
.footer__sound.is-muted .bars span {
    opacity: 0.25;
}

/* COMPONENTS (shared across pages) */

/* the black square + title pattern used on Works / Discography / Selected Sounds / Info */
.page-title {
    display: flex;
    align-items: flex-start;
    gap: 0.83vw;
}
.page-title .marker {
    width: 1.11vw;
    height: 2.4vw;
    background-color: var(--black);
    flex-shrink: 0;
    margin-top: 0.55vw;
}
.page-title h1 {
    font-family: "Inconsolata", monospace;
    font-stretch: 150%;
    font-size: 3.61vw;
    line-height: 100%;
    margin: 0;
    font-weight: 400;
}

/* floating panel with corner handles, used on the homepage */
.floating-panel {
    /* tamanho do quadrado e comprimento das linhas em L — ajuste aqui */
    --corner-size: 0.56vw;
    --corner-line-h: 5vw;
    --corner-line-v: 2.5vw;

    position: relative;
    padding: 1.39vw;
    background-color: #ffffff4a;
    backdrop-filter: blur(2px);

    max-width: 38vw;
}
.floating-panel .corner {
    position: absolute;
    width: var(--corner-size);
    height: var(--corner-size);
    background-color: var(--black);
}
.floating-panel .corner--tl { top: -0.28vw; left: -0.28vw; }
.floating-panel .corner--tr { top: -0.28vw; right: -0.28vw; }
.floating-panel .corner--bl { bottom: -0.28vw; left: -0.28vw; }
.floating-panel .corner--br { bottom: -0.28vw; right: -0.28vw; }

/* linhas que saem de cada quadrado formando o L do canto */
.floating-panel .corner::before,
.floating-panel .corner::after {
    content: '';
    position: absolute;
    background-color: var(--black);
}
.floating-panel .corner::before {   /* linha horizontal */
    height: 1px;
    width: var(--corner-line-h);
    top: 50%;
    margin-top: -0.5px;
}
.floating-panel .corner::after {    /* linha vertical */
    width: 1px;
    height: var(--corner-line-v);
    left: 50%;
    margin-left: -0.5px;
}
.floating-panel .corner--tl::before,
.floating-panel .corner--bl::before { left: 100%; }
.floating-panel .corner--tr::before,
.floating-panel .corner--br::before { right: 100%; }
.floating-panel .corner--tl::after,
.floating-panel .corner--tr::after  { top: 100%; }
.floating-panel .corner--bl::after,
.floating-panel .corner--br::after  { bottom: 100%; }

/* FUNDO ASCII */

.ascii-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;   /* o clique é capturado no document, não aqui */
    opacity: 0;
    transition: opacity 1.2s ease;
}
.ascii-bg.is-visible {
    opacity: 1;
}
/* canvas do WebGL: só serve de fonte pro ASCII, nunca aparece */
.ascii-bg__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.ascii-bg__layer {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
    white-space: pre;
    font-family: "Inconsolata", monospace;
    background: transparent;
    user-select: none;
}
/* densidade da grade — mexa no font-size/letter-spacing pra afinar ou
   engrossar o ASCII. Menor = mais caracteres = mais pesado. */
.ascii-bg__video {
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 3px;
    color: #b5b5b5;
}
.ascii-bg__flowers {
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #222;
}

/* o conteúdo do site fica acima do fundo
.header,
.footer,
#page {
    position: relative;
    z-index: 1;
} */


/* TRANSIÇÕES DE PÁGINA */

/* homepage não rola — os painéis são arrastáveis, o scroll só atrapalha.
   O data-page é escrito pelo JS a cada troca de página do barba. */
body[data-page="home"] {
    overflow: hidden;
    height: 100vh;
}

/* Durante a troca os dois containers coexistem por um instante. Empilhados
   no fluxo normal, a página nova nasce ABAIXO da antiga e salta pra cima
   quando a antiga é removida — daí o "pulo". Sobrepondo os dois, a saída e
   a entrada acontecem no mesmo lugar. */
html.is-transitioning .site-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}


/* INTRO DA HOMEPAGE */

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}
.intro-overlay__phrase {
    font-family: "Inconsolata", monospace;
    font-size: 0.96vw;
    line-height: 124%;
    margin: 0;
    opacity: .3;
    margin-top: -5.5vw;
}
/* escondido até o JS assumir — só vale quando o JS confirmou que rodou */
.intro-armed .header,
.intro-armed .footer,
.intro-armed #page {
    opacity: 0;
}


/* caixa preta da animação de entrada (criada via JS) */
.panel-intro-box {
    position: absolute;
    inset: 0;
    background-color: var(--black);
    z-index: 5;
    pointer-events: none;
    will-change: transform;
}

/* arrastar pelas bordas */
.floating-panel.is-grabbable { cursor: grab; }
.floating-panel.is-dragging {
    cursor: grabbing;
    user-select: none;
    z-index: 50;
}
.floating-panel__border-top {
    border-top: 1px solid var(--black);
}
.floating-panel__title {
    font-size: 1.53vw;
    font-weight: 500;
    margin-bottom: 1.11vw;
}
.floating-panel__row {
    display: flex;
    justify-content: space-between;
    padding: 0.42vw 0;
    border-bottom: 1px solid #eee;
    font-size: 1.11vw;
}
.floating-panel__row:last-of-type {
    border-bottom: none;
}
.floating-panel__see-all {
    display: block;
    text-align: right;
    text-decoration: underline;
    font-size: 0.97vw;
    margin-top: 0.83vw;
}
.floating-panel__work-name {
    width: 20vw;
    max-width: 20vw;
    overflow: hidden;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.floating-panel__category{
    width: 9vw;
}

/* Colunas de texto sempre em uma linha só. O overflow precisa ficar aqui
   (e não no .char) porque o efeito terminal transforma cada letra em
   inline-block — sem isso a categoria quebra pra segunda linha. */
.floating-panel__category,
.floating-panel__row > span,
.works-list__row > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* decorative ascii-art background texture (homepage) */
.ascii-decoration {
    position: absolute;
    font-family: "Inconsolata", monospace;
    font-size: 0.55vw;
    line-height: 1;
    color: #ccc;
    white-space: pre;
    pointer-events: none;
    user-select: none;
    z-index: -1;
}




/* HOMEPAGE */

.homepage-grid {
    position: relative;
    padding: 0 1.39vw;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.39vw;
}
.homepage-grid .panel-works {
    grid-column: 1 / span 6;
    align-self: start;
}
.homepage-grid .panel-releases {
    grid-column: 8 / span 4;
    align-self: start;
}
/* Menor que os outros e mais alto na tela: com a home sem scroll, os 20vw
   de margem que havia aqui jogavam o painel pra fora do viewport. */
.homepage-grid .panel-last-release {
    grid-column: 9 / span 3;
    justify-self: end;
    margin-top: 2vw;
    max-width: 20vw;
    font-size: 0.9vw;
    /* cantos proporcionais ao tamanho menor do painel */
    --corner-line-h: 3vw;
    --corner-line-v: 1.6vw;
}
.panel-last-release .floating-panel__title {
    font-size: 1.11vw;
}
.panel-last-release img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 0.83vw;
    width: 13.77vw;
    
}
.panel-last-release__meta {
    display: flex;
    justify-content: space-between;
    font-size: 1.11vw;
    margin-bottom: 0.83vw;
}
.panel-last-release__cta {
    display: block;
    text-align: right;
    text-decoration: underline;
    font-size: 0.97vw;
}








/* WORKS */

.works-header {
    /* display: flex;
    justify-content: space-between; */
    align-items: flex-start;
    padding: 0 1.39vw;
    margin-bottom: 2.78vw;
    gap: 1.39vw;
}
.works-filters {
    display: flex;
    gap: 1.39vw;
    padding-top: 0.42vw;
}
.works-filters button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Inconsolata", monospace;
    font-size: 1.67vw;
    color: #ccc;
    font-stretch: 125%;
    padding: 0;
}
.works-filters button.is-active {
    color: var(--black);
    /* text-decoration: underline; */
}
.works-filters button:hover {
    color: var(--black);
}

.works-list {
    position: relative;
    padding: 0 1.39vw;
}
.works-list__row {
    /* display: grid;
    grid-template-columns: 1fr 220px 80px; */
    gap: 1.39vw;
    padding: 0.69vw 0;
    color: black;    
    cursor: pointer;
    transition: color 0.15s ease;
}
.works-list:hover .works-list__row:not(:hover){
    color: #ccc;
}
/* .works-list__row:hover, */
.works-list__row.is-active {
    color: var(--black);
}
.works-list__row span {
    font-size: 1.67vw;
}
.works-list__preview {
    position: fixed;
    top: 50%;    
    right: 1.39vw;
    transform: translateY(-50%);
    width: 18vw;
    aspect-ratio: 16 / 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 5;
}
.works-list__preview.is-visible {
    opacity: 1;
}
.works-list__preview video,
.works-list__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* SINGLE (project detail) */

.single-header {
    /* display: flex;
    justify-content: space-between;
    align-items: flex-start; */
    padding: 0 1.39vw;
    margin-bottom: 1.39vw;
}
.single-header .marker {
    width: 1.11vw;
    height: 2.4vw;
    background-color: var(--black);
    flex-shrink: 0;
    margin-top: 0.55vw;
}
.single-header h1 {
    font-family: "Inconsolata", monospace;
    font-stretch: 150%;
    font-size: 2.78vw;
    line-height: 100%;
    margin: 0;
    font-weight: 400;
}
.single-header__meta {
    text-align: left;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    font-size: 1.67vw;
}
.single-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.78vw;
    padding: 0 1.39vw;
}
/* sem descrição nem créditos: o vídeo pega a grade inteira */
.single-content--full {
    grid-template-columns: 1fr;
}
.single-content__video {
    aspect-ratio: 16 / 9;
    background-color: #000;
}
.single-content__video iframe,
.single-content__video video {
    width: 100%;
    height: 100%;
}
.single-content__description {
    font-size: 1.11vw;
    margin-bottom: 2.08vw;
}
.single-content__credits h3 {
    font-size: 1.25vw;
    margin-bottom: 0.83vw;
}
.single-content__credits dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.28vw 0.83vw;
    font-size: 1.11vw;
}
.single-content__credits dt {
    color: #666;
}
.single-content__credits dd {
    margin: 0;
}
.single-content__credits a {
    text-decoration: underline;
}




/* DISCOGRAPHY */

/**
 * A discografia é uma faixa que ocupa toda a altura livre da tela e rola
 * apenas na horizontal. As capas são quadradas e dimensionadas em vh; as
 * ímpares encostam no topo da faixa e as pares no fundo — é isso que dá o
 * intercalado, em vez do antigo deslocamento fixo de 21vw.
 */
body[data-page="discography"] {
    overflow: hidden;
    height: 100vh;
}
body[data-page="discography"] .site-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.discography-list {
    --disc-size: 46vh;     /* lado da capa — o quanto ela "cabe" na altura */
    --disc-overlap: 0.33;  /* quanto cada capa invade a anterior */

    flex: 1 1 auto;
    min-height: 0;         /* sem isto o item flex não encolhe e estoura a tela */
    padding: 0 1.39vw;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
}
.discography-list > .flex{
    min-width: max-content;
    height: 100%;
    align-items: stretch;
}
.discography-item {
    display: block;
    height: 100%;
    margin: 0;
}
.discography-item:not(:first-child){
    margin-left: calc(var(--disc-size) * -1 * var(--disc-overlap));
}
/* a faixa inteira é a altura do item: alinhar o conteúdo dentro dela é o
   que joga a capa pro topo ou pro fundo */
.discography-item__meta {
    height: 100%;
    align-items: flex-start;
}
.discography-item:nth-child(even) .discography-item__meta {
    align-items: flex-end;
}
.discography-item:hover{
    opacity: 100%;
    transition: .4s ease;
}
.discography-list:hover .discography-item:not(:hover){
    opacity: 80%;
    transition: .4s ease;
}
.discography-item__meta span{
    white-space: nowrap;
}
.discography-item__meta {
    display: flex;
    justify-content: space-between;
    font-size: 1.53vw;
    gap: 0.83vw;
}
.discography-item__meta .year {
    font-size: 1.11vw;
}
/* quadrada sempre: os quatro limites presos no mesmo valor impedem que o
   flex do __meta estique ou comprima a capa */
.discography-item img {
    width: var(--disc-size);
    height: var(--disc-size);
    min-width: var(--disc-size);
    max-width: var(--disc-size);
    min-height: var(--disc-size);
    max-height: var(--disc-size);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.discography-item:hover .discography-item__cover img {
    transform: scale(1.03);
}




/* SELECTED SOUNDS */

.selected-sounds-stage {
    position: relative;
    padding: 0 1.39vw;
    height: calc(100vh - 10vw);
    overflow: hidden;
}
.sound-word {
    position: absolute;
    padding: 0.28vw 0.69vw;
    border: 1px solid var(--black);
    background-color: var(--white);
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
}
.sound-word:hover {
    background-color: var(--black);
    color: var(--white);
}
.sound-word.is-playing {
    background-color: var(--black);
    color: var(--white);
}
/* size variants driven by data-size on each .sound-word (set in the loop) */
.sound-word[data-size="sm"] { font-size: 0.97vw; }
.sound-word[data-size="md"] { font-size: 1.25vw; }
.sound-word[data-size="lg"] { font-size: 1.81vw; }




/* INFO */

.info-layout {
    padding: 0 1.39vw;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 1.39vw;
}
/* .info-layout__image { */
    /* aspect-ratio: 4 / 5;
    overflow: hidden;
} */
.info-layout__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-layout__text {
    font-size: 1.11vw;
}
.info-layout__text p {
    margin-bottom: 1.11em;
}




@media only screen and (max-width: 2200px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}




@media only screen and (max-width: 1680px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}



@media only screen and (max-width: 1440px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}



@media only screen and (max-width: 1366px) and (min-height: 680px) and (max-height: 690px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}



@media only screen and (max-width: 1280px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/



}



@media only screen and (max-width: 1024px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/




}