.projects-page-body {
  background: #fff;
}

:root {
    --max: 1100px;
    --gap: 22px;
    --text: #1E1E1E;
    --muted: #666;
    --card-bg: #d9d9d9;
}

.brand {
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
}

h1 {
    margin: 6px 0 18px;
    font-size: 54px;
    font-weight: 300;
    letter-spacing: -1px;
}

/* Grid */
.projects-static-grid {
    display: grid;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.projects-static-grid-wrapper{
    display: flex; 
    flex-direction: column; 
    gap: 50px;
    margin-top: 100px;
}

.item {
    display: block;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.projects-static-grid .card {
    height: auto;
    overflow: visible;
    border-radius: 0;
}

.projects-static-grid .item {
    transition: transform 0.3s ease;
}

.projects-static-grid .thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: var(--card-bg);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.projects-static-grid .thumb img,
.projects-static-grid .thumb video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.projects-static-grid .card-caption {
    position: static;
    margin-top: 12px;
    font-size: 16px;
    color: var(--text);
    font-weight: 300;
    opacity: 1;
    transform: none;
    background: transparent;
    padding: 0;
    pointer-events: auto;
    text-align: left;
}

/* Back to top */
.back {
    max-width: var(--max);
    margin: 28px auto 0;
    padding: 0 18px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.back span {
    font-size: 18px;
    line-height: 1;
}

.back:hover {
    color: #222;
}

.footer {
  padding: 80px 0 0 0;
}

/* Responsivo */
/* Responsivo */
@media (max-width: 900px) {
    .projects-static-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-static-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-static-grid .card-caption {
        font-size: 18.75px;
        font-weight: 400;
        margin-top: 15px;
    }
}