:root {
    --navy-950: #06131c;
    --navy-900: #081c29;
    --navy-800: #0b2938;
    --navy-700: #10384a;

    --green-950: #071713;
    --green-900: #0a211b;
    --green-800: #0d3027;
    --green-700: #124337;

    --cream: #e8eee8;
    --muted: #9eafa8;
    --line: rgba(232, 238, 232, 0.18);

    --accent: #7da99a;

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy-950);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    background: linear-gradient(
            to bottom,
            rgba(6, 19, 28, 0.92) 0%,
            rgba(6, 19, 28, 0.72) 55%,
            rgba(6, 19, 28, 0) 100%
    );

    backdrop-filter: blur(12px);
}
.site-header::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 55px;

    background: linear-gradient(
            to bottom,
            rgba(6, 19, 28, 0.28),
            rgba(6, 19, 28, 0.08),
            transparent
    );

    filter: blur(4px);
    pointer-events: none;
}
.logo {
    position: relative;
    display: inline-block;

    font-family: "Courier Prime", monospace;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1;

    color: var(--cream);

    /* aparência de impressão */
    text-shadow:
            0.4px 0 rgba(232, 238, 232, 0.25),
            -0.3px 0 rgba(232, 238, 232, 0.18);
}
.logo::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
            repeating-linear-gradient(
                    0deg,
                    transparent 0px,
                    transparent 2px,
                    rgba(6, 19, 28, 0.18) 3px,
                    transparent 4px
            );

    pointer-events: none;
    mix-blend-mode: multiply;
}
.desktop-nav {
    display: flex;
    gap: 42px;
}

.desktop-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--cream);
}

.menu-button {
    display: none;
    border: 0;
    background: none;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--cream);
    margin: 6px 0;
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: 100vh;
    padding: 130px 5vw 70px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 7vw;
    align-items: center;

    position: relative;
    overflow: hidden;

    background: var(--navy-950);
}
.hero::before {
    content: "";
    position: absolute;
    inset: -60px;

    background-image: url("../images/bruna.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(30px);
    transform: scale(1.15);

    opacity: 0.35;

    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
            radial-gradient(
                    circle at 70% 20%,
                    rgba(18, 67, 55, 0.6),
                    transparent 30%
            ),
            linear-gradient(
                    90deg,
                    rgba(6, 19, 28, 0.92),
                    rgba(6, 19, 28, 0.55)
            );

    z-index: 1;
    pointer-events: none;
}
.hero > * {
    position: relative;
    z-index: 2;
}

.hero-image:hover {
    transform: translateY(-8px) scale(1.015);

    box-shadow:
            0 35px 75px rgba(0, 0, 0, 0.45);
}
.hero-image {
    height: 72vh;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;

    box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.35);

    transition:
            transform 0.5s ease,
            box-shadow 0.5s ease;

}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}
.image-placeholder {
    background:
        linear-gradient(135deg, var(--green-800), var(--navy-800));
    border: 1px solid var(--line);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(232, 238, 232, 0.16);
}

.image-placeholder > div {
    position: relative;
    z-index: 1;
    text-align: center;
}

.image-placeholder span {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.15em;
}

.image-placeholder small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
}

