 /* ===============================
   LISTA (ESTILO PALESTRANTES)
================================ */
    .membro {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 22px;
        animation: fadeIn 0.45s ease;
    }

    .membro-foto img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #f1f1f1;
    }

    /* ===============================
   INFORMAÇÕES
================================ */
    .membro-info h2 {
        margin: 0 0 10px;
        font-size: 1.5rem;
        color: var(--primary-color);
    }

    .membro-info p {
        margin: 5px 0;
        line-height: 1.45rem;
        color: #444;
    }

    .membro-info .tipo {
        font-weight: bold;
        color: #464081;
        margin-bottom: 8px;
        font-size: 1.05rem;
    }

    .membro-info p strong {
        color: #333;
    }

    /* ===============================
   LINKS / REDES SOCIAIS
================================ */
    .membro-links a {
        display: inline-block;
        margin-right: 12px;
        font-size: 1.3rem;
        color: var(--primary-color);
        text-decoration: none;
        transition: 0.2s;
    }

    .membro-links a:hover {
        color: #5bbafa;
    }

    /* ===============================
   ANIMAÇÃO
================================ */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===============================
   MOBILE
================================ */
    @media (max-width: 600px) {
        .membro {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .membro-foto img {
            width: 120px;
            height: 120px;
        }

        .membro-info {
            text-align: center;
        }
    }