* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    cursor: none;
}

img {
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
}

img:hover {
    -webkit-filter: none; 
    filter: none;
} 

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    width: 100%;
    gap: 1rem;
    overflow-y: auto;
    height: 100vh;
}

.carousel-container {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-top: 2.4rem;
    height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}

.title-container {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.title-container h1 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.carousel {
    display: flex;
    position: relative;
    left: 0;
    will-change: transform;
    gap: 0.5rem;
    height: 100%;
    width: fit-content;
    padding: 0;
    margin: 0;
}

.carousel-item {
    height: 100%;
    flex-shrink: 0;
    display: flex;
    position: relative;
    margin: 0;
    padding: 0;
}

.carousel-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.project-names {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: visible;
    height: 35px;
}

.project-names span {
    width: 15px;
    height: 30px;
    border: 1px solid #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.indicator-frame {
    position: absolute;
    height: 10px;
    width: 45px;
    border: 1px solid black;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    will-change: transform;
    z-index: 2;
}

.text-container {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 2rem 0 2rem 20px;
}


.text-alinhado {
    font-family: Neue Haas Grotesk, Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 0.7rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0.5em;
    margin-left: 0.7rem;
}