.hero-content {
    max-width: 560px;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

h1,
h2 {
    font-family: var(--font-display);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero h1 {
    font-family: "Courier Prime", monospace;
    font-size: clamp(72px, 9vw, 150px);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 0.9;

    text-shadow:
            0.5px 0 rgba(232, 238, 232, 0.25),
            -0.4px 0 rgba(232, 238, 232, 0.15);
}

h1 em,
h2 em {
    font-style: normal;
    color: var(--accent);
}
h2 em span {
    color: var(--cream);
}
.hero-description {
    max-width: 370px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 17px;
}

.scroll-link {
    display: inline-block;
    margin-top: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section {
    padding: 130px 8vw;
    scroll-margin-top: 84px;
}

.section-label {
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.about-section {
    background: var(--green-950);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
}

.about-grid h2,
.music-heading h2,
.contact-content h2 {
    font-size: clamp(50px, 6vw, 92px);
}

.about-text {
    max-width: 600px;
}

.about-text p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 28px;
}

.music-section {
    background: var(--navy-900);
}
.music-logo {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);

    text-shadow:
            0.5px 0 rgba(232, 238, 232, 0.25),
            -0.4px 0 rgba(232, 238, 232, 0.15);
}
.music-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 10vw;
    align-items: end;
}

.section-intro {
    color: var(--muted);
    max-width: 450px;
}

.track-list {
    margin-top: 80px;
    border-top: 1px solid var(--line);
}

.track {
    min-height: 90px;
    border-bottom: 1px solid var(--line);

    display: grid;
    grid-template-columns: 70px 1fr 180px 80px 40px;
    gap: 20px;
    align-items: center;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.track:hover {
    background: var(--green-800);
    padding: 0 20px;
}

.track-number {
    color: var(--accent);
    font-size: 12px;
}

.track-name {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 26px);
}

.track-type,
.track-duration {
    color: var(--muted);
    font-size: 12px;
}

.track-arrow {
    text-align: right;
    font-size: 20px;
}

.ep-section {
    position: relative;
    overflow: hidden;

    background: var(--navy-950);
}
.ep-section::before {
    content: "";
    position: absolute;
    inset: -80px;

    background-image: url("../images/capaep2.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(30px);
    transform: scale(1.15);

    opacity: 0.50;

    z-index: 0;
}
.ep-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
            radial-gradient(
                    circle at 20% 40%,
                    rgba(18, 67, 55, 0.65),
                    transparent 45%
            ),
            linear-gradient(
                    90deg,
                    rgba(6, 19, 28, 0.88),
                    rgba(6, 19, 28, 0.65)
            );

    z-index: 1;
    pointer-events: none;
}
.ep-section > * {
    position: relative;
    z-index: 2;
}
.ep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    align-items: center;
}

.ep-cover {
    width: 100%;
    max-width: 650px;
    height: 72vh;
    min-height: 500px;

    border-radius: 24px;
    overflow: hidden;

    box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.35);

    transition:
            transform 0.5s ease,
            box-shadow 0.5s ease;
}

.ep-cover:hover {
    transform: translateY(-8px) scale(1.015);

    box-shadow:
            0 35px 75px rgba(0, 0, 0, 0.45);
}

.ep-cover img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.ep-cover:hover img {
    transform: scale(1.04);
}
.ep-content {
    max-width: 520px;
}

.ep-content h2 {
    font-size: clamp(65px, 8vw, 125px);
}

.ep-content > p:not(.eyebrow) {
    margin-top: 35px;
    color: var(--muted);
    font-size: 17px;
}

.coming-soon {
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid var(--line);

    display: flex;
    gap: 20px;
    align-items: center;
}

.coming-soon span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.coming-soon strong {
    font-family: var(--font-display);
}

.coming-soon small {
    color: var(--muted);
    letter-spacing: 0.15em;
}

.contact-section {
    background: var(--green-950);
}

.contact-content {
    max-width: 1000px;
}

.social-placeholder {
    color: var(--muted);
    margin-top: 35px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.social-links a,
.listen-button {
    border: 1px solid var(--line);
    padding: 14px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
}

.social-links a:hover,
.listen-button:hover {
    background: var(--green-700);
}

.disabled-link {
    opacity: 0.45;
    cursor: default;
}

footer {
    min-height: 150px;
    padding: 45px 5vw;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #041016;
    color: var(--muted);
}

.footer-logo {
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 700;
}

footer p {
    font-size: 11px;
}


/* SONG PAGE */

.song-page {
    padding-top: 84px;
}

.song-hero {
    min-height: calc(100vh - 84px);
    padding: 8vw;

    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 9vw;
    align-items: center;

    background:
        radial-gradient(circle at 80% 30%, rgba(18, 67, 55, 0.5), transparent 35%),
        var(--navy-950);
}

.song-image {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1 / 1;

    border-radius: 24px;
    overflow: hidden;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.35);

    transition:
            transform 0.5s ease,
            box-shadow 0.5s ease;
}

.song-image:hover {
    transform: translateY(-8px) scale(1.015);

    box-shadow:
            0 35px 75px rgba(0, 0, 0, 0.45);
}

.song-intro h1 {
    font-size: clamp(55px, 7vw, 110px);
}

