/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */

.certifications {
    padding: 100px 0;
    background: var(--bg-darker);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cert-card {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    gap: 20px;
}

.cert-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.2);
}

.cert-logo-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    /* Fundo branco para logos */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.cert-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-content {
    flex-grow: 1;
}

.cert-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.cert-issuer {
    color: var(--primary-red);
    font-weight: 600;
}

.cert-date {
    color: var(--text-muted);
}

.cert-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.3;
}

.cert-code {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.cert-link {
    font-size: 0.8rem;
    padding: 6px 15px;
}