.projetos-secao h1 {
    text-align: center;
    margin-bottom: 50px;
}

.projetos-secao h1 span {
    color: #00a8ff;
}

.grid-projetos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Projeto */
.projeto {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.projeto:hover {
    border-color: #00a8ff;
    box-shadow: 0 10px 25px rgba(0, 168, 255, 0.2);
}

.projeto-imagem img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 20%;
}

/* Conteudo */
.projeto-conteudo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.projeto-conteudo h2 {
    font-size: 20px;
}

/* Tags */
.projeto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(0, 168, 255, 0.15);
    color: #00a8ff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.projeto-descricao {
    font-size: 15px;
    color: #cbd5e1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: 0.3s ease;
}

.projeto-descricao.expandida {
    -webkit-line-clamp: unset;
}

/* Botão para expandir */
.botao-mais {
    background: none;
    border: none;
    color: #00a8ff;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    align-self: flex-start;
}

.botao-mais:hover {
    text-decoration: underline;
}

/* Ver Projeto */
.projeto-acessar {
    margin-top: auto;
}

.botao-projeto {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #00a8ff;
    color: #00a8ff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.botao-projeto:hover {
    background: #00a8ff;
    color: #0f172a;
}

@media (max-width: 768px) {
    .grid-projetos {
        grid-template-columns: repeat(1, 1fr);
    }
}