.song-artist {
    color: var(--muted);
    letter-spacing: 0.2em;
    font-size: 12px;
    margin-top: 25px;
}

.listen-buttons {
    display: flex;
    gap: 12px;
    margin-top: 45px;
}

.song-section {
    padding: 120px 12vw;
    background: var(--green-950);
    scroll-margin-top: 84px;
}

.lyrics-layout,
.meaning-layout {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 10vw;
}

.song-section h2 {
    font-size: clamp(45px, 5vw, 75px);
}

.lyrics {
    white-space: pre-line;
    font-size: 17px;
    line-height: 2;
    color: var(--cream);
}

.placeholder-text {
    color: var(--muted);
}

.meaning-section {
    background: var(--navy-900);
}

.meaning-layout > div {
    max-width: 650px;
    color: var(--muted);
    font-size: 17px;
}
.video-section {
    padding: 100px 12vw;
    background: var(--navy-950);
}

.video-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    aspect-ratio: 16 / 9;

    border-radius: 24px;
    overflow: hidden;

    box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.35);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        inset: 84px 0 auto;
        z-index: 999;

        display: flex;
        flex-direction: column;

        background: var(--navy-950);
        border-bottom: 1px solid var(--line);

        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.open {
        transform: translateY(0);
    }

    .mobile-menu a {
        padding: 20px 5vw;
        border-bottom: 1px solid var(--line);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 12px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 110px;
    }

    .hero-image {
        min-height: 72vh;
        overflow: hidden;
    }


    .about-grid,
    .music-heading,
    .ep-grid,
    .song-hero,
    .lyrics-layout,
    .meaning-layout {
        grid-template-columns: 1fr;
    }

    .track {
        grid-template-columns: 45px 1fr 60px 30px;
    }

    .track-type {
        display: none;
    }

    .song-image {
        max-width: 100%;
    }
    .extra-heading {
        grid-template-columns: 1fr;
    }

    .extra-grid {
        grid-template-columns: 1fr;
    }

    .extra-card-large {
        grid-row: auto;
    }

    .extra-card-large .extra-image {
        min-height: auto;
    }

    .extra-card-wide {
        grid-column: auto;
    }

    .extra-card-wide .extra-image {
        aspect-ratio: 1.35 / 1;
    }

    /* CARD */

    .extra-video {
        flex: 0 0 420px;

        display: block;

        border: 1px solid var(--line);
        background: rgba(6, 19, 28, 0.35);

        transition:
                transform 0.4s ease,
                background 0.4s ease,
                border-color 0.4s ease;
    }

    .extra-video:hover {
        transform: translateY(-8px);

        background: var(--green-800);

        border-color: rgba(232, 238, 232, 0.3);
    }

    /* IMAGEM / THUMBNAIL */

    .extra-video-image {
        position: relative;

        width: 100%;
        aspect-ratio: 16 / 9;

        overflow: hidden;

        background:
                linear-gradient(
                        135deg,
                        var(--green-800),
                        var(--navy-800)
                );
    }

    .extra-video-image img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;

        transition: transform 0.7s ease;
    }

    .extra-video:hover .extra-video-image img {
        transform: scale(1.05);
    }

    /* BOTÃO PLAY */

    .play-button {
        position: absolute;

        left: 50%;
        top: 50%;

        transform: translate(-50%, -50%);

        width: 58px;
        height: 58px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(232, 238, 232, 0.7);
        border-radius: 50%;

        background: rgba(6, 19, 28, 0.75);

        backdrop-filter: blur(8px);

        color: var(--cream);

        font-size: 16px;

        padding-left: 3px;

        transition:
                transform 0.3s ease,
                background 0.3s ease;
    }

    .extra-video:hover .play-button {
        transform: translate(-50%, -50%) scale(1.1);

        background: var(--green-700);
    }

    /* INFORMAÇÕES */

    .extra-video-info {
        min-height: 125px;

        padding: 20px 22px;

        border-top: 1px solid var(--line);
    }

    .extra-video-info > span {
        display: block;

        color: var(--accent);

        font-size: 10px;

        letter-spacing: 0.2em;

        text-transform: uppercase;

        margin-bottom: 10px;
    }

    .extra-video-info h3 {
        font-family: var(--font-display);

        font-size: 21px;

        font-weight: 500;

        line-height: 1.2;
    }

    .extra-video-info p {
        margin-top: 8px;

        color: var(--muted);

        font-size: 11px;

        letter-spacing: 0.05em;
    }

    /* VIDEO SECTION */

    .video-section {
        padding: 120px 12vw;
        background: var(--navy-950);
        scroll-margin-top: 84px;
    }

    .video-heading {
        max-width: 700px;
        margin-bottom: 60px;
    }

    .video-heading h2 {
        font-size: clamp(50px, 6vw, 90px);
    }

    .video-container {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;

        aspect-ratio: 16 / 9;

        border-radius: 24px;
        overflow: hidden;

        background: var(--navy-900);

        box-shadow:
                0 25px 60px rgba(0, 0, 0, 0.35);

        transition:
                transform 0.5s ease,
                box-shadow 0.5s ease;
    }

    .video-container:hover {
        transform: translateY(-8px);

        box-shadow:
                0 35px 75px rgba(0, 0, 0, 0.45);
    }

    .video-container iframe {
        width: 100%;
        height: 100%;

        display: block;

        border: 0;
    }
    .extra-heading {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .extra-video {
        flex: 0 0 75vw;
    }
}

