@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.containerproje {
    position: relative;
    overflow: hidden;
}

.containerproje .slide-container .slide {
    max-height: 100vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 9%;
    padding-bottom: 70px;
    will-change: transform, opacity;
}

.containerproje .slide-container .slide .contentproje {
    flex: 1 1 350px;
    animation: slideContent 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s backwards;
}

@keyframes slideContent {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.containerproje .slide-container .slide .contentproje h3 {
    font-size: 40px;
    color: white;
    font-family: 'Noto Sans', sans-serif;
}

.containerproje .slide-container .slide .contentproje p {
    margin-top: 10px;
    font-size: 20px;
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    width: 40%;
}

.containerproje .slide-container .slide .contentproje .bntproj {
    margin-top: 30px;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    padding: 10px 40px;
    border-radius: 10px;
    border: 2px solid #20B0B0;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
}

.containerproje .slide-container .slide .contentproje .bntproj:hover {
    background: #17a2a2;
    color: #ffffff;
}

.containerproje .slide-container {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.containerproje .slide-container.active {
    display: block;
    opacity: 1;
}

.containerproje .slide-container .slide {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerproje .slide-container:nth-child(1) .slide {
    background:url('../img/fundofinal.jpg'); /*Foto de Rui Alves*/
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

.containerproje .slide-container:nth-child(2) .slide {
    background: url('../img/fundofinal.jpg'); /*Foto de Rui Alves*/
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

.containerproje .slide-container:nth-child(3) .slide {
   background: url('../img/fundofinal.jpg'); /*Foto de Rui Alves*/
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

.containerproje .slide-container:nth-child(4) .slide {
    background: url('../img/fundofinal.jpg'); /*Foto de Rui Alves*/
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}
.containerproje .slide-container:nth-child(5) .slide {
    background: url('../img/fundofinal.jpg'); /*Foto de Rui Alves*/
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}
.containerproje .slide-container:nth-child(6) .slide {
    background: url('../img/fundofinal.jpg'); /* Foto de Markus Spiske*/
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

.containerproje #prev,
.containerproje #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    background: transparent;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 25px;
    text-align: center;
    cursor: pointer;
    font-weight: bolder;
    border-radius: 50%;
    transition: background 0.3s;
}

.containerproje #prev:hover,
.containerproje #next:hover {
    background: black;
}

.containerproje #prev {
    left: 20px;
}

.containerproje #next {
    right: 20px;
}

@media(max-width: 500px) {
    .containerproje #prev {
        left: 0px;
        top: 60%;
    }
    
        .login-button {
            display: none;
        }
    .containerproje #next {
        right: 0px;
        top: 60%;
    }

    .containerproje .slide-container .slide .contentproje p {
        font-size: 16px;
        color: #ffffff;
        width: 100%;
    }
}
        /* Estilo da container */
        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
        }
        
        /* Estilo das boxes */
        .box {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.2s;
            width: calc(25% - 20px); /* 4 boxes por linha com gap de 20px */
            text-align: center;
        }
        
        .box img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .box p {
            padding: 15px;
            color: #333;
        }
        
        .box img {
            width: 100%;
            height: 170px; /* Definindo uma altura fixa */
            object-fit: cover; /* Garantindo que a imagem se ajuste ao espaço sem distorcer */
            display: block;
        }
        
        /* Efeitos de hover */
        .box:hover {
            transform: scale(1.05);
        }
        
        /* Estilo da nova container */
        .new-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
        }
        
        /* Estilo das novas boxes */
        .new-box {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.2s;
            width: calc(16.66% - 20px); /* 6 boxes por linha com gap de 20px */
            text-align: center;
            padding: 10px;
            display: flex;
            flex-direction: column; /* Coloca os itens em coluna */
            justify-content: space-between; /* Distribui o espaço verticalmente */
        }
        
        .new-box img {
            width: 100%;
            height: 150px; /* Altura fixa para as imagens */
            object-fit: cover; /* Garantindo que a imagem se ajuste ao espaço sem distorcer */
            display: block;
        }
        
        .new-box h3 {
            font-size: 1em;
            margin: 10px 0;
        }
        
        .new-box p {
            font-size: 0.9em;
            color: #555;
        }
        
        .new-box .new-price {
            font-size: 1.2em;
            color: #20b0b0;
            font-weight: bold;
            margin-top: auto; /* Empurra o preço para o fundo da box */
        }
        
        a{
            text-decoration: none;
        }
        
        /* Responsividade */
        @media (max-width: 900px) {
            .box {
                width: calc(50% - 20px); /* 2 boxes por linha */
            }
        }
        
        @media (max-width: 600px) {
            .box {
                width: 100%; /* 1 box por linha */
            }
        }
        
        
        @media (max-width: 1200px) {
            .new-box {
                width: calc(25% - 20px); /* 4 boxes por linha */
            }
        }
        
        @media (max-width: 800px) {
            .new-box {
                width: calc(50% - 20px); /* 2 boxes por linha */
            }
        }

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

body {
    font-family: 'Open Sans Condensed', sans-serif;
    background-color: #fff; /* Adicionado para visualização */
}


.containerproje {
    overflow: auto; /* Ativa a barra de rolagem */
    scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
}

.containerproje::-webkit-scrollbar {
    width: 10px; /* Largura da barra de rolagem */
}

.containerproje::-webkit-scrollbar-thumb {
    background-color: rgba(30, 30, 30, 0.5); /* Cor do polegar da barra de rolagem */
    border-radius: 20px; /* Arredondamento do polegar */
}

/* Ao passar o mouse sobre o elemento, mostra a barra de rolagem */
.containerproje:hover::-webkit-scrollbar-thumb {
    background-color: rgba(30, 30, 30, 0.8); /* Cor mais escura quando o mouse está sobre a barra */
}
/* Definindo a largura da barra de rolagem */
::-webkit-scrollbar {
    width: 10px;
    opacity: 0.8; /* Aumentando a opacidade */
}

/* Estilo do polegar da barra de rolagem */
::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background: rgba(30, 30, 30, 0.8); /* Cinza mais escuro com mais opacidade */
}

/* Estilo da faixa de rolagem (fundo) */
::-webkit-scrollbar-track {
    background: transparent; /* Fundo invisível */
}