:root {
    --bg: #efefef;
    --card: #ffffff;
    --accent: #FF9000;
    --text: #232323;
    --muted: #9c9c9c;
    --border: #d7d7d7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-family: "DotGothic16", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text);
    font-family: "Silkscreen", sans-serif;
    margin-bottom: 16px;
}

/* NAVBAR */

.navbar {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    z-index: 1080;
}
.navbar-brand {
    color: var(--accent);
    font-family: "Silkscreen", sans-serif;
}

.navbar-brand img {
    width: 56px;
}

.nav-link {
    font-family: "Silkscreen", sans-serif;
    color: var(--text);
    font-size: 14px;
    transition: .2s ease;
}

.nav-link:hover {
    color: var(--accent);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 24px;
    border: 2px solid var(--text);
    padding: 10px 18px;
    font-size: 12px;
    font-family: "Silkscreen", sans-serif;
}

.hero h1 {
    font-family: "Silkscreen", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: .9;
    margin-bottom: 32px;
}

.hero p {
    font-size: 22px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 680px;
}

/* PROJECTS */

.projects {
    padding: 120px 0;
}

.section-title {
    font-family: "Silkscreen", sans-serif;
    font-size: 42px;
    margin-bottom: 24px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 22px;
    margin-bottom: 64px;
}

/* MASONRY */

.masonry-grid {
    column-count: 2;
    column-gap: 24px;
}

.project-card {
    background: var(--card);
    margin-bottom: 24px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    transition: .25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    image-rendering: pixelated;
}

.project-content {
    padding: 16px;
}

.project-category, .project-description span {
    font-family: "Silkscreen", sans-serif;
    color: var(--accent);
    font-size: 12px;
}

.project-title {
    font-family: "Silkscreen", sans-serif;
    font-size: 22px;
    line-height: 1.4;
}

.project-description {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

/* ABOUT */

.about {
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-image {
    width: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.section-mini-title {
    display: inline-block;
    margin-bottom: 24px;
    font-family: "Silkscreen", sans-serif;
    font-size: 12px;
    color: var(--accent);
}

.about-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 24px;
}
/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.94);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {

    max-width: 92%;
    max-height: 92vh;

    object-fit: contain;

    image-rendering: pixelated;

    transform: scale(.9);

    transition: .25s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {

    position: absolute;

    top: 24px;
    right: 32px;

    width: 56px;
    height: 56px;

    border: none;

    background: white;

    color: black;

    font-size: 32px;

    cursor: pointer;

    z-index: 2;
}

.project-thumb {
    cursor: zoom-in;
}

/* NAVEGAÇÃO */

.lightbox-nav {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 64px;
    height: 64px;

    border: none;

    background: rgba(255,255,255,.12);

    color: white;

    font-size: 28px;

    cursor: pointer;

    transition: .2s ease;

    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {

    background: rgba(255,255,255,.24);

}

.lightbox-prev {

    left: 24px;

}

.lightbox-next {

    right: 24px;

}

/* CONTACT */

.contact {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-form {
    margin-top: 48px;
}

.form-label {
    font-family: "Silkscreen", sans-serif;
    font-size: 12px;
    margin-bottom: 16px;
}

.custom-input {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 0;
    min-height: 60px;
    padding: 18px;
    font-size: 18px;
    font-family: "DotGothic16", sans-serif;
}

.custom-input:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.btn-send {
    background: var(--accent);
    border: none;
    padding: 18px 32px;
    font-family: "Silkscreen", sans-serif;
    font-size: 14px;
    transition: .2s ease;
}

.btn-send:hover {
    transform: translateY(-3px);
}

/* FAQ */
.faq-item summary {
    font-family: "Silkscreen", sans-serif;
    text-transform: capitalize;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    padding: 8px;
    padding-right: 24px;
    background: #bcbcbc;
    border-bottom: var(--accent) 2px solid;
}

.faq-item p {
    padding: 16px;
    background: #d7d7d7;
    color: var(--text);
    line-height: 1.6;
}
/* FOOTER */

footer {
    background: var(--text);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    color: var(--bg);
    text-align: center;
}

/* RESPONSIVO */

@media(max-width: 991px) {

    .masonry-grid {
        column-count: 2;
    }

    .hero {
        text-align: center;
    }

    .hero p {
        margin: auto;
    }

}

@media(max-width: 576px) {

    .navbar-brand span {
        display: none !important;
    }

    .masonry-grid {
        column-count: 1;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }

}