@media (max-width: 600px) {

    .site-header {
        height: 70px;
        padding: 0 6vw;
    }

    .mobile-menu {
        inset: 70px 0 auto;
    }

    .section {
        padding: 90px 6vw;
    }

    .hero {
        min-height: auto;
        padding: 110px 6vw 70px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero-image {
        height: 65vh;
        min-height: 450px;
    }

    .about-grid h2,
    .music-heading h2,
    .contact-content h2 {
        font-size: 55px;
    }

    .track {
        min-height: 78px;
        grid-template-columns: 35px 1fr 55px 20px;
        gap: 8px;
    }

    .track-name {
        font-size: 17px;
    }

    .track:hover {
        padding: 0 10px;
    }

    .track-duration {
        font-size: 10px;
    }

    .track-arrow {
        font-size: 15px;
    }

    .ep-content h2 {
        font-size: 70px;
    }

    .social-links {
        flex-direction: column;
    }

    .social-links a {
        width: 100%;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .song-page {
        padding-top: 70px;
    }

    .song-hero {
        min-height: auto;
        padding: 70px 6vw 90px;
    }

    .song-intro h1 {
        font-size: 58px;
    }

    .song-section {
        padding: 90px 6vw;
    }

    .listen-buttons {
        flex-direction: column;
    }

    .listen-button {
        text-align: center;
    }
    .video-section {
        padding: 70px 6vw;
    }

    .video-container {
        border-radius: 16px;
    }
    .video-section {
        padding: 90px 6vw;
    }

    .video-heading {
        margin-bottom: 40px;
    }

    .video-container {
        border-radius: 16px;
    }
    .extra-heading h2 {
        font-size: 65px;
    }

    .extra-video {
        flex: 0 0 82vw;
    }


    .extra-video-info {
        min-height: 115px;
        padding: 18px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

}
/* =========================================
   EXTRA — VIDEO CARDS
========================================= */

.extra-section {
    background:
            radial-gradient(
                    circle at 80% 40%,
                    rgba(16, 56, 74, 0.7),
                    transparent 40%
            ),
            var(--navy-900);
}

.extra-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 10vw;
    align-items: end;
}

.extra-heading h2 {
    font-size: clamp(55px, 7vw, 100px);
}

.extra-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* CARD */

.extra-video {
    display: block;

    border: 1px solid var(--line);

    background: var(--navy-950);

    overflow: hidden;

    transition:
            transform 0.4s ease,
            background 0.4s ease,
            border-color 0.4s ease;
}

.extra-video:hover {
    transform: translateY(-8px);
    background: var(--green-800);
    border-color: rgba(232, 238, 232, 0.3);
}


/* THUMBNAIL */

.extra-video-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: var(--navy-800);
}

.extra-video-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.extra-video:hover .extra-video-image img {
    transform: scale(1.05);
}


/* PLAY BUTTON */

.play-button {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(232, 238, 232, 0.7);
    border-radius: 50%;

    background: rgba(6, 19, 28, 0.75);

    backdrop-filter: blur(8px);

    color: var(--cream);

    font-size: 14px;

    padding-left: 3px;

    transition:
            transform 0.3s ease,
            background 0.3s ease;
}

.extra-video:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(18, 67, 55, 0.9);
}


