.button {
    padding: 14px 40px;
    text-decoration: none;
    border: 1px solid var(--cor-textos);
    color: var(--cor-textos);
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
    font-family: var(--fonte-titulos);
    letter-spacing: 2px;
}

.button span {
    text-transform: capitalize;
}

.button:hover {
    background-color: var(--cor-secudaria-um);
    color: #fff;
}

.card-grid .card {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border-radius: 5px;
}

.card-grid .card h1 {
    background-color: rgba(0, 0, 0, 0.464);
    text-align: center;
    width: 100%;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    font-weight: lighter;
}

.carrossel-container {
    position: relative;
    width: 40%;
    overflow: hidden;
}

.carrossel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrossel a {
    width: 100%;
    flex-shrink: 0;
    display: block;
    text-align: center;
}

.carrossel-img {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    padding: 0 100px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.img100w {
    object-fit: cover;
    padding: 0 20px;
}



.carrossel-img:hover {
    transform: scale(1.05);
    /* leve zoom */
    filter: brightness(1.1);
    /* aumenta o brilho */
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

@media (max-width: 768px) {
    .button {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .carrossel-container {
        width: 100%;
    }

    .carrossel-img {
        padding: 0;
        margin-top: 50px;
    }

    .card-grid .card {
        margin-bottom: 50px;
    }
}