﻿@font-face {
    font-family: 'Galano Grotesque';
    src: url('../new/assets/fonts/GalanoGrotesque-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../new/assets/fonts/GalanoGrotesque-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../new/assets/fonts/GalanoGrotesque-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../new/assets/fonts/GalanoGrotesque-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Paleta oficial da marca Montanea */
    --mineral: #2E2E2E; /* Cinza mineral */
    --offwhite: #F8F7F4; /* Off White */
    --orange: #FC4F03; /* Laranja */
    /* Papéis (mapeados para as 3 cores acima; mantidos por semântica no CSS) */
    --ink: #2E2E2E;
    --charcoal: #2E2E2E;
    --cream: #F8F7F4;
    --pine: color-mix(in srgb, var(--mineral) 88%, black 12%);
    --gold: #FC4F03;
    --stone: rgba(46,46,46,0.55);
    --line: rgba(46,46,46,0.14);
    --maxw: 1180px;
    --font: 'Galano Grotesque', 'General Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
}

/* ===== topographic contour signature ===== */
.contour {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
}

    .contour svg {
        width: 100%;
        height: 100%;
    }

/* ===== header ===== */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248,247,244,0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    max-width: var(--maxw);
    margin: 0 auto;
}

.brand {
    font-family: var(--font);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

    .brand span {
        color: var(--gold);
    }

.brand-logo {
    display: flex;
    align-items: center;
}

    .brand-logo img {
        height: 50px;
        width: auto;
        display: block;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 500;
}

    .nav-links a {
        position: relative;
        padding: 4px 0;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 1px;
            background: var(--gold);
            transition: width .25s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.lang-toggle {
    display: flex;
    border: 1px solid var(--ink);
    border-radius: 20px;
    overflow: hidden;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
}

    .lang-toggle button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 7px 14px;
        font-family: var(--font);
        font-size: 12px;
        font-weight: 600;
        color: var(--ink);
        letter-spacing: .04em;
    }

        .lang-toggle button.active {
            background: var(--ink);
            color: var(--cream);
        }

.nav-cta {
    background: var(--pine);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--gold);
    }

.burger {
    display: none;
}

/* ===== hero ===== */
.hero {
    position: relative;
    padding: 0 0 80px;
    overflow: hidden;
}

.hero-video-banner {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--mineral);
    overflow: hidden;
    position: relative;
    height: 100vh;
}

    .hero-video-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.hero > .wrap {
    padding-top: 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero .eyebrow {
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    max-width: 640px;
}

.hero p.lead {
    margin-top: 24px;
    font-size: 18px;
    color: #3d4440;
    max-width: 520px;
}

.hero-cta {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--charcoal);
    color: #fff;
    padding: 15px 28px;
    border-radius: 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: transform .2s ease, background .2s ease;
}

    .hero-cta:hover {
        background: var(--gold);
        transform: translateY(-2px);
    }

.hero-photo {
    position: relative;
    padding-bottom: 34px; /* espaço reservado para a legenda não cortar */
}

.hero-photo-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

    .hero-photo-frame img,
    .hero-photo-frame video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        transition: filter .5s ease, transform .5s ease;
    }

    .hero-photo-frame:hover img, .hero-photo-frame.show-cv img {
        filter: blur(7px) brightness(0.55);
        transform: scale(1.04);
    }

    .hero-photo-frame::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255,255,255,0.25);
        box-shadow: inset 0 0 0 10px var(--cream);
        pointer-events: none;
    }

.cv-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 30px;
    background: rgba(46,46,46,0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
}

.hero-photo-frame:hover .cv-overlay,
.hero-photo-frame.show-cv .cv-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .4s ease .1s, transform .4s ease .1s, visibility 0s linear;
}

.cv-name {
    font-family: var(--font);
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.cv-role {
    font-family: var(--font);
    font-weight: 500;
    color: var(--orange);
    font-size: 13px;
    margin-top: 4px;
    margin-bottom: 18px;
}

.cv-list {
    list-style: none;
}

    .cv-list li {
        position: relative;
        padding-left: 16px;
        margin-bottom: 10px;
        color: rgba(248,247,244,0.9);
        font-size: 12.5px;
        line-height: 1.5;
    }

        .cv-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--orange);
        }