/* CARD TEXT */

.extra-video-info {
    padding: 20px 20px 22px;
}

.extra-video-info > span {
    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 10px;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.extra-video-info h3 {
    font-family: var(--font-display);

    font-size: 19px;

    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 12px;
}

.extra-video-info p {
    color: var(--muted);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* =========================================
   EXTRA — RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .extra-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .extra-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }

    .extra-video-image {
        aspect-ratio: 16 / 9;
    }

    .extra-video-info {
        padding: 18px;
    }

}
/* =========================================
   EXTRA — FEATURED CONTENT
========================================= */

.extra-section {
    background:
            radial-gradient(
                    circle at 80% 40%,
                    rgba(16, 56, 74, 0.7),
                    transparent 40%
            ),
            var(--navy-900);
}

.extra-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 10vw;
    align-items: end;
}

.extra-heading h2 {
    font-size: clamp(55px, 7vw, 100px);
}


/* =========================================
   FEATURED
========================================= */

.extra-featured {
    margin-top: 80px;
}

.extra-featured-card {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;

    min-height: 500px;

    border: 1px solid var(--line);

    background: var(--navy-950);

    overflow: hidden;

    transition:
            transform 0.5s ease,
            border-color 0.5s ease,
            background 0.5s ease;
}

.extra-featured-card:hover {
    transform: translateY(-6px);

    border-color: rgba(232, 238, 232, 0.3);

    background: var(--green-800);
}


/* =========================================
   FEATURED VIDEO
========================================= */

.extra-featured-media {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: var(--navy-950);
}

.extra-featured-media iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    object-fit: cover;
}

.extra-featured-thumbnail {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.extra-featured-card:hover .extra-featured-thumbnail {
    transform: scale(1.03);
}


/* =========================================
   FEATURED VIDEO OVERLAY
========================================= */

.extra-featured-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    pointer-events: none;

    background:
            linear-gradient(
                    180deg,
                    rgba(6, 19, 28, 0.05),
                    rgba(6, 19, 28, 0.35)
            );
}

.extra-featured-play {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(232, 238, 232, 0.7);

    border-radius: 50%;

    background: rgba(6, 19, 28, 0.7);

    backdrop-filter: blur(10px);

    color: var(--cream);

    font-size: 19px;

    padding-left: 4px;

    opacity: 0;

    transition:
            opacity 0.3s ease,
            transform 0.3s ease;
}

.extra-featured-card:hover .extra-featured-play {
    opacity: 1;

    transform: scale(1.08);
}


/* =========================================
   FEATURED INFORMATION
========================================= */

