.projeto-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
    flex-wrap: wrap;

}

.projeto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0a1120;
    border-radius: 5px;
    border: 1px solid #ffffff9a;
    box-shadow: 0 0 50px 0 #04070e;
    width: 350px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.destaque{
    transform: scale(1.07);
}

.projeto-card:hover {
    transform: scale(1.02);
}

.projeto-image {
    width: 100%;
    background: linear-gradient(0deg, #0a1120, #0e162b,#151c25 );
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: 320px;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projeto-image img {
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
}

.fade-img {
    opacity: 1;
}

.projeto-info h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-top: 15px;
    font-size: 25px;
}

.subtitulo {
    color: #b0b0b0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.button-group {
    margin-top: 15px;
    display: flex;


    width: 100%;
}

.btn-toggle {
    background: #2b3646;
    border: none;
    padding: 10px 15px;
    border: 1px solid #0f0f0f52;
    font-size: 14px;
    color: white;
    width: 50%;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s, transform 0.2s;
}

.btn-toggle:hover, .btn-toggle:focus {
    background: #3e4e64;

}

.button-ver {
    width: 100%;
}

.button-ver a {
    display: inline-block;
    background: #0f161f;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    padding: 12px 0px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    color: white;
    text-decoration: none;

    transition: background 0.3s;
}

.button-ver a:hover {
    background: #1c2a3a;
    color: white;
    transform: scale(1);
}

@media(max-width:500px){
    .projeto-card.destaque{
        transform: scale(1);
    }
}