.hero-tag {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    background: var(--gold);
    color: #fff;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 2px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* divider */
.divider {
    position: relative;
    height: 64px;
}

    .divider svg {
        width: 100%;
        height: 100%;
        display: block;
    }

/* ===== ascent / BASE section ===== */
.ascent {
    background: var(--charcoal);
    color: var(--cream);
    padding: 100px 0 90px;
    position: relative;
}

.ascent-head {
    max-width: 640px;
    margin-bottom: 56px;
}

    .ascent-head h2 {
        font-size: clamp(30px,3.6vw,42px);
        color: #fff;
    }

    .ascent-head p {
        margin-top: 16px;
        color: rgba(248,247,244,0.65);
        font-size: 16px;
    }

.steps {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(248,247,244,0.16);
}

.step {
    border-bottom: 1px solid rgba(248,247,244,0.16);
    padding: 30px 0;
    display: grid;
    grid-template-columns: 64px 1fr 32px;
    gap: 24px;
    align-items: flex-start;
    cursor: pointer;
}

.step-num {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    padding-top: 6px;
}

.step-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.step-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    border: 1px solid rgba(192,138,62,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192,138,62,0.08);
}

    .step-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.6;
    }

.step-body p {
    max-height: 0;
    overflow: hidden;
    color: rgba(248,247,244,0.68);
    font-size: 15px;
    line-height: 1.7;
    transition: max-height .4s ease, margin-top .4s ease;
    margin-top: 0;
}

.step-body .tag {
    max-height: 0;
    overflow: hidden;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: max-height .4s ease, margin-top .4s ease;
}

@ .step.open .step-body p {
    max-height: 200px;
    margin-top: 14px;
}

.step.open .step-body .tag {
    max-height: 40px;
    margin-top: 10px;
}

.step-plus {
    font-family: var(--font);
    font-size: 26px;
    color: var(--gold);
    padding-top: 2px;
    transition: transform .3s ease;
}

.step.open .step-plus {
    transform: rotate(45deg);
}

/* ===== clients marquee ===== */
.clients {
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
}

    .clients .eyebrow {
        display: block;
        text-align: center;
        margin-bottom: 36px;
    }

    .clients h2 {
        text-align: center;
        font-size: clamp(22px,2.6vw,30px);
        max-width: 640px;
        margin: 0 auto 44px;
    }

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 30px;
    align-items: center;
}

    .logo-grid img {
        max-height: 75px;
        width: auto;
        margin: 0 auto;
        filter: grayscale(1);
        opacity: 0.55;
        transition: opacity .25s ease, filter .25s ease;
    }

        .logo-grid img:hover {
            filter: grayscale(0);
            opacity: 1;
        }

/* ===== portfolio ===== */
.portfolio {
    padding: 100px 0;
}

.portfolio-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

    .portfolio-head h2 {
        font-size: clamp(28px,3.4vw,40px);
        max-width: 560px;
    }

.case-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
}

.case-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 5/4;
    background: var(--stone);
}

    .case-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .case-card:hover img {
        transform: scale(1.05);
    }

.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,24,28,0.85) 0%, rgba(20,24,28,0.05) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

    .case-overlay .yr {
        color: var(--gold);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .08em;
    }

    .case-overlay h3 {
        color: #fff;
        font-size: 19px;
        margin-top: 6px;
        font-weight: 500;
    }

.portfolio-cta {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

/* ===== testimonials ===== */
.testimonials {
    background: var(--pine);
    color: #fff;
    padding: 96px 0;
    position: relative;
}

.test-head {
    max-width: 600px;
    margin-bottom: 50px;
}

    .test-head h2 {
        color: #fff;
        font-size: clamp(28px,3.4vw,40px);
    }

.test-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: none;
}

    .test-track::-webkit-scrollbar {
        display: none;
    }

.test-card {
    scroll-snap-align: start;
    flex: 0 0 min(420px,86vw);
    background: rgba(248,247,244,0.06);
    border: 1px solid rgba(248,247,244,0.14);
    border-radius: 6px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.test-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .test-person img {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
    }

    .test-person .nm {
        font-weight: 600;
        font-size: 14px;
    }

    .test-person .hd {
        font-size: 12px;
        color: rgba(248,247,244,0.55);
    }

.test-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(248,247,244,0.85);
}