.extra-featured-info {
    padding: 55px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.extra-featured-info > span {
    display: block;

    color: var(--accent);

    font-size: 10px;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.extra-featured-info h3 {
    font-family: var(--font-display);

    font-size: clamp(30px, 3vw, 48px);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.extra-featured-info p {
    margin-top: 22px;

    color: var(--muted);

    font-size: 12px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.extra-featured-link {
    display: inline-block;

    width: fit-content;

    margin-top: 35px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--accent);

    color: var(--cream);

    font-size: 11px;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* =========================================
   ARTICLE FEATURED
========================================= */

.extra-featured-article {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 500px;
}

.extra-featured-article-image {
    overflow: hidden;
}

.extra-featured-article-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.extra-featured-card:hover .extra-featured-article-image img {
    transform: scale(1.04);
}


/* =========================================
   ARCHIVE
========================================= */

.extra-archive {
    margin-top: 90px;
}

.extra-archive-heading {
    display: flex;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--line);

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


/* =========================================
   SMALL CARDS
========================================= */

.extra-grid {
    margin-top: 24px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.extra-video {
    display: block;

    border: 1px solid var(--line);

    background: var(--navy-950);

    overflow: hidden;

    transition:
            transform 0.4s ease,
            background 0.4s ease,
            border-color 0.4s ease;
}

.extra-video:hover {
    transform: translateY(-8px);

    background: var(--green-800);

    border-color: rgba(232, 238, 232, 0.3);
}

.extra-video-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: var(--navy-800);
}

.extra-video-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.extra-video:hover .extra-video-image img {
    transform: scale(1.05);
}


/* =========================================
   SMALL CARD PLAY BUTTON
========================================= */

.play-button {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(232, 238, 232, 0.7);

    border-radius: 50%;

    background: rgba(6, 19, 28, 0.75);

    backdrop-filter: blur(8px);

    color: var(--cream);

    font-size: 14px;

    padding-left: 3px;

    transition:
            transform 0.3s ease,
            background 0.3s ease;
}

.extra-video:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);

    background: rgba(18, 67, 55, 0.9);
}


/* =========================================
   SMALL CARD INFO
========================================= */

.extra-video-info {
    padding: 20px 20px 22px;
}

.extra-video-info > span {
    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 10px;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.extra-video-info h3 {
    font-family: var(--font-display);

    font-size: 19px;

    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 12px;
}

.extra-video-info p {
    color: var(--muted);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* =========================================
   EXTRA — TABLET
========================================= */

@media (max-width: 1100px) {

    .extra-featured-card {
        grid-template-columns: 1fr;
    }

    .extra-featured-media {
        min-height: 55vw;
    }

    .extra-featured-info {
        padding: 40px;
    }

    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   EXTRA — MOBILE
========================================= */

@media (max-width: 600px) {

    .extra-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .extra-featured {
        margin-top: 50px;
    }

    .extra-featured-card {
        display: block;

        min-height: auto;
    }

    .extra-featured-media {
        min-height: auto;

        aspect-ratio: 16 / 9;
    }

    .extra-featured-info {
        padding: 28px 22px 32px;
    }

    .extra-featured-info h3 {
        font-size: 30px;
    }

    .extra-featured-link {
        margin-top: 28px;
    }

    .extra-featured-article {
        display: block;

        min-height: auto;
    }

    .extra-featured-article-image {
        aspect-ratio: 4 / 3;
    }

    .extra-archive {
        margin-top: 65px;
    }

    .extra-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 20px;
    }

    .extra-video-info {
        padding: 18px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

}
.lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 17px;
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}
/* =========================================
   EXTRA — FEATURED VIDEO LAYERS
========================================= */

.extra-featured-thumbnail {
    z-index: 2;
}

.extra-featured-iframe {
    z-index: 1;
}

.extra-featured-overlay {
    z-index: 3;
}
/* =========================================
   EXTRA — FEATURED VIDEO INTERACTION
========================================= */

.extra-featured-overlay {
    pointer-events: none;
}


.extra-featured-overlay .play-button {
    transition: opacity 0.3s ease;
}

.extra-featured:hover .extra-featured-overlay .play-button {
    opacity: 0;
}
.extra-featured-media {
    position: relative;
    overflow: hidden;
}

.extra-featured-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.extra-featured-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 3;
}
/* =========================================================
   LIVE / PHOTOBOOK
========================================================= */

.live-section {
    position: relative;
    overflow: hidden;

    background: var(--navy-950);
}
.live-section::before {
    content: "";
    position: absolute;
    inset: -40px;

    background-image: url("../images/show-01.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(20px);
    grayscale(25%);

    opacity: 0.32;

    z-index: 0;
}
.live-section > * {
    position: relative;
    z-index: 2;
}
.live-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
            linear-gradient(
                    90deg,
                    rgba(6, 19, 28, 0.88),
                    rgba(6, 19, 28, 0.68)
            );

    z-index: 1;
    pointer-events: none;
}
.live-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.live-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.live-label {
    color: var(--accent);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.live-subtitle {
    font-family: "Courier Prime", monospace;
    font-size: 16px;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 30px;
}

.live-title h2 {
    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.live-title h2 em {
    font-style: italic;
    color: var(--accent);
}

.live-intro {
    max-width: 390px;
    padding-bottom: 8px;
}

.live-intro p {
    margin: 0 0 5px;
    line-height: 1.7;
    color: var(--muted);
}

.live-date {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--cream);
}

.live-intro {
    max-width: 390px;
    padding-bottom: 8px;
}

.live-intro p {
    margin: 0 0 5px;
    line-height: 1.7;
    opacity: 0.75;
}

.live-date {
    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
}


/* =========================================================
   PHOTOBOOK GRID
========================================================= */

.photobook {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 300px 260px 380px;
    gap: 14px;
    position: relative;
}

.photo {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
    background: none;
    cursor: pointer;
    text-align: left;
}

.photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    filter: grayscale(100%);
    transition:
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.5s ease;
}

.photo:hover img {
    transform: scale(1.045);
    filter: grayscale(0%);
}


/* FOTO 01 — grande */

.photo-main {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}


/* FOTO 02 */

.photo-02 {
    grid-column: 8 / 13;
    grid-row: 1;
}


/* FOTO 03 */

.photo-03 {
    grid-column: 8 / 13;
    grid-row: 2;
}


/* FOTO 04 */

.photo-04 {
    grid-column: 1 / 5;
    grid-row: 3;
}


/* FOTO 05 */

.photo-05 {
    grid-column: 5 / 10;
    grid-row: 3;
}


/* FOTO 06 */

.photo-06 {
    grid-column: 10 / 13;
    grid-row: 3;
}



/* =========================================================
   FOOTER DO PHOTOBOOK
========================================================= */

.live-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 18px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    font-family: "Courier Prime", monospace;
    font-size: 10px;
    letter-spacing: 0.12em;

    opacity: 0.55;
}


/* =========================================================
   PHOTO LIGHTBOX
========================================================= */

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.94);

    opacity: 0;
    visibility: hidden;

    transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
}

