.section-title {
    font-weight: 600;
    font-size: 2.8rem;
    color: #7f00ff;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 1.2px;
    text-shadow: 0 0 6px #7f00ff;
    text-transform: uppercase;
}

.card {
    background-color: #2a2a2a;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 16px #7f00ff(0, 230, 230, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px #7f00ff(0, 230, 230, 0.4);
}

.card-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffffff;
    /* cor principal */
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;

    /* efeito neon */
    text-shadow:
        0 0 5px #7f00ff,
        0 0 10px #7f00ff,
        0 0 20px #7f00ff,
        0 0 40px #b400ff,
        0 0 80px #b400ff;
}


.card-text {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 1rem;
    min-height: 100px;
    /* mais espaço para texto */
}

p strong {
    color: #7f00ff;
    font-weight: 600;
}

.btn {
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 0.35rem 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-info {
    background-color: #7f00ff;
    border-color: #7f00ff;
    color: white;
}

.btn-info:hover {
    background-color: #7f00ff;
    border-color: #7f00ff;
    color: white;
}

.btn-success {
    background-color: #7f00ff;
    border-color: #7f00ff;
    color: white;
}

.btn-success:hover {
    background-color: #7f00ff;
    border-color: #7f00ff;
    color: white;
}

.btn-outline-info {
    color: #7f00ff;
    border: 2px solid #7f00ff;
}

.btn-outline-info:hover {
    background-color: #7f00ff;
    color: #ffffffff;
    border-color: #7f00ff;
}

.mt-auto {
    margin-top: auto !important;
}

.projeto-icone {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.projeto-card {
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.projeto-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.25));
}

.projeto-icone {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.card-projeto {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 1.25rem;
    z-index: 1;
}

/* Overlay */
.card-projeto::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.67);
    /* suave e elegante */
    z-index: -1;
}

/* Texto */
.card-projeto p,
.card-projeto h5 {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.78);
}

/* Ícone do projeto */
.projeto-icone {
    width: 28px;
    height: 28px;
    object-fit: contain;
}


.projeto-card {
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
    overflow: hidden;
}

.projeto-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
}

.projeto-card>* {
    position: relative;
    z-index: 1;
}

.tecnologias-box {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
}