.test-nav {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

    .test-nav button {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(248,247,244,0.35);
        background: none;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }

        .test-nav button:hover {
            background: rgba(248,247,244,0.12);
        }

/* ===== cta strip ===== */
.cta-strip {
    padding: 90px 0;
    text-align: center;
}

    .cta-strip h2 {
        font-size: clamp(28px,4vw,46px);
        max-width: 720px;
        margin: 0 auto;
    }

    .cta-strip .hero-cta {
        margin-top: 32px;
    }

/* ===== footer ===== */
footer {
    background: var(--charcoal);
    color: rgba(248,247,244,0.7);
    padding: 70px 0 28px;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(248,247,244,0.14);
}

.foot-brand {
    max-width: 340px;
}

    .foot-brand .brand-logo {
        display: inline-flex;
        align-items: center;
        background: var(--offwhite);
        padding: 12px 18px;
        border-radius: 8px;
    }

        .foot-brand .brand-logo img {
            height: 32px;
            width: auto;
            display: block;
        }

    .foot-brand p {
        margin-top: 16px;
        font-size: 14px;
        color: rgba(248,247,244,0.55);
    }

.foot-cols {
    display: flex;
    gap: 70px;
}

.foot-col h4 {
    font-family: var(--font);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.foot-col a, .foot-col span {
    display: block;
    font-size: 14px;
    color: rgba(248,247,244,0.65);
    margin-bottom: 10px;
}

    .foot-col a:hover {
        color: #fff;
    }

.foot-social {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}

    .foot-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(248,247,244,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

        .foot-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    font-size: 12.5px;
    color: rgba(248,247,244,0.4);
}

/* whatsapp float */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

@media (max-width:880px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .logo-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

    .foot-cols {
        gap: 40px;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: block;
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,.22);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .float:hover {
        color: #fff;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 28px rgba(0,0,0,.28);
    }

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.foot-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.foot-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-open {
    overflow: hidden;
}


/* ==========================================
   CARDS
========================================== */

.case-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    cursor: pointer;
    overflow: hidden;
}

    .case-card img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* ==========================================
   MODAL DO PROJETO
========================================== */

.project-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 10000;
    transition: opacity .25s ease, visibility .25s ease;
}

    .project-modal.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(6px);
}

.project-modal-dialog {
    position: relative;
    width: min(1200px, 100%);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 40px;
    background: #14181c;
    color: #fff;
    z-index: 1;
}

.project-modal-header {
    padding-right: 60px;
    margin-bottom: 30px;
}

    .project-modal-header h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 48px);
        line-height: 1.05;
    }

.project-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}


/* ==========================================
   GALERIA
========================================== */

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #000;
    overflow: hidden;
    cursor: zoom-in;
}

    .project-gallery-item img {
        display: block;
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform .35s ease;
    }

    .project-gallery-item:hover img {
        transform: scale(1.03);
    }


/* ==========================================
   LIGHTBOX
========================================== */

.image-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 11000;
    transition: opacity .2s ease, visibility .2s ease;
}

    .image-lightbox.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .96);
}

.image-lightbox img {
    position: relative;
    display: block;
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.image-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}


/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 900px) {

    .project-modal {
        padding: 20px;
    }

    .project-modal-dialog {
        max-height: calc(100vh - 40px);
        padding: 30px 20px;
    }

    .project-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-gallery-item img {
        height: 230px;
    }
}


@media (max-width: 560px) {

    .project-modal {
        padding: 0;
    }

    .project-modal-dialog {
        width: 100%;
        height: 100%;
        max-height: none;
        padding: 70px 16px 30px;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-gallery-item img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .image-lightbox {
        padding: 15px;
    }
}


/* =========================================================
   ACCORDION / A BASE
========================================================= */

.step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr 40px;
    gap: 24px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

    .step:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

.step-num {
    padding-top: 4px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.step-body {
    min-width: 0;
}

    .step-body h3 {
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 0;
        color: #fff;
        font-size: 21px;
        line-height: 1.3;
    }

.step-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(211, 153, 37, 0.55);
    border-radius: 50%;
    color: var(--gold);
}

    .step-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
    }

.step .tag {
    margin-top: 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}


/* TEXTO FECHADO */

.step-body > p {
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    opacity: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    transition: max-height 0.45s ease, opacity 0.3s ease, margin-top 0.3s ease;
}


/* TEXTO ABERTO */

.step.open .step-body > p {
    max-height: 500px;
    margin-top: 18px;
    opacity: 1;
}


/* + */

.step-plus {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
    color: var(--gold);
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}


/* vira X quando aberto */

.step.open .step-plus {
    transform: rotate(45deg);
}

.step-body > p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.step.open .step-body > p {
    max-height: 500px;
    opacity: 1;
    margin-top: 18px;
}


@media (max-width: 768px) {

    .step {
        grid-template-columns: 40px 1fr 28px;
        gap: 12px;
        padding: 24px 0;
    }

    .step-body h3 {
        align-items: flex-start;
        font-size: 18px;
    }

    .step-icon {
        width: 34px;
        height: 34px;
    }

        .step-icon svg {
            width: 17px;
            height: 17px;
        }

    .step.open .step-body > p {
        max-height: 800px;
    }
}

/* =========================================================
   PORTFOLIO PAGE
========================================================= */

.portfolio-page-hero {
    padding: 180px 0 80px;
    background: #14181c;
    color: #fff;
}

    .portfolio-page-hero h1 {
        max-width: 900px;
        margin: 12px 0 24px;
        font-size: clamp(42px, 6vw, 76px);
        line-height: 1;
    }

    .portfolio-page-hero p {
        max-width: 720px;
        color: rgba(255, 255, 255, .7);
        font-size: 18px;
        line-height: 1.6;
    }

.portfolio-page {
    padding-top: 80px;
}

