/* Cards em destaque: Arsenal Python & AudioLaudo (index.html) */

.projeto-card.featured.projeto-card--rich {
    align-items: stretch;
}

.projeto-card.featured.projeto-card--rich .projeto-image {
    background: linear-gradient(160deg, #0a0e27 0%, #151a32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.projeto-card.featured.projeto-card--rich .projeto-image img {
    object-fit: contain;
    object-position: center;
    padding: 1.25rem;
    height: 100%;
    width: 100%;
    transform: none;
}

.projeto-card.featured.projeto-card--rich:hover .projeto-image img {
    transform: scale(1.02);
}

.projeto-card.featured.projeto-card--rich .projeto-overlay {
    background: linear-gradient(to top, rgba(10, 14, 39, 0.85) 0%, transparent 55%);
}

.projeto-card.featured.projeto-card--rich .projeto-content {
    padding: 1.75rem 2rem 2rem;
    min-width: 0;
    gap: 0;
}

.projeto-card--rich .projeto-title {
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.projeto-card--rich .projeto-title-main {
    display: block;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: var(--cor-primaria);
}

.projeto-card--rich .projeto-title-sub {
    display: block;
    margin-top: 0.4rem;
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    font-weight: 600;
    color: var(--cor-secundaria);
    line-height: 1.4;
}

.projeto-card--rich .projeto-description {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.projeto-card--rich .projeto-tech {
    margin-bottom: 1.15rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(108, 92, 231, 0.12);
}

.projeto-card--rich .projeto-services {
    margin-top: 0;
}

.projeto-card--rich .services-title {
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.projeto-card--rich .projeto-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.projeto-card--rich .projeto-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.7rem 0.75rem;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
    border: 1px solid rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.projeto-card--rich .projeto-highlight-item:hover {
    border-color: rgba(108, 92, 231, 0.28);
    box-shadow: 0 4px 14px rgba(108, 92, 231, 0.08);
}

.projeto-card--rich .projeto-highlight-icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 8px;
}

.projeto-card--rich .projeto-highlight-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cor-primaria);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.projeto-card--rich .projeto-highlight-desc {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #5c6378;
}

/* AudioLaudo: 3 itens em coluna única mais legível */
.projeto-card--audiolaudo .projeto-highlights {
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.projeto-card--audiolaudo .projeto-highlight-item {
    padding: 0.85rem 1rem;
}

.projeto-card--audiolaudo .projeto-highlight-desc {
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .projeto-card--rich .projeto-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projeto-card.featured.projeto-card--rich .projeto-image img {
        padding: 0.75rem;
    }

    .projeto-card.featured.projeto-card--rich .projeto-content {
        padding: 1.35rem 1.25rem 1.5rem;
    }
}