.photo-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.photo-lightbox img {
    max-width: 92vw;
    max-height: 88vh;

    object-fit: contain;

    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}


.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;

    border: none;
    background: none;

    color: white;

    font-family: "Courier Prime", monospace;
    font-size: 28px;

    cursor: pointer;
}


.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 30px;

    color: white;

    font-family: "Courier Prime", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;

    opacity: 0.7;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .live-heading {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 45px;
    }

    .live-intro {
        max-width: 100%;
    }
    .live-title h2 {
        font-size: clamp(52px, 15vw, 75px);
    }

    .live-subtitle {
        margin-bottom: 22px;
    }
    .photobook {
        display: grid;

        grid-template-columns: 1fr 1fr;
        grid-template-rows:
            330px
            220px
            280px
            280px;

        gap: 10px;
    }

    .photo-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .photo-02 {
        grid-column: 1;
        grid-row: 2;
    }

    .photo-03 {
        grid-column: 2;
        grid-row: 2;
    }

    .photo-04 {
        grid-column: 1;
        grid-row: 3;
    }

    .photo-05 {
        grid-column: 2;
        grid-row: 3;
    }

    .photo-06 {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .photo-last {
        display: none;
    }

    .live-footer {
        font-size: 9px;
    }

}
/* =========================================================
   PHOTO LIGHTBOX — NAVEGAÇÃO
========================================================= */

.lightbox-nav {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    background: rgba(6, 19, 28, 0.65);

    color: white;

    font-family: "Courier Prime", monospace;
    font-size: 20px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
            background 0.3s ease,
            transform 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(18, 67, 55, 0.9);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}
@media (max-width: 600px) {

    /* =========================================
       ÍCONES — MOBILE
    ========================================= */

    /* Remove a aparência de emoji da seta externa */
    .track-arrow {
        font-size: 0;
    }

    .track-arrow::after {
        content: "";

        display: block;

        width: 7px;
        height: 7px;

        border-top: 1px solid var(--cream);
        border-right: 1px solid var(--cream);

        transform: rotate(45deg);
    }
    /* Esconde setas externas no mobile */
    .mobile-hide-arrow {
        display: none;
    }

    /* =========================================
       PLAY BUTTON — MOBILE
    ========================================= */

    .play-button {
        font-size: 0;
        padding-left: 0;
    }

    .play-button::after {
        content: "";

        display: block;

        width: 0;
        height: 0;

        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: 10px solid var(--cream);

        margin-left: 3px;
    }
}