.case-view {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

.project-detail-link {
    margin-top: 24px;
}

.portfolio-empty {
    grid-column: 1 / -1;
    padding: 80px 0;
    text-align: center;
}


/* =========================================================
   PROJECT DETAILS
========================================================= */

.project-detail-hero {
    padding: 180px 0 70px;
    background: #14181c;
    color: #fff;
}

.project-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s ease;
}

    .project-back:hover {
        color: #fff;
    }

.project-detail-heading {
    max-width: 1000px;
}

    .project-detail-heading h1 {
        margin: 12px 0 0;
        font-size: clamp(42px, 7vw, 86px);
        line-height: .98;
    }


/* =========================================================
   DESCRIÇÃO
========================================================= */

.project-description {
    padding: 80px 0;
}

.project-description-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

    .project-description-content p {
        margin: 0 0 24px;
    }


/* =========================================================
   SPOTIFY
========================================================= */

.project-spotify {
    padding: 0 0 80px;
}


/* =========================================================
   GALERIA DO PROJETO
========================================================= */

.project-detail-gallery {
    padding: 40px 0 100px;
}

.project-detail-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-detail-image {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

    .project-detail-image img {
        display: block;
        width: 100%;
        height: auto;
    }


/* =========================================================
   SHARE
========================================================= */

.project-share {
    padding: 80px 0;
    background: #14181c;
    color: #fff;
}

.project-share-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.project-share h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 4vw, 48px);
}

.project-share-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.project-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

    .project-share-button:hover {
        background: #fff;
        color: #14181c;
        border-color: #fff;
        transform: translateY(-2px);
    }

    .project-share-button svg {
        width: 21px;
        height: 21px;
        fill: currentColor;
    }

    .project-share-button.copied {
        background: var(--gold);
        border-color: var(--gold);
        color: #14181c;
    }


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {

    .portfolio-page-hero,
    .project-detail-hero {
        padding-top: 130px;
    }

    .project-back {
        margin-bottom: 40px;
    }

    .project-share-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-description {
        padding: 60px 0;
    }

    .project-detail-gallery {
        padding-bottom: 70px;
    }
}

.project-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

    .project-share-button svg {
        display: block;
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .project-share-button[title="WhatsApp"] svg {
        width: 21px;
        height: 21px;
    }

.foot-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .foot-social a {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 50%;
        color: rgba(255, 255, 255, .72);
        text-decoration: none;
        transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

        .foot-social a:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, .7);
            background: rgba(255, 255, 255, .06);
            transform: translateY(-2px);
        }

    .foot-social svg {
        display: block;
        width: 17px;
        height: 17px;
        fill: currentColor;
        flex-shrink: 0;
    }

    /* WhatsApp precisa ser um pouco maior visualmente */
    .foot-social a[title="WhatsApp"] svg {
        width: 20px;
        height: 20px;
    }

    .foot-social svg {
        display: block;
        width: 19px;
        height: 19px;
        fill: currentColor;
    }

    .foot-social a[title="WhatsApp"] svg {
        width: 20px;
        height: 20px;
    }

@media (max-width:991px) {
    .hero-video-banner {
        height: auto;
        aspect-ratio: auto;
    }

    .wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-list li {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .cv-overlay {
        padding: 15px 25px;
        justify-content: start;
    }

    .foot-top {
        text-align: center;
        justify-content: center;
    }

    .foot-social {
        justify-content: center;
        margin-top: 20px;
    }

    .foot-bottom {
        justify-content: center;
        text-align: center;
    }

    .test-nav {
        justify-content: center;
    }

    .test-head {
        text-align: center;
    }

    .portfolio-head {
        justify-content: center;
        text-align: center;
    }
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle,
.menu-close,
.mobile-cta {
    display: none;
}

@media (max-width: 991px) {
    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .brand-logo img {
        max-width: 140px;
        height: auto;
    }

    .desktop-cta {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .lang-toggle {
        display: flex;
        height: 34px;
    }

        .lang-toggle button {
            min-width: 38px;
            padding: 0 10px;
            font-size: 12px;
        }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 8px;
        border: 0;
        background: transparent;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: #222;
            transition: .25s ease;
        }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1001;
        width: min(82vw, 360px);
        height: 100dvh;
        padding: 90px 28px 30px;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        transform: translateX(-100%);
        transition: transform .3s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, .12);
    }

        .nav-links.active {
            transform: translateX(0);
        }

        .nav-links > a:not(.nav-cta) {
            display: block;
            padding: 16px 0;
            color: #222;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            border-bottom: 1px solid rgba(0, 0, 0, .08);
        }

    .menu-close {
        display: block;
        position: absolute;
        top: 22px;
        right: 22px;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        font-size: 38px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 25px;
        min-height: 52px;
        text-align: center;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, .45);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
    }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

    body.menu-open {
        overflow: hidden;
    }
}